/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 65px;
    background-color: var(--bg);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
    color: var(--charcoal-black);
}

.hero-title span {
    font-weight: 700;
    color: var(--emerald-green);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--charcoal-black);
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s both;
}

.hero-badge {
    font-size: 13px;
    color: var(--charcoal-black);
    opacity: 0.8;
}

/* Photo Carousel */
.carousel-section {
    padding: 30px 0;
    background: var(--bg);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 12px;
    animation: carouselScroll 60s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.carousel-item:nth-child(odd) {
    width: 280px;
    height: 380px;
}

.carousel-item:nth-child(even) {
    width: 320px;
    height: 280px;
    margin-top: 50px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s var(--transition-smooth);
    filter: grayscale(100%);
}

.carousel-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--emerald-green);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: -1px;
}

/* Menu Section */
.menu-note {
    text-align: center;
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 32px;
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--surface);
    border: 1px solid var(--light-gray);
    padding: 32px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--emerald-green);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.menu-card:hover::before,
.menu-card.active::before {
    transform: scaleX(1);
}

.menu-card:hover,
.menu-card.active {
    border-color: var(--emerald-green);
    transform: translateY(-4px);
}

/* Info Section */
.info-section {
    padding: 60px 0;
    border-top: 1px solid var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg);
}

/* Reviews */
.reviews-section {
    background: var(--surface);
    padding: 100px 0;
    color: var(--charcoal-black);
    border-top: 1px solid var(--light-gray);
}

/* Footer */
footer {
    background: var(--charcoal-black);
    color: white;
    padding: 60px 0 30px;
}