/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(75, 30, 47, 0.8) 0%, 
        rgba(99, 50, 68, 0.6) 50%, 
        rgba(75, 30, 47, 0.8) 100%
    );
}

.hero-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 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="50" cy="50" r="0.5" fill="rgba(254,246,228,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: floating 20s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-10px) scale(1.02); }
    66% { transform: translateY(5px) scale(0.98); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cream);
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================= */
/* BUTTON STYLES */
/* ============================================= */
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #e6c558);
    color: var(--burgundy);
    border: 2px solid var(--gold);
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: var(--burgundy);
}

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

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--burgundy);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(254, 246, 228, 0.3);
}

/* ============================================= */
/* SCROLL INDICATOR */
/* ============================================= */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

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

/* ============================================= */
/* FADE IN ANIMATIONS */
/* ============================================= */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* ============================================= */
/* SECTION STYLING */
/* ============================================= */
.about-section, .menu-preview-section, .experience-section, .reservation-cta {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section.animate, .menu-preview-section.animate, 
.experience-section.animate, .reservation-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cream);
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 3rem;
}

/* ============================================= */
/* ABOUT SECTION */
/* ============================================= */

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--cream);
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================================= */
/* MENU PREVIEW SECTION */
/* ============================================= */
.menu-preview-tabs {
    margin-top: 4rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: rgba(99, 50, 68, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 12px 24px;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--gold), #e6c558);
    color: var(--burgundy);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

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

.menu-preview-card {
    background: rgba(99, 50, 68, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.menu-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-preview-card:hover::before {
    opacity: 1;
}

.menu-preview-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.menu-preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.1);
}

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

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

.menu-preview-content {
    padding: 1.5rem;
}

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

.menu-preview-content .item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    line-height: 1.2;
}

.menu-preview-content .item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-preview-content .item-description {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.menu-preview-content .item-ingredients,
.menu-preview-content .item-calories {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.menu-preview-content .item-ingredients strong,
.menu-preview-content .item-calories strong {
    color: var(--gold);
    opacity: 1;
}

/* Responsive adjustments for menu preview */
@media (max-width: 768px) {
    .menu-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tab-buttons {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .menu-preview-content .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .menu-preview-content .item-price {
        align-self: flex-start;
    }
}


/* ============================================= */
/* EXPERIENCE SECTION */
/* ============================================= */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.experience-card {
    background: rgba(99, 50, 68, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.experience-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================================= */
/* RESERVATION CTA SECTION */
/* ============================================= */
.reservation-cta {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */
@media (max-width: 768px) {
    .hero-buttons, .cta-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-categories .row > div {
        margin-bottom: 2rem;
    }
    
    .about-section, .menu-preview-section, 
    .experience-section, .reservation-cta {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 0 15px;
    }
    
    .menu-card, .experience-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}