/* Root Variables */
:root {
    /* Christmas Theme Colors (Primary) */
    --primary-dark: #c41e3a;
    --secondary-dark: #8b1424;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-muted: #f0e6d2;
    --overlay-dark: rgba(139, 20, 36, 0.7);
    
    /* Christmas Additional Colors */
    --christmas-red: #c41e3a;
    --christmas-green: #165b33;
    --christmas-gold: #ffd700;
    --christmas-white: #f0f8ff;
}

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

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--secondary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Christmas Cap Decoration */
.christmas-cap {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-size: 60px;
    animation: swing 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    pointer-events: none;
}

@keyframes swing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

/* Snow Container and Animation */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    display: block;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    user-select: none;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Christmas Banner in Hero - Now Clickable */
.christmas-banner {
    margin-top: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
    border: 2px solid var(--christmas-gold);
    border-radius: 50px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.christmas-banner:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.christmas-banner p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--text-white);
}

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

/* Christmas Download Section */
.christmas-download-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.christmas-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23165b33" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    background-size: 100% 100px;
    opacity: 0.3;
    pointer-events: none;
}

.christmas-download-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.christmas-download-header {
    margin-bottom: 60px;
}

.christmas-icon-large {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
    animation: swing 3s ease-in-out infinite;
}

.christmas-label {
    color: var(--christmas-gold) !important;
    font-weight: 600;
}

.christmas-download-header h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--christmas-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.christmas-download-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.christmas-download-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(22, 91, 51, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.christmas-download-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* FIXED: Allow clicks through overlay */
    z-index: 0;
}

.christmas-download-box:hover {
    transform: translateY(-5px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.christmas-download-box:hover::before {
    opacity: 1;
}

.christmas-download-icon {
    font-size: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.christmas-download-box h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.christmas-download-box p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.christmas-download-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
    border: 2px solid var(--christmas-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
    z-index: 2; /* FIXED: Higher z-index for clickability */
}

.christmas-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
}

.christmas-booking-note {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.christmas-booking-note strong {
    color: var(--christmas-gold);
}

.christmas-book-btn {
    margin-top: 20px;
    position: relative;
    z-index: 2; /* FIXED: Higher z-index for clickability */
}

/* PDF Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--christmas-gold);
}

.pdf-modal-header {
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--christmas-gold);
}

.pdf-modal-header h3 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.pdf-close-btn {
    background: none;
    border: 2px solid var(--christmas-gold);
    color: var(--christmas-gold);
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.pdf-close-btn:hover {
    background: var(--christmas-gold);
    color: var(--secondary-dark);
    transform: rotate(90deg);
}

.pdf-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(90vh - 84px);
    gap: 20px;
}

.loader-spinner {
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid var(--christmas-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pdf-loader p {
    color: var(--text-muted);
    font-size: 16px;
}

#pdfIframe {
    width: 100%;
    height: calc(90vh - 84px);
    border: none;
    display: none;
}

/* Online Ordering Section */
.online-ordering-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.online-ordering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23165b33" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,165.3C960,181,1056,171,1152,154.7C1248,139,1344,117,1392,106.7L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') repeat-x top;
    background-size: 100% 100px;
    opacity: 0.3;
    pointer-events: none;
}

.online-ordering-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.online-ordering-header {
    margin-bottom: 60px;
}

.ordering-icon-large {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.online-ordering-header h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--christmas-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.online-ordering-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.online-ordering-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(22, 91, 51, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.online-ordering-box:hover {
    transform: translateY(-5px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.ordering-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.ordering-feature {
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.ordering-feature h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 500;
}

.ordering-feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.order-online-btn {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
    border: 2px solid var(--christmas-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2; /* FIXED: Higher z-index for clickability */
}

.order-online-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 91, 51, 0.4);
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
}

/* Online Ordering Modal */
.ordering-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.ordering-modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 95vh;
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--christmas-gold);
}

.ordering-modal-header {
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--christmas-gold);
}

.ordering-modal-header h3 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.ordering-close-btn {
    background: none;
    border: 2px solid var(--christmas-gold);
    color: var(--christmas-gold);
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.ordering-close-btn:hover {
    background: var(--christmas-gold);
    color: var(--secondary-dark);
    transform: rotate(90deg);
}

.ordering-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(95vh - 84px);
    gap: 20px;
}

#orderingIframe {
    width: 100%;
    height: calc(95vh - 84px);
    border: none;
    display: none;
    background: white;
}

/* Menu Placeholder */
.menu-placeholder {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.menu-placeholder-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 100px;
    display: block;
    margin-bottom: 30px;
    animation: swing 3s ease-in-out infinite;
}

.menu-placeholder h3 {
    font-size: 36px;
    font-weight: 400;
    color: var(--christmas-gold);
    margin-bottom: 20px;
}

.menu-placeholder p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.menu-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2; /* FIXED: Ensure buttons are clickable */
}

.menu-actions .cta-btn,
.menu-actions button {
    position: relative;
    z-index: 2; /* FIXED: Ensure clickability */
}

.order-cta {
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-red) 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 5%;
    background: rgba(196, 30, 58, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--christmas-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    width: 150px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--christmas-gold);
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-btn,
.book-btn {
    padding: 12px 24px;
    border: 1px solid var(--text-white);
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-btn {
    background: linear-gradient(135deg, var(--christmas-green) 0%, rgba(22, 91, 51, 0.8) 100%);
    border-color: var(--christmas-gold);
}

.order-btn:hover {
    background: linear-gradient(135deg, var(--christmas-gold) 0%, rgba(255, 215, 0, 0.8) 100%);
    border-color: var(--christmas-gold);
    color: var(--secondary-dark);
    transform: translateY(-2px);
}

.book-btn:hover {
    background: var(--christmas-gold);
    border-color: var(--christmas-gold);
    color: var(--secondary-dark);
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(139, 20, 36, 0.4),
        rgba(139, 20, 36, 0.7)
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 42px;
    color: var(--christmas-gold);
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Section Styling */
.section {
    padding: 120px 5%;
    position: relative;
}

.section-dark {
    background-color: var(--primary-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2; /* FIXED: Ensure clickability */
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--christmas-green);
    color: var(--christmas-gold);
    border-color: var(--christmas-gold);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Menu Showcase */
.menu-showcase {
    padding: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 600px;
}

.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent,
        rgba(139, 20, 36, 0.9)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--text-white);
}

.menu-overlay h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
}

.menu-overlay p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Cuisine Section */
.cuisine-section {
    background-color: var(--secondary-dark);
}

.cuisine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cuisine-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cuisine-content {
    padding: 40px;
}

.cuisine-content h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}

.cuisine-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Menu Details - Hidden by Default */
.menu-details {
    padding: 120px 5%;
    background-color: var(--primary-dark);
}

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

.menu-category h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dish-name {
    color: var(--text-white);
    font-size: 16px;
}

.dish-price {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Reservation Section */
.reservation {
    background-color: var(--secondary-dark);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reservation-content {
    padding: 40px;
}

.reservation-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.reservation-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.reservation-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--text-white);
}

.reservation-btn {
    grid-column: span 3;
    padding: 15px 30px;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-btn:hover {
    background: var(--christmas-green);
    color: var(--christmas-gold);
    border-color: var(--christmas-gold);
}

.reservation-image {
    height: 600px;
    overflow: hidden;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Section */
.events {
    background-color: var(--secondary-dark);
    text-align: center;
}

.events h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.events-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    text-align: center;
}

.event-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.event-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.event-date {
    color: var(--text-muted);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    background-color: var(--primary-dark);
    text-align: center;
}

.gallery h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hashtag {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)), 
                url('images/Bar2.jpg') center/cover;
    text-align: center;
    color: var(--text-white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    color: var(--christmas-gold);
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--christmas-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--christmas-gold);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .cuisine-grid,
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .menu-item {
        height: 400px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-form {
        grid-template-columns: 1fr;
    }

    .reservation-btn {
        grid-column: span 1;
    }

    .christmas-cap {
        font-size: 45px;
        top: 15px;
        right: 15px;
    }

    .ordering-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-buttons {
        gap: 10px;
    }

    .order-btn,
    .book-btn {
        padding: 10px 18px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .logo-img {
        width: 120px;
        max-height: 50px;
    }

    .header {
        height: 70px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .section {
        padding: 80px 5%;
    }

    .cuisine-content,
    .reservation-content {
        padding: 40px 20px;
    }

    .about-content h2,
    .cuisine-content h2,
    .reservation-content h2,
    .events h2,
    .gallery h2 {
        font-size: 32px;
    }

    .menu-overlay h3 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .christmas-download-header h2 {
        font-size: 32px;
    }

    .christmas-icon-large {
        font-size: 50px;
    }

    .christmas-download-box {
        padding: 30px 20px;
    }

    .christmas-download-box h3 {
        font-size: 24px;
    }

    .christmas-banner p {
        font-size: 14px;
    }

    .christmas-cap {
        font-size: 40px;
        top: 10px;
        right: 10px;
    }

    .online-ordering-header h2 {
        font-size: 32px;
    }

    .ordering-icon-large {
        font-size: 60px;
    }

    .pdf-modal-content,
    .ordering-modal-content {
        width: 95%;
        height: 85vh;
    }

    #pdfIframe {
        height: calc(85vh - 84px);
    }

    #orderingIframe {
        height: calc(85vh - 84px);
    }

    .header-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .order-btn,
    .book-btn {
        padding: 8px 15px;
        font-size: 10px;
    }

    .menu-placeholder h3 {
        font-size: 28px;
    }

    .placeholder-icon {
        font-size: 70px;
    }

    .menu-actions {
        flex-direction: column;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Interactive Effects */
.menu-item img {
    transition: transform 0.5s ease;
}

.gallery-item {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CRITICAL: Ensure all buttons and links are clickable */
button, 
a.cta-btn,
a.christmas-download-btn,
a.christmas-book-btn,
a.book-festive-btn,
a.order-online-btn,
a.order-btn,
a.book-btn,
.christmas-download-btn,
.order-online-btn {
    position: relative;
    z-index: 10 !important; /* Force high z-index */
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Ensure parent containers don't block clicks */
.christmas-download-box > *,
.online-ordering-box > *,
.menu-actions > * {
    position: relative;
    z-index: 10;
}


/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
}
