:root {
    --bg-color: #faf0d7;
    /* Beige */
    --card-bg: #ffffff;
    --text-color: #333333;
    --accent-color: #e01f22;
    /* Red */
    --accent-hover: #b71c1c;
    --gold: #d4af37;
    /* Darker gold for visibility on light bg */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: var(--bg-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    transition: background-color 0.3s;
}

.header-whatsapp:hover {
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    /* Make white */
}

@media (max-width: 600px) {
    .whatsapp-text {
        display: none;
    }

    .header-whatsapp {
        padding: 0.5rem;
        border-radius: 50%;
    }
}

.logo {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('public/branding/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(250, 240, 215, 0.3);
    padding: 2rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

/* Menu */
.menu-container {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

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

.menu-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item img.default-image {
    object-fit: contain;
    padding: 2rem;
    /* Optional: add some padding so it doesn't touch edges */
    background-color: var(--card-bg);
}

.item-details {
    padding: 1.5rem;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item-desc {
    color: #666;
    font-size: 1rem;
}

.item-price {
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.item-price span {
    display: block;
    margin-top: 0.2rem;
}

/* Contact / Footer */
footer {
    background-color: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
    border-top: none;
    color: white;
}

footer h2 {
    font-family: var(--font-heading);
    color: var(--bg-color);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: white;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-button:hover {
    background-color: var(--bg-color);
    transform: scale(1.05);
}

.reels-section {
    background-color: var(--card-bg);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    /* Adjust based on card width * 3 + gaps */
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.reel-card {
    flex: 0 0 300px;
    /* Fixed width for desktop */
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: black;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlays */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s;
}

.play-icon {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.reel-card.playing .play-overlay {
    opacity: 0;
}

/* Navigation Buttons */
.nav-btn {
    background-color: white;
    border: 1px solid #dbdbdb;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 10;
    position: absolute;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .reels-section {
        padding: 2rem 0;
    }

    .carousel-container {
        max-width: 320px;
        /* Show 1 card */
    }

    .reel-card {
        flex: 0 0 300px;
    }

    .nav-btn {
        /* Ensure buttons are visible */
    }

    .prev {
        left: 2px;
    }

    .next {
        right: 2px;
    }

    .carousel-wrapper {
        overflow-x: auto;
        /* Allow native scroll on mobile if needed, or rely on buttons if we keep them */
    }

    .carousel-track {
        /* If we want native scroll */
        /* overflow-x: auto; */
        /* scroll-snap-type: x mandatory; */
    }
}

/* Schedule Section */
.schedule-section {
    background-color: var(--card-bg);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--gold);
}

.schedule-section h2 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
    filter: brightness(0) invert(1);
    /* Make white for footer */
}

.social-icon:hover {
    transform: scale(1.2);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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