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

/* --- Brand Variables (Mild Dark + Light Bold Colors) --- */
:root {
    /* Mild Dark Backgrounds */
    --bg-dark: #2c3036;        /* Soft Slate/Charcoal (Main) */
    --bg-darker: #212429;      /* Slightly darker for Header/Footer */
    --bg-card: #3a3f47;        /* Elevated Card Background */
    
    /* Light Bold Accents */
    --accent-primary: #ff6b6b; /* Vibrant Coral Red */
    --accent-hover: #ff5252;   /* Slightly deeper red for hover */
    --accent-secondary: #feca57; /* Light Bold Sunflower Yellow */
    
    /* Text Colors */
    --text-light: #f8f9fa;     /* Crisp Off-White */
    --text-muted: #adb5bd;     /* Soft Gray */
    
    --border-color: #495057;   /* Subtle divider lines */
    --transition: 0.3s ease-in-out;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

/* --- Top Announcement Bar --- */
.top-bar {
    background-color: var(--accent-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-inner {
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    font-weight: 600;
}
.top-bar a:hover {
    color: var(--bg-darker);
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(33, 36, 41, 0.95); /* Mild dark with slight transparency */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container h1 {
    font-size: 2.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-container h1 span {
    color: var(--accent-primary);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-outline-primary {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #fff;
    border: 2px solid var(--accent-primary);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}
.btn-outline-primary:hover {
    background-color: var(--accent-primary);
    color: #fff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

/* --- Mobile Hamburger Menu Logic --- */
.nav-toggle { 
    display: none; /* Hide the actual checkbox */
}
.nav-toggle-label { 
    display: none; 
    cursor: pointer; 
    padding: 10px 0;
}
/* Creating the 3 lines of the hamburger menu */
.nav-toggle-label span, 
.nav-toggle-label span::before, 
.nav-toggle-label span::after {
    display: block; 
    background: var(--text-light); 
    height: 3px; 
    width: 28px; 
    position: relative; 
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle-label span::before, 
.nav-toggle-label span::after { 
    content: ''; 
    position: absolute; 
}
.nav-toggle-label span::before { bottom: 9px; }
.nav-toggle-label span::after { top: 9px; }

/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Adjusted overlay to let the background image show through mildly */
    background: linear-gradient(90deg, rgba(33, 36, 41, 0.95) 0%, rgba(33, 36, 41, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.subtitle {
    display: block;
    color: var(--accent-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* --- About Snippet Section --- */
.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 2.8rem; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.8; }

.link-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-secondary);
    border-bottom: 2px solid var(--accent-secondary);
    padding-bottom: 5px;
}
.link-bold:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.about-images {
    flex: 1;
    position: relative;
    height: 500px;
}

.img-large {
    width: 80%; height: 400px; object-fit: cover; border-radius: 8px;
    position: absolute; right: 0; top: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.img-small {
    width: 50%; height: 250px; object-fit: cover; border-radius: 8px;
    position: absolute; left: 0; bottom: 0;
    border: 8px solid var(--bg-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* --- Specialties Grid Section --- */
.bg-darker {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header { text-align: center; margin-bottom: 60px; }
.subtitle-accent {
    display: block; color: var(--accent-primary); font-family: 'Poppins', sans-serif;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px; font-size: 0.85rem;
}

.section-header h2 { font-size: 3rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.food-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.food-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.food-img { width: 100%; height: 250px; overflow: hidden; }
.food-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.food-card:hover .food-img img { transform: scale(1.08); }

.food-info { padding: 25px; text-align: center; }
.food-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 10px; color: var(--accent-secondary); }
.food-info p { color: var(--text-muted); font-size: 0.95rem; }

/* --- Reservation CTA Banner --- */
.cta-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&q=80&w=1600') center/cover fixed;
    text-align: center;
    color: var(--text-light);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(33, 36, 41, 0.85); /* Mild dark overlay */
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 100px 5%;
    max-width: 800px;
}

.cta-content h2 { font-size: 3.5rem; margin-bottom: 20px; color: var(--accent-secondary); }
.cta-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }

.cta-details {
    background: rgba(58, 63, 71, 0.8);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: inline-block;
    text-align: left;
}
.cta-details p { margin-bottom: 10px; color: var(--text-light); font-size: 1rem;}
.cta-details p:last-child { margin-bottom: 0; }

/* --- Footer --- */
footer {
    background-color: var(--bg-darker);
    padding: 80px 0 20px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.brand-col h3 { font-size: 2rem; margin-bottom: 15px; }
.brand-col h3 span { color: var(--accent-primary); font-style: italic; }

.brand-col p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; max-width: 350px; }

.social-icons a {
    display: inline-block; width: 40px; height: 40px;
    background-color: var(--bg-card); color: var(--text-light);
    text-align: center; line-height: 40px; border-radius: 50%;
    margin-right: 10px; font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.social-icons a:hover { background-color: var(--accent-primary); color: #fff; transform: translateY(-3px);}

.footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; color: var(--text-light); font-family: 'Poppins', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a, .footer-col p { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-secondary); padding-left: 5px; }

.footer-bottom {
    text-align: center; padding-top: 20px; border-top: 1px solid var(--border-color);
    color: var(--text-muted); font-size: 0.85rem;
}

/* =========================================
   MOBILE RESPONSIVE RULES & HAMBURGER MENU
   ========================================= */
@media (max-width: 992px) {
    /* Show the hamburger icon */
    .nav-toggle-label { 
        display: block; 
    }
    
    /* Style the navigation to act as a dropdown */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-darker);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        border-bottom: 2px solid var(--accent-primary);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 20px 0;
        gap: 20px;
    }
    
    /* When the hidden checkbox is checked, expand the nav menu */
    .nav-toggle:checked ~ nav {
        max-height: 400px;
        padding-bottom: 25px;
    }
    
    /* Hamburger animation into an 'X' */
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; background: var(--accent-primary); }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; background: var(--accent-primary); }

    .header-actions { display: none; }

    /* Layout Adjustments */
    .top-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
    
    .hero-content h2 { font-size: 3.5rem; }
    
    .about-grid { flex-direction: column; text-align: center; gap: 50px; }
    .about-images { height: 400px; width: 100%; }
    
    .footer-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 60px 5%; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-content h2 { font-size: 2.8rem; }
    
    .img-large { width: 90%; height: 300px; }
    .img-small { width: 60%; height: 200px; }
    
    .cta-content h2 { font-size: 2.5rem; }
    .cta-details { display: block; text-align: center; }
    
    .footer-layout { grid-template-columns: 1fr; text-align: center; }
    .brand-col p { margin: 0 auto 25px; }
}
