/* index.css */

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?q=80&w=2070&auto=format&fit=crop');
    /* Premium Restaurant Interior */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}

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

.hero-title {
    font-size: 5.5rem;
    color: var(--primary-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* --- Experience Section --- */
.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--primary-white);
}

.exp-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.parallax-img-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.parallax-zoom {
    width: 100%;
    height: 130%;
    /* Extra height for scroll panning */
    object-fit: cover;
    will-change: transform;
}

/* --- Signature Dishes (3D Hover Cards) --- */
.signature-bg {
    background-color: var(--secondary-charcoal);
    position: relative;
    padding: 8rem 0;
}

/* Subtle pattern overlay */
.signature-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--accent-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

.text-white {
    color: var(--primary-white);
}

.pb-5 {
    padding-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

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

/* 3D Wrapper */
.wrap-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.layer-tilt {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.dish-card-inner {
    background-color: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dish-card-inner:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dish-img-wrap {
    height: 250px;
    overflow: hidden;
    transform: translateZ(30px);
    /* 3D pop */
}

.dish-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card-inner:hover .dish-img-wrap img {
    transform: scale(1.1);
}

.dish-info {
    padding: 2rem;
    transform: translateZ(40px);
    /* 3D pop */
    text-align: center;
}

.dish-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-charcoal);
}

.dish-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.dish-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* --- Features (Glassmorphism & Glow) --- */
.features {
    background-color: var(--bg-light);
}

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

.glass-card {
    background: var(--primary-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium), 0 0 20px rgba(212, 175, 55, 0.2);
    /* Glow */
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.glass-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-grid h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-charcoal);
}

.feature-grid p {
    color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonials {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.dark-glass {
    background: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
}

.review-slider {
    max-width: 800px;
    margin: 4rem auto 0;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 4rem 3rem;
    opacity: 0.5;
    transition: opacity 0.5s;
    text-align: center;
}

.review-card.active {
    opacity: 1;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.reviewer {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Reservation CTA --- */
.reservation-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(43, 43, 43, 0.9), rgba(43, 43, 43, 0.7));
}

.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.cta-inner {
    padding: 4rem 3rem;
    transform: translateZ(20px);
}

.cta-inner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background-color: var(--accent-gold);
    color: var(--primary-white);
}

.btn-large::before {
    background-color: var(--primary-white);
}

.btn-large:hover {
    color: var(--secondary-charcoal);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .experience {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-inner h2 {
        font-size: 2.8rem;
    }
}

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .review-card {
        padding: 3rem 1.5rem;
    }

    .review-text {
        font-size: 1.1rem;
    }

    .parallax-img-container {
        height: 350px;
    }

    .dish-img-wrap {
        height: 200px;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 2.2rem;
    }

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

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 3rem 1.5rem;
    }
}