/* ============================================ */
/* CSS VARIABLES - Define color palette */
/* ============================================ */
:root {
    --primary-yellow: #FFD700;
    /* Main brand yellow */
    --dark-yellow: #E6C200;
    /* Darker yellow for hover states */
    --primary-red: #C41E3A;
    /* Main brand red */
    --dark-red: #A01830;
    /* Darker red for hover states */
    --white: #FFFFFF;
    /* Pure white */
    --black: #000000;
    /* Pure black */
    --dark-gray: #333333;
    /* Dark text color */
    --light-gray: #F5F5F5;
    /* Light background */
    --overlay-black: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
}

/* ============================================ */
/* RESET & BASE STYLES - Normalize browser defaults */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Include padding in element width */
}

html {
    scroll-behavior: smooth;
    /* Smooth scrolling for anchor links */
}

body {
    font-family: 'Poppins', sans-serif;
    /* Primary font family */
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* ============================================ */
/* UTILITY CLASSES - Reusable helper styles */
/* ============================================ */
.container {
    max-width: 1200px;
    /* Maximum content width */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Side padding */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    /* Rounded pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    /* Smooth hover animation */
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background-color: var(--dark-yellow);
    transform: translateY(-2px);
    /* Lift effect on hover */
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

/* ============================================ */
/* TOP BAR - Announcement banner */
/* ============================================ */
.top-bar {
    background-color: var(--primary-yellow);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.top-bar i {
    color: var(--primary-red);
}

/* ============================================ */
/* NAVIGATION BAR - Main site navigation */
/* ============================================ */
.navbar {
    background-color: var(--white);
    padding: 35px 0;
    position: sticky;
    /* Stick to top on scroll */
    top: 0;
    z-index: 1000;
    /* Stay above other content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    /* Logo left, links right */
    align-items: center;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--black);
    text-align: center;
    line-height: 1.2;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Social icons in nav */
.nav-social {
    display: flex;
    gap: 15px;
}

.nav-social a {
    color: var(--dark-gray);
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--primary-red);
}

/* ============================================ */
/* HERO SECTION - Large banner image */
/* ============================================ */
.hero {
    position: relative;
    height: 680px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('https://images.unsplash.com/photo-1534080564583-6be75777b70a?w=1200') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 560px;
    opacity: 0.92;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
}

.hero-btn {
    margin-top: 10px;
    padding: 15px 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================ */
/* BOOK EVENT SECTION - Three step process */
/* ============================================ */
.book-event {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.book-event-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three equal columns */
    gap: 40px;
    text-align: center;
}

.step {
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.step p {
    font-size: 14px;
    color: #666;
}

/* ============================================ */
/* SPECIALTY SECTION - Red background menu */
/* ============================================ */
.specialty {
    background-color: var(--primary-red);
    padding: 60px 0;
    color: var(--white);
}

.specialty-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 40px;
}

.specialty-column h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specialty-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.specialty-list {
    list-style: none;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
}

.specialty-list li {
    padding-left: 15px;
    position: relative;
}

.specialty-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

.specialty-btn {
    display: block;
    text-align: center;
}

/* ============================================ */
/* MENU SECTION - Food items grid */
/* ============================================ */
.menu-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.menu-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three columns */
    gap: 30px;
    margin-bottom: 30px;
}

.menu-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    /* Lift on hover */
}

.menu-item-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-item-content {
    padding: 20px;
    text-align: center;
}

.menu-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.menu-item p {
    font-size: 12px;
    color: #888;
}

.menu-btn-container {
    text-align: center;
}

/* ============================================ */
/* FEATURES SECTION - Circular images */
/* ============================================ */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* Perfect circle */
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.features-subtitle {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* ============================================ */
/* CHEF SECTION - About the chef */
/* ============================================ */
.chef-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.chef-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 50px;
    align-items: center;
}

.chef-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chef-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.chef-content h2 span {
    color: var(--primary-red);
}

.chef-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* ============================================ */
/* LIVE COOKING BANNER - Full width CTA */
/* ============================================ */
.live-cooking {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1200') center/cover fixed;
    text-align: center;
    color: var(--white);
}

.live-cooking h2 {
    font-size: 2.2rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ============================================ */
/* REVIEWS SECTION - Yellow background */
/* ============================================ */
.reviews {
    background-color: var(--primary-yellow);
    padding: 60px 0;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.reviews-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.yelp-logo {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-gray);
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.reviewer-info .stars {
    color: var(--primary-red);
    font-size: 12px;
}

.review-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ============================================ */
/* FOOTER - Site footer */
/* ============================================ */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Three columns */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--black);
    text-align: center;
    line-height: 1.2;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-yellow);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-yellow);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* ============================================ */
/* RESPONSIVE DESIGN - Mobile adaptations */
/* ============================================ */
@media (max-width: 768px) {

    /* Stack navigation vertically */
    .nav-links {
        display: none;
        /* Hide on mobile - would need hamburger menu */
    }

    /* Convert grids to single column */
    .steps-container,
    .specialty-grid,
    .menu-grid,
    .features-grid,
    .reviews-grid,
    .chef-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce font sizes */
    .section-title {
        font-size: 1.8rem;
    }

    .live-cooking h2 {
        font-size: 1.5rem;
    }

    .hero {
        height: 350px;
    }
}