/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top-left Logo */
.top-logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.top-logo:hover {
    transform: scale(1.05);
}

.corner-logo {
    width: 60px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.corner-logo:hover {
    transform: rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(139, 69, 19, 0.2));
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    gap: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lang-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn svg {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Scroll Navigation */
.scroll-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-nav ul {
    list-style: none;
}

.scroll-nav li {
    margin: 15px 0;
}

.nav-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 69, 19, 0.5);
}

.nav-dot.active,
.nav-dot:hover {
    background: #8B4513;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.5);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(74, 124, 89, 0.3);
    border-radius: 0 100% 0 100%;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Menu Section */
.menu-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #F5E6D3 0%, #E8D5B7 100%);
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: #8B4513;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D4A574);
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.item-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    text-align: center;
}

.menu-item p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.price {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #D4A574;
    background: linear-gradient(45deg, #8B4513, #D4A574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #2C1810, #5D4037);
    padding: 100px 0;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-card {
    background: rgba(245, 230, 211, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(245, 230, 211, 0.2);
}

.address-card h3,
.social-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F5E6D3;
}

.address-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E8D5B7;
    margin-bottom: 1.5rem;
}

.hours h4 {
    color: #D4A574;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hours p {
    margin: 0;
}

.social-links {
    background: rgba(245, 230, 211, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(245, 230, 211, 0.2);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(245, 230, 211, 0.1);
    border-radius: 50%;
    color: #F5E6D3;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 230, 211, 0.2);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 230, 211, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #dc2743;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link.tiktok:hover {
    background: #000;
    border-color: #fe2c55;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#map {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .top-logo {
        top: 20px;
        left: 20px;
    }

    .corner-logo {
        width: 50px;
    }

    .language-selector {
        top: 20px;
        right: 20px;
        gap: 8px;
    }

    .lang-btn {
        width: 35px;
        height: 25px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scroll-nav {
        right: 15px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .top-logo {
        top: 15px;
        left: 15px;
    }

    .corner-logo {
        width: 45px;
    }

    .language-selector {
        top: 15px;
        right: 15px;
        gap: 6px;
    }

    .lang-btn {
        width: 30px;
        height: 22px;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-item {
        padding: 1.5rem;
    }
}

/* Parallax effect utilities */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Loading animation for maps */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f0f0f0;
    color: #666;
    font-size: 1.1rem;
}

.map-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top-color: #8B4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Additional visual enhancements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 40%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(245, 230, 211, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    z-index: 1;
}