/* Featured Dishes */
.featured-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Dishes Section */
.featured-dishes-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.featured-dishes-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.featured-dishes-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.featured-dishes-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.featured-marquee {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee-scroll 30s linear infinite;
    width: fit-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.featured-card {
    flex: 0 0 auto;
    width: 250px;
    height: 200px;
    margin: 0 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

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

.featured-card:hover .featured-dish-image {
    transform: scale(1.05);
}

.featured-cta {
    margin-top: 3rem;
    text-align: center;
}

.marquee-nav-btn {
    display: none;
}

.marquee-nav-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.prev-btn {
    display: none !important;
}

.next-btn {
    display: none !important;
}

.featured-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #F4E4BC;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.featured-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #fff;
}

.featured-btn.prev { left: 0.5rem; }
.featured-btn.next { right: 0.5rem; }

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .featured-card {
        width: 200px;
        height: 140px;
        margin: 0 0.5rem;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(45, 24, 16, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 10px;
    border: 2px solid rgba(45, 24, 16, 0.1);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

::-webkit-scrollbar-corner {
    background: rgba(45, 24, 16, 0.1);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 rgba(45, 24, 16, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #2D1810;
    color: #D4AF37;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(15px);
    overflow: visible;
    border-top: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    z-index: 100;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 20%, 
        #F4E4BC 50%, 
        #D4AF37 80%, 
        transparent 100%
    );
}

.header.scrolled {
    background: rgba(45, 24, 16, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Desktop header background - solid color */
@media (min-width: 769px) {
    .header {
        background: rgba(45, 24, 16, 0.95);
        backdrop-filter: blur(15px);
    }
}

.navbar {
    padding: 1.2rem 0;
    overflow: visible;
    border-bottom: none;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.8), rgba(45, 24, 16, 0.9));
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 10;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 20%, 
        #F4E4BC 50%, 
        #D4AF37 80%, 
        transparent 100%
    );
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 6rem;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 6rem;
}

.nav-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}


.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-family: 'Fonarto', 'Playfair Display', serif;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.nav-link:hover {
    color: #F4E4BC;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    animation: navPulse 0.6s ease-out;
}

@keyframes navPulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
    100% { transform: translateY(-2px) scale(1); }
}

/* Underline effect removed */

/* Action Buttons */
.action-btn {
    font-family: 'Fonarto', 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.9rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid #D4AF37;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.action-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: #2D1810;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    border-color: #F4E4BC;
    animation: buttonBounce 0.6s ease-out;
}


@keyframes buttonBounce {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.08); }
    100% { transform: translateY(-3px) scale(1); }
}

.btn-icon {
    font-size: 1rem;
}

.btn-text {
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -57px;
    transform: translateX(-50%);
    z-index: 10007;
    overflow: visible;
    width: 150px;
    height: 160px;
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 3px solid #D4AF37;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 6s ease-in-out infinite;
}

.logo:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    border-color: #F4E4BC;
}

@keyframes logoFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-3px); }
}


.logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 50%;
    background: rgba(45, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50% 50% 0 0;
    z-index: 10005;
}

.logo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 50%;
    border: 2px solid #D4AF37;
    border-bottom: none;
    border-radius: 50% 50% 0 0;
    z-index: 10006;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    z-index: 10008;
    position: relative;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #D4AF37;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hamburger animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(45, 24, 16, 0.98);
    border-top: 2px solid #D4AF37;
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

@keyframes mobileSlideIn {
    0% { 
        transform: translateY(-20px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav-link {
    font-family: 'Fonarto', 'Playfair Display', serif;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    transform: translateX(-20px);
    opacity: 0;
    animation: mobileLinkSlide 0.6s ease-out forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav-link:nth-child(7) { animation-delay: 0.7s; }
.mobile-nav-link:nth-child(8) { animation-delay: 0.8s; }

@keyframes mobileLinkSlide {
    0% { 
        transform: translateX(-20px);
        opacity: 0;
    }
    100% { 
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh !important;
    max-height: 100vh !important;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    position: relative;
    overflow: hidden;
}

/* Limit height on very large screens */
@media (min-height: 900px) {
    .hero-section {
        height: 80vh !important;
        max-height: 80vh !important;
    }
}

/* Desktop background image */
@media (min-width: 769px) {
    .hero-section {
        background: url('../images/backgrounds/hero.jpg?v=1');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

/* Mobile background image */
@media (max-width: 768px) {
    .hero-section {
        background: url('../images/backgrounds/hero.jpg?v=1');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="mandala" patternUnits="userSpaceOnUse" width="200" height="200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.08"/><circle cx="100" cy="100" r="60" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.08"/><circle cx="100" cy="100" r="40" fill="none" stroke="%23D4AF37" stroke-width="0.2" opacity="0.08"/><circle cx="100" cy="100" r="20" fill="none" stroke="%23D4AF37" stroke-width="0.1" opacity="0.08"/><path d="M100 20 L110 40 L130 30 L140 50 L120 60 L100 80 L80 60 L60 50 L70 30 L90 40 Z" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23mandala)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

/* Mobile - use pattern background */
@media (max-width: 768px) {
    .hero-section::after {
        opacity: 0.6;
    }
    
    /* Ensure homepage hero clears sticky header like other pages */
    .hero-section {
        margin-top: 120px;
    }
    
    .hero-container {
        padding: 80px 1rem 0;
    }
}

/* Hide events prev/next buttons on mobile (we list all events) */
@media (max-width: 768px) {
    .events-header-nav {
        display: none !important;
    }
    
    .events-header-text {
        text-align: center;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    
}

.hero-text {
    max-width: 500px;
    z-index: 3;
    position: relative;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle .line {
    flex: 1;
    height: 1px;
    background: #D4AF37;
}

.hero-subtitle span {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #D4AF37;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-main {
    display: block;
    color: #D4AF37;
    font-size: 3.5rem;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-of {
    font-size: 2.5rem;
    color: #B8860B;
    font-weight: 400;
    margin: 0 0.5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #F4E4BC;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    padding: 1.4rem 3rem;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
    border-radius: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: #2D1810;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: #F4E4BC;
}

.btn-primary {
    background: #D4AF37;
    color: #2D1810;
    border: 2px solid #D4AF37;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4E4BC, #D4AF37);
    border-color: #F4E4BC;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #2D1810;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
}

.image-frame {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-image {
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.hero-dish {
    width: 650px;
    height: 650px;
    object-fit: contain;
    animation: fadeInUp 1s ease-out 1s both, float 6s ease-in-out infinite 2s;
    transition: transform 0.3s ease;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-dish:hover {
    transform: scale(1.02);
}



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

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

@keyframes diamondPulse {
    0%, 100% { 
        transform: rotate(45deg) scale(1);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: rotate(45deg) scale(1.1);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    }
}

@keyframes imageGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Golden Transition Line */
.golden-transition-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    position: relative;
    margin: 0;
}

    .hero-dish {
        width: 500px;
        height: 500px;
        object-fit: contain;
    }

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 50%, #2D1810 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 228, 188, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    animation: imageGlow 3s ease-in-out infinite;
}

.restaurant-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.restaurant-image:hover {
    transform: scale(1.02);
}

.about-text {
    max-width: 500px;
    text-align: center;
}

.about-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: 1px;
}

.title-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-divider .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 20%, 
        #F4E4BC 50%, 
        #D4AF37 80%, 
        transparent 100%
    );
    border-radius: 1px;
}

.title-divider .diamond {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    animation: diamondPulse 2s ease-in-out infinite;
}

/* Footer-specific divider sizing (shorter lines beside logo) */
.footer-header .title-divider {
    gap: 0.75rem;
    justify-content: center;
    margin: 0 auto;
}

.footer-header .title-divider .line {
    flex: 0 0 80px;
    max-width: 80px;
}

.footer-header .title-divider .diamond {
    width: 10px;
    height: 10px;
}

@media (max-width: 768px) {
    .footer-header .title-divider .line {
        flex: 0 0 60px;
        max-width: 60px;
    }
}

.about-description {
    font-size: 1.2rem;
    color: #F4E4BC;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Kris Story Section */
.kris-story-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
    overflow: hidden;
}

.kris-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 228, 188, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.kris-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.kris-story-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: 1px;
}

.kris-story-content {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 2.5rem 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

/* Top centered text */
.kris-text-top {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Left text (top) */
.kris-text-left {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
    padding-right: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Center image */
.kris-story-image {
    grid-column: 2;
    grid-row: 2 / 4;
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.kris-story-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
    animation: imageGlow 3s ease-in-out infinite;
}

.kris-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.kris-image:hover {
    transform: scale(1.03);
}

/* Right text (top) */
.kris-text-right {
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    padding-left: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Left text (bottom) */
.kris-text-left-bottom {
    grid-column: 1;
    grid-row: 3;
    text-align: right;
    padding-right: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Right text (bottom) */
.kris-text-right-bottom {
    grid-column: 3;
    grid-row: 3;
    text-align: left;
    padding-left: 1.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Bottom centered text */
.kris-text-bottom {
    grid-column: 1 / -1;
    grid-row: 4;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Text styling */
.kris-text-top p,
.kris-text-left p,
.kris-text-right p,
.kris-text-left-bottom p,
.kris-text-right-bottom p,
.kris-text-bottom p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* First letter styling for opening paragraph - simplified */
.kris-text-top p::first-letter {
    font-size: 1.2em;
    color: #D4AF37;
    font-weight: 400;
}

/* Highlight important phrases */
.kris-text-top p,
.kris-text-bottom p {
    font-size: 1.1rem;
    font-weight: 350;
}

/* Mobile Responsive for Kris Story Section */
@media (max-width: 1024px) {
    .kris-story-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .kris-story-image {
        grid-column: 1;
        grid-row: auto;
        max-width: 400px;
        margin: 2rem auto;
    }
    
    .kris-text-top,
    .kris-text-left,
    .kris-text-right,
    .kris-text-left-bottom,
    .kris-text-right-bottom,
    .kris-text-bottom {
        grid-column: 1;
        grid-row: auto;
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    
    .kris-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .kris-story-section {
        padding: 4rem 0;
    }
    
    .kris-story-title {
        font-size: 2rem;
    }
    
    .kris-text-top p,
    .kris-text-left p,
    .kris-text-right p,
    .kris-text-left-bottom p,
    .kris-text-right-bottom p,
    .kris-text-bottom p {
        font-size: 1rem;
    }
    
    .kris-image {
        height: 300px;
    }
}

/* Reservation Section */
.reservation-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.1), rgba(45, 24, 16, 0.15)), url('../images/backgrounds/reservation.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(244, 228, 188, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.reservation-header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.reservation-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #B8860B;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-main {
    display: block;
    font-size: 2.5rem;
}

.reservation-subtitle {
    font-size: 1rem;
    color: #F4E4BC;
    line-height: 1.6;
    margin-top: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.reservation-form-container {
    background: rgba(45, 24, 16, 0.9);
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.reservation-form-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid #D4AF37;
    border-radius: 16px;
    z-index: -1;
}

.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.reservation-form .full-width {
    grid-column: 1 / -1;
}

.reservation-form .btn-reserve {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Reservation consent and notes */
.consent-group {
    align-items: flex-start;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.55rem;
    font-weight: normal;
    line-height: 1.3;
    color: #F4E4BC;
    word-wrap: break-word;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #D4AF37;
}

.reservation-help {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    color: #F4E4BC;
    margin-top: 0.5rem;
    text-align: center;
}

.reservation-help a {
    color: #D4AF37;
    text-decoration: none;
}

.reservation-help a:hover {
    text-decoration: underline;
}

.form-group label {
    color: #D4AF37;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #D4AF37;
    background: rgba(45, 24, 16, 0.9);
    color: #F4E4BC;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.form-group textarea {
    min-height: 100px;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8860B;
    background: rgba(45, 24, 16, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-with-icon input,
.input-with-icon select {
    padding-right: 3rem;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 1.2rem;
}

.btn-reserve {
    background: #D4AF37;
    color: #2D1810;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-reserve:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background-image: url('../images/footer-temples.png');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.05), rgba(26, 15, 10, 0.08));
    backdrop-filter: blur(0px);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.footer-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4BC 50%, #D4AF37 80%, transparent 100%);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 150px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.footer-tagline {
    font-size: 1rem;
    color: #F4E4BC;
    letter-spacing: 1px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    position: relative;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.4), rgba(26, 15, 10, 0.6));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    z-index: -1;
}

.footer-section {
    text-align: center;
    padding: 0 0.5rem;
}

/* Footer address alignment - left align only the contact details text */
.footer .contact-details,
.footer .contact-details p {
    text-align: left;
}

/* Mobile - left align contact details */
@media (max-width: 768px) {
    .footer .contact-info,
    .footer .contact-details,
    .footer .contact-details p {
        text-align: left;
    }

    /* Ensure footer contact items are left aligned on mobile */
    .footer .contact-item {
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0.4rem;
        gap: 0.6rem;
    }

    .footer .contact-link {
        display: inline-block;
    }
    
    
    /* Mobile footer background optimization */
    .footer {
        background-image: url('../images/footer-temples.png');
        background-size: cover;
        background-position: center 70%;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-color: #1A0F0A; /* Fallback color */
    }
}

.footer-section:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #F4E4BC;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.8rem 0;
    font-weight: 400;
    position: relative;
    border-radius: 6px;
    margin: 0.2rem 0;
}

.footer-link:hover {
    color: #D4AF37;
    transform: translateX(8px);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 1rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.contact-info p,
.opening-hours .hours-row {
    color: #F4E4BC;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.contact-link {
    color: #F4E4BC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.hours-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
}

.days {
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.time {
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: normal;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-divider .line {
    flex: 1;
    height: 1px;
    background: #D4AF37;
}

.footer-divider .diamond {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    transform: rotate(45deg);
}

.copyright {
    color: #F4E4BC;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sukitech-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sukitech-link:hover {
    color: #F4E4BC;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    color: #2D1810;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #F4E4BC, #D4AF37);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    border-color: #F4E4BC;
}

.scroll-icon {
    width: 24px;
    height: 24px;
}

/* Enhanced Footer Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

/* Footer Contact Info - Clean Implementation */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.0rem;
    justify-content: flex-start;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #D4AF37;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
    margin-top: 0.8rem !important;
}

.contact-text {
    color: #F4E4BC;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Desktop footer contact alignment */
@media (min-width: 769px) {
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-text {
        font-size: 0.95rem;
    }
}

.contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #D4AF37;
    transition: all 0.3s ease;
    margin-top: 0.3rem;
    align-self: flex-start;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.contact-item:hover .contact-icon {
    color: #F4E4BC;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212,175, 55, 0.5));
}

.contact-details p {
    margin: 0.2rem 0;
    color: #F4E4BC;
    font-size: 0.9rem;
}

.hours-note {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    border-left: 3px solid #D4AF37;
}

.hours-note p {
    margin: 0;
    font-size: 0.85rem;
    color: #D4AF37;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0;
    justify-content: center;
}

.social-subtext {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: #D4AF37;
    text-align: center;
    font-style: italic;
}

.footer-section-title {
    font-size: 0.9rem;
    color: #D4AF37;
    text-align: center;
    margin: 1.2rem 0 0.8rem 0;
    font-weight: normal;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    color: #F4E4BC;
}

/* Ask Kris Button - Match Social Icons Style */
.ask-kris-section {
    margin-top: 1rem;
    text-align: center;
    padding-bottom: 1.5rem;
}

.ask-kris-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.ask-kris-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.ask-kris-btn .btn-icon {
    font-size: 1.2rem;
    color: #D4AF37;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.ask-kris-btn:hover .btn-icon {
    transform: scale(1.1);
    color: #F4E4BC;
}

.ask-kris-btn .btn-text {
    display: block;
    font-size: 0.9rem;
    color: #D4AF37;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ask-kris-btn:hover .btn-text {
    color: #F4E4BC;
}


.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0.3rem;
    padding: 0.5rem 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #B8860B;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #D4AF37;
}

.legal-separator {
    color: #B8860B;
    font-size: 0.85rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-text {
    color: #F4E4BC;
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.scroll-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #F4E4BC;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        gap: 0.6rem;
    }
    
    .nav-links {
        gap: 0.6rem;
    }
    
    .nav-links .nav-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .action-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.6rem;
    }
    
    .logo {
        width: 140px;
        height: 140px;
        padding: 8px;
        top: -24px;
    }
    
    .logo-image {
        height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
        padding: 6px;
        top: -21px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .image-frame {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reservation-title {
        font-size: 2rem;
    }
    
    .reservation-form-container {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container,
    .about-container,
    .reservation-container,
    .footer-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 2rem;
    }
    
    .hero-dish {
        width: 400px;
        height: 400px;
        object-fit: contain;
    }
    
    .reservation-section {
        background-attachment: scroll;
        padding: 2rem 0;
    }
    
    .reservation-form-container {
        padding: 1rem 0.8rem;
    }
    
    .reservation-form {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .reservation-form .full-width {
        grid-column: 1;
    }
    
    .reservation-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        min-width: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .footer-section:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 1.5rem;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
    }
}

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

.hero-text,
.hero-image,
.about-text,
.about-image,
.reservation-form-container {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print styles */
@media print {
    .header,
    .scroll-to-top {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Phone Select Modal - Hidden on desktop by default */
.phone-select-modal {
    display: none;
}

/* Desktop Contact Modal - Hidden on mobile by default */
.desktop-contact-modal {
    display: none;
}

/* Mobile Header Layout - Up to iPad size (1024px) */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .logo {
        display: none;
    }
    
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
        padding: 0.3rem;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        background: #D4AF37;
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 1px;
    }
    
    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 20;
        width: 100%;
    }
    
    .mobile-logo-image {
        width: 170px;
        height: 180px;
        object-fit: contain;
        background: rgba(45, 24, 16, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        border: none; /* hide full circle border on mobile */
        padding: 12px;
        box-shadow: none; /* remove background circular shadow */
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        filter: none; /* remove drop shadow */
        position: absolute;
        top: -82px;
        left: 50%;
        transform: translateX(-50%);
        animation: logoFloat 6s ease-in-out infinite;
        overflow: visible;
        z-index: 30;
    }
    
    .mobile-logo-image:hover {
        transform: translateX(-50%) translateY(-5px) scale(1.05);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    }

    /* Show only bottom half of the logo border protruding below header */
    .mobile-logo::after {
        content: '';
        position: absolute;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
        width: 170px;
        height: 180px;
        border: 3px solid #D4AF37;
        border-radius: 50%;
        /* reveal only the lower half of the circle border */
        clip-path: inset(80% 0 0 0);
        z-index: 31;
        pointer-events: none;
    }
    
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #D4AF37, #F4E4BC);
        border: none;
        border-radius: 50%;
        color: #2D1810;
        text-decoration: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .mobile-call-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    /* Phone Select Modal - Mobile Only */
    .phone-select-modal {
        display: none;
        position: fixed;
        z-index: 10002;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
    }
    
    .phone-select-modal.active {
        display: flex;
    }
    
    .phone-select-modal-content {
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        margin: 25% auto auto auto;
        padding: 0;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        width: 90%;
        max-width: 400px;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        animation: modalSlideIn 0.3s ease-out;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .phone-select-modal-header {
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #1A0F0A;
        padding: 1.5rem 2rem;
        border-radius: 13px 13px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .phone-select-modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Fonarto', serif;
    }
    
    .phone-select-modal-close {
        background: none;
        border: none;
        font-size: 2rem;
        color: #1A0F0A;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        line-height: 1;
    }
    
    .phone-select-modal-close:hover {
        background: rgba(26, 15, 10, 0.1);
        transform: rotate(90deg);
    }
    
    .phone-select-modal-body {
        padding: 2rem;
        text-align: center;
    }
    
    .phone-select-modal-subtitle {
        color: #F4E4BC;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    
    .phone-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-option-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #1A0F0A;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        border: 2px solid transparent;
    }
    
    .phone-option-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        border-color: rgba(26, 15, 10, 0.2);
    }
    
    .phone-option-btn:active {
        transform: translateY(0);
    }
    
    .phone-icon {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-family: 'Fonarto', serif;
        letter-spacing: 0.5px;
    }
    
    /* Mobile Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 3rem 1.5rem;
        margin-top: 120px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        animation: mobileHeroFadeIn 1.2s ease-out;
        min-height: calc(100vh - 120px);
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
        padding-top: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 3;
    }
    
    .hero-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 2.8rem;
        line-height: 1.1;
        font-weight: 700;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        animation: mobileTitleGlow 3s ease-in-out infinite alternate;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin: 1.5rem 0;
        color: #F4E4BC;
        font-weight: 300;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        animation: mobileSubtitleFade 2s ease-out 0.5s both;
    }
    
    .hero-dish {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        border-radius: 15px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(212, 175, 55, 0.2);
        animation: mobileImageFloat 4s ease-in-out infinite;
        transition: all 0.3s ease;
    }
    
    .hero-dish:hover {
        transform: scale(1.02);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.5),
            0 0 0 2px rgba(212, 175, 55, 0.4);
    }
    
    /* Mobile About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .restaurant-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    /* Mobile Reservation Section */
    .reservation-form {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .reservation-form-container {
        padding: 0.8rem;
        margin: 0.5rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Mobile Typography */
    .hero-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .reservation-title {
        font-size: 2rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
    
    /* Mobile Spacing */
    .hero-section {
        height: 120vh !important;
        max-height: 120vh !important;
        padding: 0;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .reservation-section {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    /* Mobile Buttons */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 140px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #2D1810;
        border: 2px solid #D4AF37;
        box-shadow: 
            0 8px 20px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: mobileButtonPulse 2s ease-in-out infinite;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 
            0 12px 30px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    }
    
    .btn-outline {
        background: transparent;
        color: #D4AF37;
        border: 2px solid #D4AF37;
        box-shadow: 
            0 8px 20px rgba(212, 175, 55, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .btn-outline:hover {
        background: linear-gradient(135deg, #D4AF37, #F4E4BC);
        color: #2D1810;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 
            0 12px 30px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Mobile Form Elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Images */
    .hero-dish {
        max-width: 350px;
    }
    
    .restaurant-image {
        max-width: 280px;
    }
    
    /* Mobile About Image Container - make border only cover the image */
    .about-image {
        width: fit-content;
        margin: 0 auto;
    }
    
    /* Mobile Navigation */
    .mobile-menu {
        padding: 1.5rem;
        position: fixed;
        top: 0; /* Will be set dynamically by JavaScript */
        left: 0;
        right: 0;
        z-index: 9999;
        max-height: 100vh; /* Will be set dynamically by JavaScript */
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-nav-link {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
}

@media (min-width: 1025px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    /* Desktop Contact Modal */
    .desktop-contact-modal {
        display: none;
        position: fixed;
        z-index: 10002;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
    }
    
    .desktop-contact-modal.active {
        display: flex;
    }
    
    .desktop-contact-modal-content {
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        margin: 10% auto auto auto;
        padding: 0;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        width: 90%;
        max-width: 450px;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        animation: modalSlideIn 0.3s ease-out;
    }
    
    .desktop-contact-modal-header {
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #1A0F0A;
        padding: 1.5rem 2rem;
        border-radius: 13px 13px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .desktop-contact-modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Fonarto', serif;
    }
    
    .desktop-contact-modal-close {
        background: none;
        border: none;
        font-size: 2rem;
        color: #1A0F0A;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        line-height: 1;
    }
    
    .desktop-contact-modal-close:hover {
        background: rgba(26, 15, 10, 0.1);
        transform: rotate(90deg);
    }
    
    .desktop-contact-modal-body {
        padding: 2rem;
        text-align: center;
    }
    
    .desktop-contact-modal-subtitle {
        color: #F4E4BC;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    
    .desktop-contact-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .desktop-contact-option-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #1A0F0A;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        border: 2px solid transparent;
    }
    
    .desktop-contact-option-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        border-color: rgba(26, 15, 10, 0.2);
    }
    
    .desktop-contact-option-btn:active {
        transform: translateY(0);
    }
    
    .desktop-contact-icon {
        font-size: 1.3rem;
    }
    
    .desktop-contact-text {
        font-family: 'Fonarto', serif;
        letter-spacing: 0.5px;
    }
    
    /* Make action-btn work as button */
    .action-btn.call-btn {
        cursor: pointer;
        border: 2px solid #D4AF37;
    }
    
    .action-btn.call-btn:hover {
        background: linear-gradient(135deg, #D4AF37, #F4E4BC);
        color: #2D1810;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        border-color: #F4E4BC;
    }
    
    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: -57px;
        transform: translateX(-50%);
        z-index: 10007;
        overflow: visible;
        width: 150px;
        height: 160px;
        background: rgba(45, 24, 16, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        border: 3px solid #D4AF37;
        padding: 12px;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        animation: logoFloat 6s ease-in-out infinite;
    }
    
    .logo:hover {
        transform: translateX(-50%) translateY(-5px) scale(1.05);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
        border-color: #F4E4BC;
    }
    
    .logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        transition: all 0.3s ease;
    }
}

/* Premium Mobile Animations */
@keyframes mobileHeroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileTitleGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(212, 175, 55, 0.3),
            0 0 40px rgba(212, 175, 55, 0.1);
    }
}

@keyframes mobileSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes mobileButtonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 20px rgba(212, 175, 55, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 20px rgba(212, 175, 55, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
}

/* About Main Section */
.about-main-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    margin-top: 50px;
}

.about-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-header {
    margin-bottom: 3rem;
}

.about-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC);
    margin: 0 auto 3rem;
    border-radius: 1px;
}


.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
    padding: 4rem 0;
}

.about-hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.6rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}




.about-main-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 15, 10, 0.8);
    z-index: 1;
}

.about-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.about-story {
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
}


.about-story-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E8D5B7;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.feature-card {
    background: rgba(45, 24, 16, 0.9);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% { 
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.6));
        transform: scale(1.05);
    }
}

.feature-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #E8D5B7;
    line-height: 1.5;
    font-size: 0.9rem;
}

.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.values-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 4rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

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

.value-item {
    animation: fadeInUp 1s ease-out 0.3s both;
    background: rgba(45, 24, 16, 0.6);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.value-item:nth-child(2) {
    animation-delay: 0.5s;
}

.value-item:nth-child(3) {
    animation-delay: 0.7s;
}

.value-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.value-description {
    font-size: 1.2rem;
    color: #E8D5B7;
    line-height: 1.8;
    font-weight: 300;
}

.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.7) 0%, rgba(45, 24, 16, 0.6) 100%);
    z-index: 1;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.cta-description {
    font-size: 1.3rem;
    color: #E8D5B7;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Mobile About Page Styles */
@media (max-width: 768px) {
    .about-main-section {
        margin-top: 120px;
        padding: 4rem 0 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-title {
        font-size: 2rem;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        padding: 1rem 0.8rem;
    }
}

/* Menu Main Section */
.menu-main-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    margin-top: 50px;
}

.menu-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.menu-header {
    margin-bottom: 3rem;
}

.menu-download-section {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #1A0F0A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.menu-download-btn:hover {
    background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #1A0F0A;
    text-decoration: none;
}

.menu-download-btn .download-icon {
    font-size: 1.1rem;
}

.menu-download-btn .download-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Group Booking CTA Section */
.group-booking-cta {
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.group-booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.group-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.group-booking-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.group-booking-icon {
    flex-shrink: 0;
}

.group-booking-icon .icon {
    font-size: 4rem;
    display: block;
    animation: pulse 2s infinite;
}

.group-booking-text {
    flex: 1;
}

.group-booking-title {
    color: #D4AF37;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fonarto', 'Playfair Display', serif;
}

.group-booking-description {
    color: #F4E4BC;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.group-booking-action {
    flex-shrink: 0;
}

.group-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #1A0F0A;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.group-booking-btn:hover {
    background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    color: #1A0F0A;
    text-decoration: none;
}

.group-booking-btn .btn-icon {
    font-size: 1.3rem;
}

.group-booking-btn .btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

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

/* Tickets Page Styles */
.tickets-main-section {
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    min-height: 100vh;
    padding: 120px 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.tickets-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tickets-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.tickets-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tickets-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tickets-subtitle {
    font-size: 1.2rem;
    color: #F4E4BC;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tickets-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.ticket-purchase-container {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ticket-purchase-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fonarto', 'Playfair Display', serif;
}

.event-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-option {
    position: relative;
}

.event-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.event-label {
    display: block;
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.event-radio:checked + .event-label {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.event-radio:checked + .event-label::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #D4AF37;
    color: #1A0F0A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-title {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.event-date {
    color: #F4E4BC;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.event-description {
    color: #F4E4BC;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

.event-price {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.custom-event-option {
    position: relative;
}

.price-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-options {
    display: flex;
    gap: 1rem;
}

.price-option {
    flex: 1;
    position: relative;
}

.price-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.price-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 15, 10, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-radio:checked + .price-label {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.price-text {
    color: #F4E4BC;
    font-weight: 500;
}

.price-amount {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1rem;
}

.custom-amount-section {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 15, 10, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.custom-amount-section.show {
    display: flex;
}

.amount-label {
    color: #F4E4BC;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.amount-input {
    background: rgba(26, 15, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #F4E4BC;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.amount-validation {
    display: none;
    margin-top: 0.5rem;
}

.amount-validation .error {
    color: #ff6b6b;
    font-size: 0.9rem;
}

.customer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #F4E4BC;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: rgba(26, 15, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #F4E4BC;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #1A0F0A;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 250px;
}

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

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

.purchase-btn:hover {
    background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.purchase-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.no-events {
    color: #F4E4BC;
    text-align: center;
    font-style: italic;
    padding: 2rem;
    background: rgba(26, 15, 10, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Mobile Responsive for Tickets */
@media (max-width: 768px) {
    .tickets-main-section {
        margin-top: 120px;
        padding: 4rem 0 2rem 0;
    }
    
    .tickets-main-container {
        padding: 0 1rem;
    }
    
    .tickets-title {
        font-size: 2.5rem;
    }
    
    .ticket-purchase-container {
        padding: 2rem 1.5rem;
    }
    
    .customer-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price-options {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .purchase-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .tickets-main-section {
        margin-top: 120px;
        padding: 3rem 0 2rem 0;
    }
    
    .tickets-title {
        font-size: 2rem;
    }
    
    .ticket-purchase-container {
        padding: 1.5rem 1rem;
    }
    
    .purchase-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
}

/* Ticket Success Page Styles */
.ticket-success-section {
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    min-height: 100vh;
    padding: 120px 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.ticket-success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ticket-success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.success-content {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon .icon {
    font-size: 4rem;
    display: block;
    animation: pulse 2s infinite;
}

.success-title {
    color: #D4AF37;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fonarto', 'Playfair Display', serif;
}

.success-message {
    color: #F4E4BC;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ticket-details {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.details-title {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Fonarto', 'Playfair Display', serif;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    color: #F4E4BC;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-value {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.success-actions .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.success-actions .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #1A0F0A;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.success-actions .btn-primary:hover {
    background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.success-actions .btn-outline {
    background: transparent;
    color: #F4E4BC;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.success-actions .btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* Mobile Responsive for Ticket Success */
@media (max-width: 768px) {
    .ticket-success-section {
        padding: 100px 0 2rem 0;
    }
    
    .ticket-success-container {
        padding: 0 1rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .success-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .success-title {
        font-size: 1.8rem;
    }
    
    .success-content {
        padding: 1.5rem 1rem;
    }
    
    .ticket-details {
        padding: 1.5rem;
    }
}

.menu-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.menu-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.menu-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC);
    margin: 0 auto 3rem;
    border-radius: 1px;
}

.menu-hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.menu-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.menu-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.menu-hero-content {
    text-align: center;
    padding: 4rem 0;
}

.menu-hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.menu-hero-subtitle {
    font-size: 1.6rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.menu-categories-section {
    padding: 6rem 0;
    background: #1A0F0A;
    position: relative;
}

.menu-categories-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.menu-categories-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.menu-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.menu-category {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.menu-category:nth-child(2) {
    animation-delay: 0.5s;
}

.menu-category:nth-child(3) {
    animation-delay: 0.7s;
}

.category-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    background: rgba(45, 24, 16, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1.5rem;
    color: #F4E4BC;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-description {
    color: #E8D5B7;
    line-height: 1.6;
    font-size: 1rem;
}

.item-price {
    font-size: 1.8rem;
    color: #D4AF37;
    font-weight: 700;
    margin-left: 2rem;
}

.menu-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    text-align: center;
    position: relative;
}

.menu-cta-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.menu-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.cta-description {
    font-size: 1.3rem;
    color: #E8D5B7;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Lunch Main Section */
.lunch-main-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    margin-top: 50px;
}

.lunch-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lunch-header {
    margin-bottom: 0;
}

.lunch-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.lunch-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.lunch-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC);
    margin: 0 auto 3rem;
    border-radius: 1px;
}

.lunch-hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.lunch-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.lunch-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.lunch-hero-content {
    text-align: center;
    padding: 4rem 0;
}

.lunch-hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.lunch-hero-subtitle {
    font-size: 1.6rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.lunch-specials-section {
    padding: 6rem 0;
    background: #1A0F0A;
    position: relative;
}

.lunch-specials-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.lunch-specials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.lunch-specials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.lunch-special {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.lunch-special:nth-child(2) {
    animation-delay: 0.5s;
}

.lunch-special:nth-child(3) {
    animation-delay: 0.7s;
}

.special-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.special-items {
    display: grid;
    gap: 2rem;
}

.special-item {
    background: rgba(45, 24, 16, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.special-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}


.lunch-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.menu-item {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.9) 0%, rgba(26, 15, 10, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.95) 0%, rgba(26, 15, 10, 0.9) 100%);
}

.menu-item-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.menu-item-description {
    color: #F4E4BC;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    font-weight: 400;
    opacity: 0.9;
    flex: 1;
    margin: 0;
}

.lunch-intro {
    color: #F4E4BC;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Lunch Contact Section */
.lunch-contact-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    text-align: center;
}

.lunch-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    margin: 0 auto 2rem;
}

.contact-text {
    color: #F4E4BC;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #F4E4BC;
}

.contact-separator {
    color: #D4AF37;
    font-weight: 600;
}

/* Events Section */
.events-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
}

/* Single Event Layout (1 event) */
.events-single {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-single-card {
    display: flex;
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 900px;
}

.event-single-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-single-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

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

.event-single-card:hover .event-single-image img {
    transform: scale(1.05);
}

.event-single-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #2D1810;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

.event-single-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.event-single-content .event-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
    margin: 0;
}

.event-single-content .event-description {
    color: #F4E4BC;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.event-single-content .event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.event-single-content .event-time,
.event-single-content .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F4E4BC;
    font-size: 1rem;
}

.event-single-content .detail-icon {
    font-size: 1.2rem;
}

    .event-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .event-single-content .event-price {
        font-size: 1.4rem;
        font-weight: 700;
        color: #FFFFFF;
        background: rgba(212, 175, 55, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.3);
        margin: 0;
        flex: 1;
    }
    
    .event-call-btn {
        flex-shrink: 0;
    }
    
    .event-call-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        padding: 0.4rem 0.6rem;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.75rem;
        font-weight: 600;
        color: #FFFFFF;
        max-width: 120px;
    }
    
    .event-call-button:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: #D4AF37;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    
    .event-call-button .btn-icon {
        font-size: 1rem;
        color: #FFFFFF;
        transition: all 0.3s ease;
        z-index: 2;
        position: relative;
    }
    
    .event-call-button:hover .btn-icon {
        transform: scale(1.1);
        color: #F4E4BC;
    }
    
    .event-call-button .btn-text {
        display: block;
        font-size: 0.7rem;
        color: #FFFFFF;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .event-call-button:hover .btn-text {
        color: #F4E4BC;
    }

    /* Event Hover Menu */
    .event-hover-menu {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .event-single-image:hover .event-hover-menu,
    .event-horizontal-image:hover .event-hover-menu {
        opacity: 1;
        visibility: visible;
    }

    .view-image-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        background: transparent;
        border: 2px solid #D4AF37;
        border-radius: 8px;
        color: #D4AF37;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

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

    .view-image-btn:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: #F4E4BC;
        color: #F4E4BC;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

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

    .view-image-btn .menu-icon {
        font-size: 1rem;
    }

    .view-image-btn .menu-text {
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* Event Image Modal */
    .event-image-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
    }

    .event-image-modal-content {
        position: relative;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        background: transparent;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
        border: 3px solid rgba(212, 175, 55, 0.6);
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .event-image-modal-close {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #D4AF37;
        font-size: 1.8rem;
        color: #D4AF37;
        cursor: pointer;
        padding: 0;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 10000;
        backdrop-filter: blur(10px);
    }

    .event-image-modal-close:hover {
        background: rgba(212, 175, 55, 0.9);
        border-color: #F4E4BC;
        color: #1A0F0A;
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    .event-image-modal-image {
        width: 100%;
        height: auto;
        max-height: 80vh;
        border-radius: 4px;
        object-fit: contain;
        display: block;
    }

    /* Mobile responsive for event hover menu and modal */
    @media (max-width: 768px) {
        .view-image-btn {
            padding: 0.5rem 0.8rem;
            font-size: 0.7rem;
        }

        .view-image-btn .menu-icon {
            font-size: 0.9rem;
        }

        .view-image-btn .menu-text {
            font-size: 0.7rem;
        }

        .event-image-modal-content {
            width: 95%;
            max-height: 85vh;
            padding: 8px;
        }

        .event-image-modal-close {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            top: 12px;
            left: 12px;
        }

        .event-image-modal-image {
            max-height: 70vh;
        }
    }

    @media (max-width: 480px) {
        .view-image-btn {
            padding: 0.4rem 0.6rem;
            font-size: 0.65rem;
        }

        .view-image-btn .menu-icon {
            font-size: 0.8rem;
        }

        .view-image-btn .menu-text {
            font-size: 0.65rem;
        }

        .event-image-modal-content {
            width: 98%;
            max-height: 80vh;
            padding: 6px;
        }

        .event-image-modal-close {
            font-size: 1.3rem;
            width: 35px;
            height: 35px;
            top: 10px;
            left: 10px;
        }

        .event-image-modal-image {
            max-height: 60vh;
        }
    }

/* Gift Card Encouragement Section */
.gift-card-encouragement-section {
    /* Differentiate CTA section visually */
    background:
        linear-gradient(135deg, rgba(20, 12, 9, 0.85) 0%, rgba(45, 28, 18, 0.9) 100%),
        url('../images/backgrounds/reservation.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 3.5rem 0;
    border-top: 2px solid rgba(212, 175, 55, 0.12);
    border-bottom: 2px solid rgba(212, 175, 55, 0.12);
}

.gift-card-encouragement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gift-card-encouragement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gift-card-encouragement-text {
    flex: 1;
}

.gift-card-encouragement-title {
    font-family: 'Fonarto', sans-serif;
    font-size: 2rem;
    color: #D4AF37;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-card-encouragement-description {
    color: #F4E4BC;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.gift-card-encouragement-button {
    flex-shrink: 0;
}

.gift-card-encouragement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: 2px solid #D4AF37;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A0F0A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gift-card-encouragement-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.gift-card-encouragement-btn .btn-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gift-card-encouragement-btn:hover .btn-icon {
    transform: scale(1.1);
}

.gift-card-encouragement-btn .btn-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile responsive for gift card encouragement */
@media (max-width: 768px) {
    .gift-card-encouragement-section {
        padding: 2rem 0;
    }
    
    .gift-card-encouragement-container {
        padding: 0 1rem;
    }
    
    .gift-card-encouragement-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .gift-card-encouragement-title {
        font-size: 1.5rem;
    }
    
    .gift-card-encouragement-description {
        font-size: 1rem;
    }
    
    .gift-card-encouragement-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Horizontal Events Layout (2 events) */
.events-horizontal {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: center;
    align-items: stretch;
}

.event-horizontal-card {
    display: flex;
    flex-direction: column;
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 0;
    width: calc(50% - 0.75rem) !important;
    max-width: calc(50% - 0.75rem) !important;
}

.event-horizontal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-horizontal-image {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

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

.event-horizontal-card:hover .event-horizontal-image img {
    transform: scale(1.05);
}

.event-horizontal-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #2D1810;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

.event-horizontal-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.event-horizontal-content .event-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
    margin: 0;
}

.event-horizontal-content .event-description {
    color: #F4E4BC;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.event-horizontal-content .event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.event-horizontal-content .event-time,
.event-horizontal-content .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F4E4BC;
    font-size: 0.95rem;
}

.event-horizontal-content .detail-icon {
    font-size: 1.1rem;
}

.event-horizontal-content .event-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.event-horizontal-content .event-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0;
    flex: 1;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.events-header {
    margin-bottom: 2.5rem;
}

.events-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.events-header-text {
    flex: 1;
    text-align: center;
}

.events-header-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.events-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.events-subtitle {
    color: #F4E4BC;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.events-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    margin: 0 auto;
}

.events-navigation-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 1;
    overflow: hidden;
}

.events-nav-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2D1810;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.events-nav-btn:hover {
    background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.events-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.events-nav-btn:disabled:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: none;
    box-shadow: none;
}

.nav-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-card {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.9) 0%, rgba(26, 15, 10, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A0F0A;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1A0F0A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 2rem;
}

.event-name {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    color: #F4E4BC;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.detail-icon {
    font-size: 1rem;
}

.detail-text {
    color: #F4E4BC;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.event-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.1);
    text-align: center;
    padding: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    flex: 1;
}

.events-cta {
    text-align: center;
    padding: 2.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    color: #F4E4BC;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lunch-hours-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    text-align: center;
    position: relative;
}

.lunch-hours-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.lunch-hours-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hours-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hours-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hours-text {
    font-size: 1.3rem;
    color: #F4E4BC;
    margin-bottom: 1rem;
    font-weight: 500;
}

.note-text {
    font-size: 1.1rem;
    color: #E8D5B7;
    font-style: italic;
}

.lunch-cta-section {
    padding: 6rem 0;
    background: #1A0F0A;
    text-align: center;
    position: relative;
}

.lunch-cta-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.lunch-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Mobile Menu and Lunch Menu Styles */
@media (max-width: 768px) {
    .menu-main-section,
    .lunch-main-section {
        margin-top: 120px;
        padding: 4rem 0 2rem;
    }
    
    .menu-header {
        padding-top: 6.5rem;
        margin-bottom: 6.5rem;
    }


    .menu-download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .menu-title {
        font-size: 2rem;
        margin-top: 0;
    }
    
    .menu-subtitle {
        font-size: 1rem;
    }
    
    .menu-main-container {
        padding: 0 1rem;
    }
    
    .menu-content {
        padding: 0;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
    }
    
    .menu-main-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 120px 0 0 0;
        box-sizing: border-box;
    }
    
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        align-items: start;
    }
    
    .menu-content .menu-grid {
        grid-template-columns: 1fr !important;
    }
    
    .menu-main-section .menu-content .menu-grid {
        grid-template-columns: 1fr !important;
    }
    
    .menu-column {
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }
    
    .item-name {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
    
    .item-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0.4rem 0 0 0;
    }
    
    .item-options {
        gap: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .option {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 4px;
    }
    
    .allergens, .spice-level {
        font-size: 0.8rem;
    }
    
    .menu-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-item:has(.item-options) {
        padding: 0.6rem;
    }
    
    .menu-item:has(.item-options) .item-description {
        margin: 0.3rem 0 0 0;
        font-size: 0.8rem;
    }
    
    .menu-item:has(.item-options) .item-options {
        margin-top: 0.3rem;
    }
    
    .menu-section {
        margin-bottom: 1.2rem;
    }
    
    .special-main-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1.5rem;
    }
    
    .tandoori-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1.5rem;
    }
    
    .main-menu-sections {
        grid-template-columns: 1fr;
        align-items: start;
        align-content: start;
        grid-auto-rows: min-content;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .main-course-grid {
        grid-template-columns: 1fr !important;
        align-items: start;
        gap: 1rem;
    }
    
    .special-main-grid,
    .tandoori-grid {
        grid-template-columns: 1fr !important;
        align-items: start;
        gap: 1rem;
    }
    
    .special-main-course {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .tandoori-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .allergen-legend, .spice-legend {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .dietary-notice {
        padding: 1.2rem 1.5rem;
    }
    
    .notice-text {
        font-size: 1.1rem;
    }
    
    .special-main-course,
    .tandoori-section,
    .allergy-info {
        padding: 1rem;
        margin-bottom: 2.5rem;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .allergy-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .allergen-legend, .spice-legend {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .allergen-item, .spice-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .allergy-notice {
        font-size: 1rem;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .private-dining-notice {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .private-dining-notice h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .important-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .important-info p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .dietary-certifications {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .cert-item {
        padding: 1rem;
        border-radius: 10px;
        gap: 0.8rem;
    }
    
    .cert-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .cert-item span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .dietary-notice {
        padding: 1.2rem 1rem;
        margin-bottom: 2.5rem;
        border-radius: 12px;
    }
    
    .notice-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .menu-item {
        padding: 0.7rem;
    }
    
    /* Force full width override */
    .menu-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .menu-main-section {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .menu-content {
        padding: 0;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
    }
    
    .menu-main-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 120px 0 0 0;
        box-sizing: border-box;
    }
    
    .menu-header {
        padding-top: 12rem;
        margin-bottom: 5rem;
    }


    .menu-download-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Group Booking CTA Mobile Styles */
    .group-booking-cta {
        padding: 3rem 0;
    }
    
    .group-booking-container {
        padding: 0 1rem;
    }
    
    .group-booking-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .group-booking-title {
        font-size: 1.8rem;
    }
    
    .group-booking-description {
        font-size: 1rem;
    }
    
    .group-booking-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .menu-title {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .menu-main-container {
        padding: 0 0.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr !important;
    }
    
    .menu-content .menu-grid {
        grid-template-columns: 1fr !important;
    }
    
    .menu-main-section .menu-content .menu-grid {
        grid-template-columns: 1fr !important;
    }
    
    .menu-column {
        padding: 0.8rem;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .main-menu-sections {
        grid-template-columns: 1fr !important;
        align-items: start;
        align-content: start;
        grid-auto-rows: min-content;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .main-course-grid {
        grid-template-columns: 1fr !important;
        align-items: start;
        gap: 0.8rem;
    }
    
    .special-main-grid,
    .tandoori-grid {
        grid-template-columns: 1fr !important;
        align-items: start;
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .item-name {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    .item-price {
        font-size: 1rem;
    }
    
    .item-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0.3rem 0 0 0;
    }
    
    .item-options {
        gap: 0.3rem;
        margin-top: 0.3rem;
    }
    
    .option {
        padding: 0.15rem 0.5rem;
        font-size: 0.65rem;
        border-radius: 3px;
    }
    
    .allergens, .spice-level {
        font-size: 0.75rem;
    }
    
    .menu-item {
        padding: 0.6rem;
        margin-bottom: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-item:has(.item-options) {
        padding: 0.5rem;
    }
    
    .menu-item:has(.item-options) .item-description {
        margin: 0.2rem 0 0 0;
        font-size: 0.75rem;
    }
    
    .menu-item:has(.item-options) .item-options {
        margin-top: 0.2rem;
    }
    
    .menu-section {
        margin-bottom: 1rem;
    }
    
    .special-main-course,
    .tandoori-section,
    .allergy-info {
        padding: 0.8rem;
        margin-bottom: 2rem;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .allergy-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .allergen-item, .spice-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .allergy-notice {
        font-size: 0.9rem;
        padding: 1rem;
        margin-top: 1.2rem;
    }
    
    .private-dining-notice {
        padding: 1.2rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }
    
    .private-dining-notice h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .important-info {
        padding: 1.2rem;
        margin: 1.2rem 0;
        border-radius: 10px;
    }
    
    .important-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }
    
    .dietary-certifications {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .cert-item {
        padding: 0.8rem;
        border-radius: 8px;
        gap: 0.6rem;
    }
    
    .cert-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .cert-item span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .dietary-notice {
        padding: 1rem 0.8rem;
        margin-bottom: 2rem;
        border-radius: 10px;
    }
    
    .notice-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Force full width override */
    .menu-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .menu-main-section {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Tablet Devices */
@media (max-width: 1024px) and (min-width: 769px) {
    .menu-content {
        padding: 0 1.5rem;
    }
    
    .menu-grid {
        gap: 3rem;
    }
    
    .menu-column {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.8rem;
        padding-bottom: 0.9rem;
    }
    
    .item-name {
        font-size: 1.15rem;
    }
    
    .item-price {
        font-size: 1.25rem;
    }
    
    .item-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .special-main-grid,
    .tandoori-grid {
        gap: 1.8rem;
    }
    
    .main-menu-sections {
        gap: 2.2rem;
    }
    
    .main-course-grid {
        gap: 1.1rem;
    }
    
    .allergy-info {
        padding: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .allergy-title {
        font-size: 1.7rem;
        margin-bottom: 1.8rem;
    }
    
    .private-dining-notice {
        padding: 1.8rem;
        margin: 2.5rem 0;
    }
    
    .private-dining-notice h3 {
        font-size: 1.4rem;
    }
    
    .important-info {
        padding: 2rem;
        margin: 1.8rem 0;
    }
    
    .important-info p {
        font-size: 1rem;
    }
    
    .dietary-certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin: 2.5rem 0;
    }
    
    .cert-item {
        padding: 1.3rem;
    }
    
    .cert-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cert-item span {
        font-size: 0.95rem;
    }
}
    
    .lunch-title {
        font-size: 2rem;
    }
    
    
    .lunch-menu-container {
        padding: 1.5rem 1.5rem 3rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-item {
        padding: 2rem;
    }
    
    .menu-item-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .menu-item-price {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-separator {
        display: none;
    }
    
    .events-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .events-subtitle {
        font-size: 1.1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile responsive for single event layout */
    .events-single {
        padding: 0 0.5rem;
    }
    
    .event-single-card {
        flex-direction: column;
        max-width: 100%;
    }
    
    .event-single-image {
        flex: none;
        height: 250px;
        width: 100%;
    }
    
    .event-single-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .event-single-content .event-name {
        font-size: 1.6rem;
    }
    
    .event-single-content .event-description {
        font-size: 1rem;
    }
    
    .event-single-content .event-price {
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
    
    
    /* New Gift Cards Page Styles */
    .gift-cards-hero-section {
        padding: 6rem 0 4rem;
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        position: relative;
        overflow: hidden;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }
    
    .gift-cards-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
    }
    
    .gift-cards-hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        font-family: 'Fonarto', serif;
        color: #D4AF37;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .gift-cards-hero-subtitle {
        font-size: 1.3rem;
        color: #F4E4BC;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gift-cards-hero-divider {
        width: 200px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
        margin: 0 auto;
        position: relative;
    }
    
    .gift-cards-hero-divider::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
        filter: blur(1px);
    }
    
    /* Gift Cards Features Section */
    .gift-cards-features-section {
        padding: 5rem 0;
        background: #2D1810;
    }
    
    .gift-cards-features-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
    
    .feature-card {
        background: rgba(45, 24, 16, 0.8);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 15px;
        padding: 3rem 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0; /* Will be updated to header height */
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .feature-card:hover::before {
        opacity: 1;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        display: block;
    }
    
    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 1rem;
        font-family: 'Fonarto', serif;
    }
    
    .feature-description {
        color: #F4E4BC;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* Gift Card Purchase Section */
    .gift-card-purchase-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    }
    
    .gift-card-purchase-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .purchase-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .purchase-title {
        font-size: 3rem;
        font-weight: 700;
        font-family: 'Fonarto', serif;
        color: #D4AF37;
        margin-bottom: 1rem;
    }
    
    .purchase-subtitle {
        font-size: 1.2rem;
        color: #F4E4BC;
        margin-bottom: 0;
    }
    
    .gift-card-options {
        background: rgba(45, 24, 16, 0.8);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gift-card-amounts {
        margin-bottom: 2rem;
    }
    
    .amounts-title, .custom-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #D4AF37;
        margin-bottom: 1.5rem;
        font-family: 'Fonarto', serif;
    }
    
    .amount-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .amount-btn {
        background: transparent;
        border: 2px solid rgba(212, 175, 55, 0.3);
        color: #D4AF37;
        padding: 1rem;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .amount-btn:hover {
        border-color: rgba(212, 175, 55, 0.6);
        background: rgba(212, 175, 55, 0.1);
    }
    
    .amount-btn.active {
        background: #D4AF37;
        color: #2D1810;
        border-color: #D4AF37;
    }
    
    .custom-input-group {
        display: flex;
        align-items: center;
        background: rgba(45, 24, 16, 0.5);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .currency-symbol {
        color: #D4AF37;
        font-size: 1.2rem;
        font-weight: 600;
        margin-right: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .custom-amount-input {
        background: transparent;
        border: none;
        color: #F4E4BC;
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
        outline: none;
    }
    
    .custom-amount-input::placeholder {
        color: rgba(244, 228, 188, 0.5);
    }
    
    /* Gift Card Form */
    .gift-card-form-section {
        background: rgba(45, 24, 16, 0.8);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 15px;
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 2rem;
        font-family: 'Fonarto', serif;
    }
    
    .gift-card-form {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        color: #D4AF37;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .form-group input,
    .form-group textarea {
        background: rgba(45, 24, 16, 0.5);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 8px;
        padding: 1rem;
        color: #F4E4BC;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #D4AF37;
        background: rgba(45, 24, 16, 0.7);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .form-summary {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 8px;
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .summary-row.total {
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
        font-weight: 700;
        font-size: 1.1rem;
    }
    
    .summary-label {
        color: #F4E4BC;
    }
    
    .summary-value {
        color: #D4AF37;
        font-weight: 600;
    }
    
    .purchase-btn {
        background: #D4AF37;
        color: #2D1810;
        border: none;
        border-radius: 8px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .purchase-btn:hover:not(:disabled) {
        background: #F4E4BC;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    
    .purchase-btn:disabled {
        background: rgba(212, 175, 55, 0.3);
        color: rgba(45, 24, 16, 0.5);
        cursor: not-allowed;
    }
    
    /* Gift Card Terms Section */
    .gift-card-terms-section {
        padding: 4rem 0;
        background: #2D1810;
    }
    
    .gift-card-terms-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .terms-title {
        font-size: 2rem;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 2rem;
        text-align: center;
        font-family: 'Fonarto', serif;
    }
    
    .terms-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .terms-item {
        background: rgba(45, 24, 16, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 10px;
        padding: 2rem;
    }
    
    .terms-item h4 {
        color: #D4AF37;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        font-family: 'Fonarto', serif;
    }
    
    .terms-item p {
        color: #F4E4BC;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .gift-cards-hero-title {
            font-size: 3rem;
        }
        
        .gift-cards-hero-subtitle {
            font-size: 1.1rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .feature-card {
            padding: 2rem 1.5rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .address-section {
            margin: 1.5rem 0;
            padding: 1rem;
        }

        .address-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .address-grid .form-group:nth-child(3),
        .address-grid .form-group:nth-child(4) {
            grid-column: 1;
        }
        
        .gift-card-options,
        .gift-card-form-section {
            padding: 1.5rem 1rem;
        }
        
        .amount-buttons {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .purchase-title {
            font-size: 2.5rem;
        }
        
        .gift-card-purchase-section {
            padding: 2rem 0;
        }
        
        .terms-content {
            grid-template-columns: 1fr;
        }
    }
    
    
    /* Section Transition Line */
    .section-transition {
        padding: 3rem 0;
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .section-transition::before {
        content: '';
        position: absolute;
        top: 0; /* Will be updated to header height */
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    }
    
    .section-transition::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    }
    
    .transition-line {
        width: 300px;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
        position: relative;
        border-radius: 2px;
    }
    
    .transition-line::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 7px;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 20%, rgba(212, 175, 55, 0.4) 80%, transparent 100%);
        filter: blur(2px);
        border-radius: 4px;
    }
    
    /* Gift Cards Page Styles */
    .gift-cards-main-section {
        margin-top: 80px;
        padding: 4rem 0 2rem;
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gift-cards-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }
    
    .gift-cards-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .gift-cards-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
    }
    
    .gift-cards-subtitle {
        font-size: 1.3rem;
        color: #F4E4BC;
        margin-bottom: 2rem;
        line-height: 1.6;
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .gift-cards-divider {
        width: 200px;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
        margin: 0 auto;
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }
    
    .gift-cards-features {
        margin-top: 3rem;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        background: rgba(45, 24, 16, 0.8);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.6);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #D4AF37;
        margin-bottom: 1rem;
        font-family: 'Fonarto', serif;
    }
    
    .feature-description {
        color: #F4E4BC;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* Gift Card Success Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0; /* Will be updated to header height */
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    
    .modal-content {
        background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
        margin: 5% auto;
        padding: 0;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        width: 90%;
        max-width: 500px;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .modal-header {
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        color: #1A0F0A;
        padding: 1.5rem 2rem;
        border-radius: 13px 13px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Fonarto', serif;
    }
    
    .modal-close {
        background: none;
        border: none;
        font-size: 2rem;
        color: #1A0F0A;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .modal-close:hover {
        background: rgba(26, 15, 10, 0.1);
    }
    
    .modal-body {
        padding: 2rem;
        text-align: center;
    }
    
    .success-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .success-message {
        font-size: 1.2rem;
        color: #F4E4BC;
        margin-bottom: 2rem;
        font-weight: 600;
    }
    
    .gift-card-details {
        background: rgba(45, 24, 16, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 10px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.8rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .detail-row:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    .detail-label {
        font-weight: 600;
        color: #D4AF37;
        font-size: 0.95rem;
    }
    
    .detail-value {
        color: #F4E4BC;
        font-weight: 500;
        font-size: 0.95rem;
    }
    
    .success-note {
        color: #F4E4BC;
        font-size: 0.9rem;
        font-style: italic;
        margin: 0;
    }
    
    .modal-footer {
        padding: 1.5rem 2rem;
        text-align: center;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    /* Mobile Responsive for Gift Cards Main Section */
    @media (max-width: 768px) {
        .gift-cards-main-section {
            margin-top: 120px;
            padding: 3rem 0 2rem;
        }
        
        .gift-cards-title {
            font-size: 2rem;
        }
        
        .gift-cards-subtitle {
            font-size: 1.1rem;
            max-width: 100%;
        }
        
        .modal-content {
            margin: 10% auto;
            width: 95%;
        }
        
        .modal-header {
            padding: 1rem 1.5rem;
        }
        
        .modal-title {
            font-size: 1.3rem;
        }
        
        .modal-body {
            padding: 1.5rem;
        }
        
        .success-icon {
            font-size: 3rem;
        }
        
        .success-message {
            font-size: 1.1rem;
        }
        
        .gift-card-details {
            padding: 1rem;
        }
        
        .detail-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
        }
        
        .detail-label {
            font-size: 0.9rem;
        }
        
        .detail-value {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .gift-cards-title {
            font-size: 2.2rem;
        }
        
        .gift-cards-subtitle {
            font-size: 1rem;
        }
    }
    
    .gift-cards-hero-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .gift-cards-hero-title {
        font-size: 4rem;
        font-weight: 700;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    .gift-cards-hero-subtitle {
        font-size: 1.3rem;
        color: #F4E4BC;
        margin-bottom: 2rem;
    }
    
    .gift-cards-hero-divider {
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
        margin: 0 auto;
    }
    
    .gift-cards-main-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #2D1810 0%, #1A0F0A 100%);
    }
    
    .gift-cards-main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .gift-cards-info {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    
    .gift-card-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .feature-item {
        text-align: center;
        padding: 2.5rem;
        background: rgba(45, 24, 16, 0.6);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .feature-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.8rem;
        color: #D4AF37;
        margin-bottom: 1rem;
    }
    
    .feature-item p {
        color: #F4E4BC;
        line-height: 1.6;
        font-size: 1.1rem;
    }
    
    .gift-card-cta {
        text-align: center;
        padding: 4rem;
        background: rgba(45, 24, 16, 0.8);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .gift-card-cta h3 {
        font-size: 2.5rem;
        color: #D4AF37;
        margin-bottom: 1.5rem;
    }
    
    .gift-card-cta p {
        color: #F4E4BC;
        margin-bottom: 2.5rem;
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .gift-card-btn {
        font-size: 1.3rem;
        padding: 1.2rem 3rem;
    }
    
    /* Gift Card Modal */
    .gift-card-modal {
        display: none;
        position: fixed;
        top: 0; /* Will be updated to header height */
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }
    
    .gift-card-modal.active {
        display: flex;
    }
    
    .gift-card-modal-content {
        background: #2D1810;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        padding: 2rem;
        max-width: 600px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .gift-card-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .gift-card-modal-header h2 {
        color: #D4AF37;
        font-size: 1.8rem;
    }
    
    .close-modal {
        background: none;
        border: none;
        color: #F4E4BC;
        font-size: 2rem;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .close-modal:hover {
        color: #D4AF37;
    }
    
    .gift-card-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        color: #F4E4BC;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 8px;
        background: rgba(45, 24, 16, 0.8);
        color: #F4E4BC;
        font-size: 1rem;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #D4AF37;
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }
    
    .form-actions {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .btn-secondary {
        background: rgba(108, 117, 125, 0.8);
        color: white;
        border: 1px solid rgba(108, 117, 125, 0.3);
    }
    
    .btn-secondary:hover {
        background: rgba(108, 117, 125, 1);
    }
    
    
    /* Mobile responsive for gift cards page */
    .gift-cards-hero-title {
        font-size: 2.5rem;
    }
    
    .gift-cards-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gift-card-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-item h3 {
        font-size: 1.5rem;
    }
    
    .gift-card-cta {
        padding: 2.5rem;
    }
    
    .gift-card-cta h3 {
        font-size: 2rem;
    }
    
    .gift-card-cta p {
        font-size: 1.1rem;
    }
    
    .gift-card-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gift-card-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    /* Mobile responsive for horizontal layout - only on very small screens */
    /* Removed conflicting rule - events should stay horizontal on tablets */
    
    .event-horizontal-image {
        flex: none;
        height: 220px;
    }
    
    .event-horizontal-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .event-horizontal-content .event-name {
        font-size: 1.5rem;
    }
    
    .event-horizontal-content .event-description {
        font-size: 0.9rem;
    }
    
    .event-horizontal-content .event-price {
        padding: 0.8rem 1.2rem;
        font-size: 1.1rem;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-name {
        font-size: 1.4rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .event-price {
        font-size: 1.1rem;
    }


/* Tablet breakpoint for events */
@media (max-width: 1024px) and (min-width: 769px) {
    .events-section {
        padding: 3.5rem 0;
    }
    
    .event-single-card {
        max-width: 95%;
    }
    
    .event-single-image {
        flex: 0 0 350px;
        min-height: 280px;
    }
    
    .event-horizontal-card {
        width: calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
    }
    
    .event-horizontal-image {
        flex: 0 0 180px;
        min-height: 180px;
    }
    
    .events-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .events-header-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .events-header-text {
        text-align: center;
    }
    
    .events-header-nav {
        gap: 0.75rem;
    }
    
    .events-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .events-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .events-navigation-container {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .events-horizontal {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100% !important;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-horizontal-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
        flex: none !important;
    }
    
    .events-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .events-cta {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
        max-width: 90%;
    }
    
    .lunch-subtitle {
        font-size: 1.1rem;
    }
    
    .menu-hero-content {
        padding: 3rem 0 2rem;
        margin-top: 120px; /* increased offset for mobile logo overlap */
    }

    .about-hero-content,
    .lunch-hero-content,
    .gallery-hero-content,
    .contact-hero-content {
        padding: 3rem 0 2rem;
        margin-top: 100px; /* extra offset for consistency across pages */
    }
    
    .menu-hero-title,
    .lunch-hero-title {
        font-size: 2rem;
    }
    
    .menu-hero-subtitle,
    .lunch-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .category-title,
    .special-title {
        font-size: 2rem;
    }
    
    .cta-title,
    .hours-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-item,
    .special-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-price {
        margin-left: 0;
    }
}

/* Gallery Page Styles */
.gallery-hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.gallery-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.gallery-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gallery-hero-content {
    text-align: center;
    padding: 4rem 0;
}

.gallery-hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.gallery-hero-subtitle {
    font-size: 1.6rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Main Section */
.gallery-main-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    margin-top: 50px;
}

.gallery-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.gallery-header {
    margin-bottom: 3rem;
}

.gallery-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.gallery-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filter-container {
    margin-top: 2rem;
}

.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #F4E4BC;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: #2D1810;
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
}

.gallery-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: rgba(45, 24, 16, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 188, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    font-size: 2rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.gallery-categories-section {
    padding: 6rem 0;
    background: #1A0F0A;
    position: relative;
}

.gallery-categories-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.gallery-categories-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.gallery-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gallery-category {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gallery-category:nth-child(2) {
    animation-delay: 0.5s;
}

.gallery-category:nth-child(3) {
    animation-delay: 0.7s;
}

.category-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.gallery-description {
    color: #F4E4BC;
    line-height: 1.6;
    font-size: 1rem;
}

.gallery-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    text-align: center;
    position: relative;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.gallery-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Contact Main Section */
.contact-main-section {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    margin-top: 50px;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.contact-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC);
    margin: 0 auto 3rem;
    border-radius: 1px;
}

.contact-info-content {
    margin-top: 2rem;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    text-align: center;
    padding: 4rem 0;
}

.contact-hero-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.6rem;
    color: #F4E4BC;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-section {
    padding: 4rem 0;
    background: #1A0F0A;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.contact-method {
    background: rgba(45, 24, 16, 0.8);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-method:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-method:nth-child(3) {
    animation-delay: 0.7s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method-title {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p {
    color: #E8D5B7;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.opening-hours-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    text-align: center;
    position: relative;
}

.opening-hours-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.opening-hours-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hours-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hours-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(45, 24, 16, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.day {
    font-size: 1.2rem;
    color: #F4E4BC;
    font-weight: 500;
}

.time {
    font-size: 1.2rem;
    color: #D4AF37;
    font-weight: normal;
}

.note-text {
    font-size: 1.1rem;
    color: #E8D5B7;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-form-section {
    padding: 4rem 0;
    background: #1A0F0A;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.form-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.contact-form {
    background: rgba(45, 24, 16, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(26, 15, 10, 0.8);
    color: #E8D5B7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    text-align: center;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.map-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.map-placeholder {
    background: rgba(45, 24, 16, 0.8);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-text {
    font-size: 1.5rem;
    color: #F4E4BC;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-description {
    color: #E8D5B7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-cta-section {
    padding: 4rem 0;
    background: #1A0F0A;
    text-align: center;
    position: relative;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        #D4AF37 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Mobile Gallery and Contact Styles */
@media (max-width: 768px) {
    .gallery-main-section {
        margin-top: 120px;
        padding: 4rem 0 2rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-main-section {
        margin-top: 120px;
        padding: 4rem 0 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .category-title,
    .form-title,
    .map-title {
        font-size: 2rem;
    }
    
    .gallery-filter-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hours-day {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Success Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0; /* Will be updated to header height */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.modal-header {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #2D1810;
    padding: 1.2rem;
    text-align: center;
    border-radius: 13px 13px 0 0;
    position: relative;
    flex-shrink: 0;
}

.success-icon {
    width: 45px;
    height: 45px;
    background: #2D1810;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 0.6rem;
    border: 3px solid #2D1810;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.modal-body {
    padding: 1.2rem;
    color: #F4E4BC;
    flex: 1;
    overflow-y: auto;
}

.modal-message {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-details {
    background: rgba(45, 24, 16, 0.6);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 0.8rem;
}

.reservation-details p {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.reservation-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reservation-details li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #E8D5B7;
    font-size: 0.9rem;
    line-height: 1.3;
}

.reservation-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.modal-footer {
    padding: 1rem 1.2rem 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.modal-close {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #2D1810;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    font-size: 0.95rem;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

/* Date Input with Golden Icon */
.date-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-input-wrapper input[type="date"] {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(26, 15, 10, 0.8);
    color: #E8D5B7;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.date-input-wrapper input[type="date"]:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.date-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #D4AF37;
    pointer-events: none;
    z-index: 2;
}

/* Custom date picker styling */
.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0; /* Will be updated to header height */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: transparent;
}

/* Firefox date picker styling */
.date-input-wrapper input[type="date"]::-moz-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0; /* Will be updated to header height */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

/* Hover effect for date input */
.date-input-wrapper:hover .date-icon {
    color: #F4E4BC;
    transform: translateY(-50%) scale(1.1);
    transition: all 0.3s ease;
}

.date-input-wrapper:hover input[type="date"] {
    border-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* Enhanced Form Validation Styles */
.field-error {
    color: #e74c3c !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
    display: block !important;
    font-weight: 500 !important;
    animation: errorShake 0.5s ease-in-out !important;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Error state for form fields */
input.error, select.error, textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3) !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}

/* Focus state for error fields */
input.error:focus, select.error:focus, textarea.error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.4) !important;
}

/* Form validation summary */
.validation-summary {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: none;
}

.validation-summary.show {
    display: block;
    animation: errorShake 0.5s ease-in-out;
}

.validation-summary h4 {
    color: #e74c3c;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.validation-summary ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #e74c3c;
}

.validation-summary li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .success-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-message {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .reservation-details {
        padding: 0.8rem;
        margin-top: 0.6rem;
    }
    
    .reservation-details p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .reservation-details li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        line-height: 1.2;
    }
    
    .modal-footer {
        padding: 0.8rem 1rem 1rem;
    }
    
    .modal-close {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        width: 98%;
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 0.8rem;
    }
    
    .success-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 0.8rem;
    }
    
    .modal-message {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .reservation-details {
        padding: 0.6rem;
        margin-top: 0.5rem;
    }
    
    .reservation-details p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .reservation-details li {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }
    
    .modal-footer {
        padding: 0.6rem 0.8rem 0.8rem;
    }
    
    .modal-close {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
}

/* Lunch Menu Coming Soon Styles */
.lunch-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(45, 24, 16, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.lunch-coming-soon::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 228, 188, 0.05));
    opacity: 0.5;
}

.lunch-coming-soon .coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.lunch-coming-soon .coming-soon-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lunch-coming-soon .coming-soon-description {
    font-size: 1.2rem;
    color: #E8D5B7;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lunch-coming-soon .coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lunch-coming-soon .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lunch-coming-soon .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.lunch-coming-soon .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lunch-coming-soon .feature-text {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    text-align: center;
}

.lunch-coming-soon .coming-soon-cta {
    text-align: center;
}

.lunch-coming-soon .cta-text {
    font-size: 1.1rem;
    color: #E8D5B7;
    margin-bottom: 2rem;
    font-style: italic;
}

.lunch-coming-soon .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Content Styles */
.menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dietary-notice {
    text-align: center;
    margin-bottom: 4rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(34, 139, 34, 0.05));
    border: 2px solid rgba(34, 139, 34, 0.4);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(34, 139, 34, 0.2);
    position: relative;
    overflow: hidden;
}

.dietary-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notice-text {
    color: #22B822;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.menu-column {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.95), rgba(26, 15, 10, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
}

.menu-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
}

.menu-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.menu-section {
    margin-bottom: 1.5rem;
    height: fit-content;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, #F4E4BC, #D4AF37, transparent);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.section-note {
    color: #E8D5B7;
    font-style: italic;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-item {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.8), rgba(45, 24, 16, 0.6));
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    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, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.menu-item:hover {
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.9), rgba(45, 24, 16, 0.8));
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.1rem;
}

.item-name {
    color: #F4E4BC;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.item-price {
    color: #D4AF37;
    font-weight: 800;
    font-size: 1.3rem;
    margin-left: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.item-description {
    color: #E8D5B7;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0.3rem 0 0 0;
    font-style: italic;
    opacity: 0.9;
}

.item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.3rem;
}

.option {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: #D4AF37;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.option:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    transform: translateY(-1px);
}

/* Compact styling for items with multiple options */
.menu-item:has(.item-options) {
    padding: 0.6rem;
}

.menu-item:has(.item-options) .item-header {
    margin-bottom: 0.1rem;
}

.menu-item:has(.item-options) .item-description {
    margin: 0.2rem 0 0 0;
    font-size: 0.85rem;
}

.menu-item:has(.item-options) .item-options {
    margin-top: 0.2rem;
}

.allergens {
    color: #FFB347;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 179, 71, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 179, 71, 0.3);
    margin-left: 0.5rem;
}

.spice-level {
    color: #FF6B6B;
    font-size: 1rem;
    margin-left: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Special Main Course Styles */
.special-main-course {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.95), rgba(26, 15, 10, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.special-main-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
}

.special-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Tandoori Section Styles */
.tandoori-section {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.95), rgba(26, 15, 10, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.tandoori-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
}

.tandoori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Main Menu Sections */
.main-menu-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: start;
    align-content: start;
    grid-auto-rows: min-content;
}

.main-menu-sections > .menu-section {
    height: fit-content;
}

.main-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    align-items: start;
}

/* Allergy Information */
.allergy-info {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.95), rgba(26, 15, 10, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Private Dining Notice */
.private-dining-notice {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(101, 67, 33, 0.8));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.private-dining-notice h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Important Information */
.important-info {
    background: rgba(45, 24, 16, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    line-height: 1.6;
}

.important-info p {
    color: #E8D5B7;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.important-info p:last-child {
    margin-bottom: 0;
}

/* Dietary Certifications */
.dietary-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(45, 24, 16, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.cert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.veg-icon {
    background: #4CAF50;
    color: white;
}

.vegan-icon {
    background: #8BC34A;
    color: white;
}

.halal-icon {
    background: #2196F3;
    color: white;
    font-size: 0.9rem;
}

.dairy-free-icon {
    background: #FF9800;
    color: white;
}

.cert-item span {
    color: #E8D5B7;
    font-size: 1rem;
    font-weight: 600;
}

.allergy-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
}

.allergy-title {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.allergen-legend, .spice-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.allergen-item, .spice-item {
    color: #E8D5B7;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.allergen-item:hover, .spice-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.allergy-notice {
    color: #FFB347;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.15), rgba(255, 179, 71, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(255, 179, 71, 0.4);
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Menu Coming Soon Styles */
.menu-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(45, 24, 16, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.menu-coming-soon::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 228, 188, 0.05));
    opacity: 0.5;
}

.menu-coming-soon .coming-soon-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-description {
    font-size: 1.2rem;
    color: #E8D5B7;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    text-align: center;
}

.coming-soon-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #E8D5B7;
    margin-bottom: 2rem;
    font-style: italic;
}

.coming-soon-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Gallery Coming Soon Styles */
.gallery-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(45, 24, 16, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-coming-soon::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 228, 188, 0.05));
    opacity: 0.5;
}

.gallery-coming-soon .coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.gallery-coming-soon .coming-soon-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-coming-soon .coming-soon-description {
    font-size: 1.2rem;
    color: #E8D5B7;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-coming-soon .coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-coming-soon .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-coming-soon .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gallery-coming-soon .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gallery-coming-soon .feature-text {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    text-align: center;
}

.gallery-coming-soon .coming-soon-cta {
    text-align: center;
}

.gallery-coming-soon .cta-text {
    font-size: 1.1rem;
    color: #E8D5B7;
    margin-bottom: 2rem;
    font-style: italic;
}

.gallery-coming-soon .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Map Iframe Styles */
.map-container-iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-container-iframe iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .map-container-iframe iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container-iframe iframe {
        height: 300px;
    }
    
    /* Extra small mobile devices - hero content should not add extra offset */
    .hero-content {
        margin-top: 0 !important;
        padding-top: 1rem;
    }
    
    .hero-text {
        padding-top: 1rem;
    }
}


/* Mission Section Styles */
.mission-section {
    padding: 4rem 2rem;
    background: rgba(45, 24, 16, 0.8);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Chef Story Section Styles */
.chef-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2D1810 0%, #3D2418 100%);
    position: relative;
    overflow: hidden;
}

.chef-story-section::before {
    content: '';
    position: absolute;
    top: 0; /* Will be updated to header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.chef-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.chef-story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-story-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chef-story-description {
    font-size: 1.1rem;
    color: #E8D5B7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.chef-story-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.chef-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.chef-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.2);
}

.chef-highlight-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.chef-highlight-text {
    font-size: 1rem;
    color: #F4E4BC;
    font-weight: 600;
    text-align: center;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-text {
    font-size: 1.2rem;
    color: #E8D5B7;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

.highlight-text {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .chef-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .chef-story-title {
        font-size: 2rem;
    }
    
    .chef-story-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .chef-highlight {
        min-width: 150px;
        padding: 1rem;
    }
    
    .chef-highlight-icon {
        font-size: 2rem;
    }
    
    .chef-highlight-text {
        font-size: 0.9rem;
    }
    
    .mission-highlights {
        gap: 1.5rem;
    }
    
    .highlight-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .mission-title {
        font-family: 'Fonarto', 'Playfair Display', serif;
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

/* Reservation Success/Error Messages */
.reservation-success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #51cf66;
    position: relative;
    z-index: 2;
}

.reservation-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.reservation-errors {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
    position: relative;
    z-index: 2;
}

.reservation-errors h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reservation-errors ul {
    list-style: none;
    padding: 0;
}

.reservation-errors li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(220, 53, 69, 0.2);
}

.reservation-errors li:last-child {
    border-bottom: none;
}

/* Mobile events - force single column layout */
@media (max-width: 768px) {
    .events-horizontal {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .event-horizontal-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
        flex: none !important;
        min-width: 0 !important;
    }
}

/* Only stack events horizontally on very small screens (phones) */
@media (max-width: 480px) {
    .events-horizontal {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .event-horizontal-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
        flex: none !important;
        min-width: 0 !important;
    }
    
    .event-horizontal-image {
        flex: 0 0 200px;
        min-height: 200px;
    }
    
    .event-horizontal-content {
        padding: 1.5rem;
    }
    
    .event-horizontal-content .event-name {
        font-size: 1.4rem;
    }
    
    .event-horizontal-content .event-description {
        font-size: 0.9rem;
    }
}

/* Admin Reviews styles (added to global stylesheet) */
.admin-main { max-width: 1200px; margin: 0 auto; padding: 0 2rem 2rem; }
.admin-section { background: rgba(45, 24, 16, 0.9); border: 2px solid rgba(212, 175, 55, 0.3); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-form label { display: block; color: #F4E4BC; margin-bottom: 0.4rem; font-weight: 600; }
.admin-form input[type="text"], .admin-form input[type="url"], .admin-form select, .admin-form textarea { width: 100%; padding: 10px 12px; background: rgba(26, 15, 10, 0.8); border: 2px solid rgba(212, 175, 55, 0.3); border-radius: 8px; color: #F4E4BC; }
.admin-btn { background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%); color: #1A0F0A; border: none; border-radius: 8px; padding: 10px 16px; font-weight: 700; cursor: pointer; }
.admin-alert.success { background: rgba(40,167,69,.1); border:1px solid rgba(40,167,69,.3); color:#28a745; padding:10px; border-radius:8px; margin-bottom:1rem }
.admin-alert.error { background: rgba(220,53,69,.1); border:1px solid rgba(220,53,69,.3); color:#ff6b6b; padding:10px; border-radius:8px; margin-bottom:1rem }
.admin-table-wrapper { overflow:auto; border-radius: 10px; border:1px solid rgba(212,175,55,.2); }
.admin-table { width:100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid rgba(212,175,55,.15); }
.admin-table th { text-align:left; color:#D4AF37; background: rgba(212,175,55,.06); }
.admin-link { color:#D4AF37; text-decoration:none; transition:all .2s; display:inline-flex; align-items:center; gap:4px; padding:4px 6px; border-radius:4px }
.admin-link:hover { background:rgba(212,175,55,.1); color:#F4E4BC }
.admin-link.danger { color:#ff6b6b; text-decoration:none }
.admin-link.danger:hover { background:rgba(255,107,107,.1); color:#ff8a8a }
.admin-link i { font-size:.9rem }

/* ===== REDESIGNED GIFT CARDS PAGE STYLES ===== */

/* Updated Gift Cards Main Section */
.gift-cards-main-section {
    margin-top: 80px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
    overflow: hidden;
}

.gift-cards-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.gift-cards-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gift-cards-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.gift-cards-subtitle {
    font-size: 1.3rem;
    color: #F4E4BC;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gift-cards-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.gift-cards-features {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(45, 24, 16, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-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: left 0.6s ease;
}

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

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Fonarto', serif;
    letter-spacing: 0.5px;
}

.feature-description {
    color: #F4E4BC;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Purchase Section */
.gift-purchase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A0F0A 0%, #2D1810 100%);
    position: relative;
}

.purchase-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.purchase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.purchase-title {
    font-family: 'Fonarto', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.purchase-subtitle {
    font-size: 1.2rem;
    color: #F4E4BC;
    opacity: 0.9;
}

.purchase-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    align-items: start;
}

/* Amount Selection */
.amount-selection {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.amounts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-family: 'Fonarto', serif;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fonarto', serif;
}

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

.amount-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #2D1810;
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.custom-amount {
    margin-top: 2rem;
}

.custom-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Fonarto', serif;
}

.custom-input-group {
    display: flex;
    align-items: center;
    background: rgba(45, 24, 16, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.custom-input-group:focus-within {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    margin-right: 0.5rem;
}

.custom-amount-input {
    background: transparent;
    border: none;
    color: #F4E4BC;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    outline: none;
}

.custom-amount-input::placeholder {
    color: rgba(244, 228, 188, 0.5);
}

/* Gift Form */
.gift-form {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-family: 'Fonarto', serif;
}

.gift-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    /* Address Section Styles */
    .address-section {
        margin: 2rem 0;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 228, 188, 0.05) 100%);
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 8px;
    }

    .address-title {
        color: #D4AF37;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .address-title::before {
        content: "📍";
        font-size: 1.1rem;
    }

    .address-subtitle {
        color: #F4E4BC;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .address-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1rem;
    }

    .address-grid .form-group:nth-child(3),
    .address-grid .form-group:nth-child(4) {
        grid-column: 1 / -1;
    }

    .address-grid .form-group:nth-child(3) {
        grid-column: 1 / 2;
    }

    .address-grid .form-group:nth-child(4) {
        grid-column: 2 / 3;
    }

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Fonarto', serif;
}

.form-group input,
.form-group textarea {
    background: rgba(45, 24, 16, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #F4E4BC;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 228, 188, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Summary */
.form-summary {
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.summary-row.total {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-label {
    color: #F4E4BC;
    font-weight: 600;
}

.summary-value {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Purchase Button */
.purchase-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #2D1810;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Fonarto', serif;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.purchase-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.purchase-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Total Payable Amount Styles */
.total-payable-section {
    margin: 2rem 0;
}

.total-payable-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 188, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.total-payable-header h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-payable-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #F4E4BC;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Fonarto', serif;
}

.total-payable-note {
    color: #F4E4BC;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Price Breakdown Styles */
.price-breakdown {
    background: rgba(26, 15, 10, 0.6);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-line:last-child {
    border-bottom: none;
}

.price-line.total-line {
    border-top: 2px solid rgba(212, 175, 55, 0.5);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
}

.price-label {
    color: #F4E4BC;
    font-size: 0.95rem;
}

.price-value {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.total-line .price-label,
.total-line .price-value {
    font-size: 1.1rem;
    font-weight: 700;
}

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

/* Terms Section */
.gift-terms {
    padding: 4rem 0;
    background: #2D1810;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Fonarto', serif;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.terms-item {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.terms-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.terms-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.terms-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Fonarto', serif;
}

.terms-item p {
    color: #F4E4BC;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gift-cards-main-section {
        margin-top: 120px;
        padding: 3rem 0 2rem;
    }
    
    .gift-cards-title {
        font-size: 2.5rem;
    }
    
    .gift-cards-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .purchase-content {
        gap: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gift-cards-main-section {
        margin-top: 120px;
        padding: 2.5rem 0 2rem;
    }
    
    .gift-cards-title {
        font-size: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .amount-selection,
    .gift-form {
        padding: 1.5rem;
    }
}
