/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideInFromTop 0.8s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: scaleIn 1s ease-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu li {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(0.5deg); }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: goldShimmer 15s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150%;
    background: 
        radial-gradient(ellipse 200px 400px at 20% 100%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 300px 600px at 50% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 250px 500px at 80% 100%, rgba(255, 193, 7, 0.08) 0%, transparent 55%);
    filter: blur(20px);
    animation: smokeRise 20s ease-in-out infinite;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) scale(0.9);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-60px) scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-80px) scale(1);
        opacity: 0.1;
    }
}

@keyframes goldShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                 0 0 60px rgba(212, 175, 55, 0.4);
    margin-bottom: 1rem;
    animation: scaleIn 1.5s ease-out, logoFloat 4s ease-in-out infinite 2s;
    position: relative;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                     0 0 60px rgba(212, 175, 55, 0.4);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
        text-shadow: 0 0 35px rgba(212, 175, 55, 0.9),
                     0 0 70px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: translateY(-3px) rotate(-0.3deg);
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.7),
                     0 0 50px rgba(212, 175, 55, 0.3);
    }
    75% {
        transform: translateY(-12px) rotate(0.2deg);
        text-shadow: 0 0 40px rgba(212, 175, 55, 1),
                     0 0 80px rgba(212, 175, 55, 0.6);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 2rem auto;
    animation: dividerExpand 2s ease-out 0.5s both;
}

@keyframes dividerExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1.8s ease-out;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #d4af37);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #d4af37;
    margin: 1rem 0;
    position: relative;
    animation: scaleIn 1s ease-out;
}

.decorative-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: -15px;
}

.decorative-line::after {
    right: -15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s ease;
}

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

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.feature-item:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s ease;
}

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

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3),
                0 0 30px rgba(212, 175, 55, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.menu-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin: 0;
    font-weight: 600;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 0.5rem;
    border-radius: 5px;
    transform: translateX(5px);
}

.menu-item.extras {
    font-style: italic;
    color: #d4af37;
    font-size: 0.9rem;
}

.item-name {
    font-weight: 400;
    color: #ffffff;
    flex: 1;
}

.item-price {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.menu-download {
    text-align: center;
    margin-top: 3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
    animation-delay: 0.8s;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.download-btn:hover .download-icon {
    animation: pulse 1s ease-in-out;
}

.download-icon {
    font-size: 1.2rem;
}

/* Popular Section */
.popular {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.popular-item {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.popular-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.popular-item:hover::before {
    transform: translateX(100%);
}

.popular-item:hover {
    transform: translateY(-20px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.popular-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(0.3);
}

.popular-item:hover .popular-image img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.popular-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.popular-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.popular-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popular-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    text-align: right;
    animation: pulse 2s ease-in-out infinite;
}

.popular-item:hover .popular-price {
    animation: pulse 1s ease-in-out infinite;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #000000;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: scaleIn 1s ease-out;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }

.contact-icon {
    font-size: 1.2rem;
    width: 30px;
    animation: pulse 3s ease-in-out infinite;
}

.contact-item:hover .contact-icon {
    animation: pulse 1s ease-in-out infinite;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Gold social icons */
.social-link i {
    color: #d4af37;
    font-size: 1.5em;
    transition: color 0.2s;
}

.social-link:hover i {
    color: #bfa133;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: fadeInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.6s; }

.form-group label {
    display: block;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
    animation-delay: 0.8s;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    animation: fadeInLeft 0.8s ease-out;
}

.footer-logo p {
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px) scale(1.05);
}

.footer-social {
    display: flex;
    gap: 1rem;
    animation: fadeInRight 0.8s ease-out;
}

.footer-social .social-link i {
    color: #d4af37;
    font-size: 1.5em;
    transition: color 0.2s;
}

.footer-social .social-link:hover i {
    color: #bfa133;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-item,
    .menu-card,
    .popular-item {
        opacity: 0;
        transform: translateY(50px);
        animation: slideInUp 0.8s ease-out forwards;
    }
    
    .feature-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .feature-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .menu-card:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .menu-card:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .menu-card:nth-child(4) {
        animation-delay: 0.6s;
    }
    
    .menu-card:nth-child(5) {
        animation-delay: 0.8s;
    }
    
    .menu-card:nth-child(6) {
        animation-delay: 1.0s;
    }
    
    .menu-card:nth-child(7) {
        animation-delay: 1.2s;
    }
    
    .menu-card:nth-child(8) {
        animation-delay: 1.4s;
    }
    
    .popular-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .popular-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .popular-item:nth-child(4) {
        animation-delay: 0.6s;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations and Scroll Effects */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Only keep initial page load animations for hero and nav */
.navbar {
    animation: slideInFromTop 0.8s ease-out;
}

.nav-menu li {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

.logo-text {
    animation: scaleIn 1.5s ease-out;
}

.logo-subtitle {
    animation: fadeInUp 1.8s ease-out;
}

.hero-scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

.nav-logo {
    animation: scaleIn 1s ease-out;
}

/* Scroll-triggered section animations */
.section-header.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.section-header.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.section-title.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Feature items - each triggers individually */
.feature-item.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.feature-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Menu cards - each triggers individually */
.menu-card.reveal-scale {
    opacity: 0;
    transform: scale(0.7);
    transition: all 1.2s ease;
}

.menu-card.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    transition: all 0.3s ease;
}

.card-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Card image styling */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

/* Menu items - each triggers individually */
.menu-item.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.menu-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure menu items animate after their parent card */
.menu-card.reveal-scale.active .menu-item.reveal {
    transition-delay: 0.3s;
}

/* Popular items - each triggers individually */
.popular-item.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.popular-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.popular-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.popular-image img {
    transition: transform 0.3s ease;
}

.popular-item:hover .popular-image img {
    transform: scale(1.1);
}

.popular-price {
    animation: pulse 2s ease-in-out infinite;
}

.popular-item:hover .popular-price {
    animation: pulse 1s ease-in-out infinite;
}

/* Contact section animations */
.contact-info.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.contact-info.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.contact-form.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.contact-form.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.contact-item.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.contact-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-icon {
    animation: pulse 3s ease-in-out infinite;
}

.contact-item:hover .contact-icon {
    animation: pulse 1s ease-in-out infinite;
}

.form-group.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.form-group.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.submit-btn.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.submit-btn.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Footer animations */
.footer-content.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.footer-content.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.footer-logo.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.footer-links.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.footer-links.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-social.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.footer-social.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Map container animation */
.map-container.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.map-container.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* Shimmer effect for premium elements */
.premium-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating animation for decorative elements */
.decorative-line {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation for important elements */
.section-title {
    animation: pulse 4s ease-in-out infinite;
}

/* Staggered animations for lists */
.menu-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced button animations */
.submit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

/* Card hover effects */
.menu-card:hover .card-header {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.menu-card:hover .card-icon {
    animation: pulse 1s ease-in-out;
}

/* Social media hover effects */
.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    transition: all 0.3s ease;
}

/* Contact form field animations */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Map container animation */
.map-container {
    animation: scaleIn 1s ease-out;
}

/* Footer link hover effects */
.footer-links a:hover {
    transform: translateX(5px) scale(1.05);
    transition: all 0.3s ease;
}

/* Logo animation */
.nav-logo {
    animation: scaleIn 1s ease-out;
}

/* Scroll indicator animation */
.scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

/* Enhanced feature icon animations */
.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

.feature-item:hover .feature-icon {
    animation: pulse 1s ease-in-out infinite;
}

/* Menu download button special effect */
.download-btn {
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

/* Popular price animation */
.popular-price {
    animation: pulse 2s ease-in-out infinite;
}

.popular-item:hover .popular-price {
    animation: pulse 1s ease-in-out infinite;
}

/* Contact icon animations */
.contact-icon {
    animation: pulse 3s ease-in-out infinite;
}

.contact-item:hover .contact-icon {
    animation: pulse 1s ease-in-out infinite;
}

/* Responsive Contact Section: Stack form below info on mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100vw;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .contact-content {
    flex-direction: column !important;
    display: flex !important;
    width: 100%;
    max-width: 100%;
  }
  .contact-info {
    width: 100% !important;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .contact-form {
    width: 100% !important;
    margin: 0 auto;
    max-width: 100%;
  }
  
  /* Navigation responsive styles */
  .navbar {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }
  
  .nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    position: relative;
    overflow: visible;
  }
  
  .nav-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 60px;
    right: 0;
    background: #222;
    width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    z-index: 9999;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-menu li {
    width: 100%;
    margin: 0;
  }
  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    color: #d4af37;
    text-align: left;
    border-bottom: 1px solid #333;
  }
  .nav-menu li:last-child a {
    border-bottom: none;
  }
  
  /* Ensure all sections don't overflow */
  .hero, .about, .menu, .contact, .map-section, .footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Fix any potential overflow issues with cards */
  .menu-cards-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .menu-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: auto;
    margin-right: 2rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.lang-dropdown li:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.lang-dropdown li span:first-child {
    font-size: 1.2rem;
}

/* Responsive Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 1rem;
        order: -1;
    }
    
    .lang-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lang-dropdown {
        min-width: 120px;
        right: -0.5rem;
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Responsive logo */
