:root {
    --primary-color: #f5e3cc;
    /* Cream/Peach */
    --bg-dark: #181515;
    /* Warm Charcoal */
    --bg-accent: #2b1E1E;
    /* Dark Mahogany */
    --text-light: #f5e3cc;
    --text-dim: #aab6b6;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* Full-Width Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(24, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 227, 204, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-link:hover {
    color: white;
    opacity: 1;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-dim);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 227, 204, 0.2);
}

/* Carousel Section */
.carousel-section {
    background-color: var(--bg-dark);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s var(--transition);
}

.carousel-slide {
    min-width: 100%;
    text-align: center;
    padding: 20px;
}

.carousel-slide img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.carousel-slide h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 227, 204, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.nav-btn.prev {
    left: -80px;
}

.nav-btn.next {
    right: -80px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(245, 227, 204, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.4);
}

/* Accordion Menu */
.menu-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--bg-accent);
    border: 1px solid rgba(245, 227, 204, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-header:hover {
    background-color: rgba(245, 227, 204, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    /* Large enough to fit content */
    padding-bottom: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(245, 227, 204, 0.1);
    padding: 20px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-details h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.menu-details p {
    color: var(--text-dim);
    font-style: italic;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 20px;
}

/* About Section */
.about-section {
    background-color: var(--bg-dark);
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: var(--text-dim);
}

/* Contact Section */
.contact-section {
    background-color: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-icon {
    color: var(--primary-color);
    min-width: 35px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-dim);
}

.contact-map iframe {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Reveal for Groups */
.reveal-group .reveal {
    transition-delay: calc(0.1s * var(--delay, 0));
}

/* Carousel Sequential Entry */
.carousel-slide img {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide h3,
.carousel-slide p {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide.active img {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.carousel-slide.active h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
    /* Wait for image to land */
}

.carousel-slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
    /* Appear after title */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-btn.prev {
        left: 10px;
    }

    .nav-btn.next {
        right: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .carousel-slide img {
        width: 250px;
        height: 250px;
    }
}