@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- BISTRO DESIGN SYSTEM TOKENS --- */
:root {
    --bg-main: #fdfbf7;        /* Warm light beige */
    --bg-surface: #ffffff;
    --bg-dark: #1e293b;        /* Charcoal dark slate */
    --border: #e2e8f0;
    
    --color-primary: #d97706;     /* Terracotta Orange / Amber 600 */
    --color-primary-dark: #b45309;
    --color-accent: #f59e0b;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-soft: 0 10px 30px rgba(217, 119, 6, 0.03);
    --shadow-hover: 0 20px 40px rgba(217, 119, 6, 0.08);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* --- UTILITY CLASSES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 95px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
.header {
    width: 100%;
    z-index: 100;
    background: var(--bg-surface);
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease-out;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- TOP HORIZONTAL ALERTS BAR --- */
.promo-bar {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.promo-bar:hover {
    background-color: var(--color-primary-dark);
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.hero .container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-hover);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- OUR MENU HIGHLIGHTS (4 COLUMNS) --- */
.menu-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-highlight-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.menu-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.menu-card-img {
    height: 200px;
    background-color: var(--border);
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-body {
    padding: 24px;
    text-align: center;
}

.menu-card-body h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* --- WEEKEND BRUNCH SPECIAL BANNER --- */
.brunch-banner {
    background-color: #854d0e;     /* Cozy brown/orange */
    color: white;
    text-align: center;
    padding: 80px 0;
}

.brunch-banner h2 {
    font-size: 2.6rem;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
}

.brunch-banner p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* --- CHEF'S SPECIAL --- */
.chef-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.chef-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-hover);
}

.chef-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-content span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.chef-content h3 {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.chef-dish-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.chef-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.chef-price {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.chef-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.dish-tag {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
}

/* --- WHAT OUR GUESTS SAY (CAROUSEL) --- */
.testimonials-section {
    background-color: var(--bg-surface);
}

.testimonial-carousel-box {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.star-rating {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.carousel-arrow.prev {
    left: -22px;
}

.carousel-arrow.next {
    right: -22px;
}

/* --- UPCOMING EVENTS --- */
.events-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.events-list {
    list-style: none;
    margin-top: 24px;
}

.event-item {
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- FOOTER --- */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-btn:hover {
    background-color: var(--color-primary);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- RESERVATION MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-box h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg-surface);
    color: var(--text-primary);
}

.form-input:focus {
    border-color: var(--color-primary);
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-img-box {
        max-width: 500px;
        margin: 0 auto;
        height: auto;
    }
    .menu-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .chef-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-btns {
        display: none;
    }
    .menu-highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
