/* Base styles and variables */
:root {
    --primary-gold: #d4af37;
    --primary-gold-hover: #c5a059;
    --dark-bg: #0a0a0a;
    --surface-bg: #1a1a1a;
    --surface-light: #2a2a2a;
    --text-main: #f8f8f8;
    --text-muted: #b3b3b3;
    --green-accent: #2e472d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px; 
    padding-top: 0; /* REMOVE the old 40px padding */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 4rem 0; }
.text-center { text-align: center; }
.dark-bg { background-color: var(--surface-bg); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-3 { margin-bottom: 2rem; }

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-gold);
    color: #000;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; color: var(--primary-gold); }
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; color: var(--text-main); }
p { margin-bottom: 1.5rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0.8rem 1.5rem; font-weight: 600; border-radius: 4px;
    cursor: pointer; transition: var(--transition); font-size: 0.95rem; border: none;
}
.btn-primary { background-color: var(--primary-gold); color: var(--dark-bg); border: 2px solid var(--primary-gold); }
.btn-primary:hover { background-color: var(--primary-gold-hover); border-color: var(--primary-gold-hover); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--primary-gold); border: 2px solid var(--primary-gold); }
.btn-secondary:hover { background-color: rgba(212, 175, 55, 0.1); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--text-muted); }
.btn-outline:hover { border-color: var(--primary-gold); color: var(--primary-gold); }
.block-btn { display: flex; width: 100%; }

/* Navigation */
.navbar {
    position: sticky; /* Automatically sticks to the top without cutting off the hero image */
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    white-space: nowrap; /* Prevents "O.G. COOK SHOP" from breaking into two lines */
    flex-shrink: 0;
}
.nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--surface-bg); padding: 1rem 0; }
.nav-links.active { display: flex; }
.nav-links li { text-align: center; padding: 1rem 0; }
.nav-links a { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-gold); }
.mobile-toggle { background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    height: 90vh; 
    min-height: 600px; 
    display: flex; 
    align-items: center; 
    position: relative;
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80') center/cover no-repeat;
    margin-top: 0; /* REMOVE the old 60px margin */
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 10%, rgba(10, 10, 10, 0.6)); }
.hero-content { position: relative; max-width: 650px; z-index: 2; }
.hero .sub-headline { font-size: 1.1rem; color: #fff; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
.desktop-only { display: none; }
.trust-indicators-hero span { display: inline-block; margin-right: 15px; font-size: 0.85rem; color: var(--text-muted); }
.trust-indicators-hero i { color: var(--primary-gold); }

/* Grid Layouts */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.trust-image-placeholder { height: 300px; border-radius: 8px; border: 1px solid var(--surface-light); background-position: center; background-size: cover; }
.trust-badges li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-weight: 600; }
.gold-icon { color: var(--primary-gold); font-size: 1.2rem; width: 24px; text-align: center; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.step-card { background-color: var(--surface-light); padding: 2rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); text-align: left; }
.step-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); }
.step-icon { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 1rem; }
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { margin-bottom: 0; font-size: 0.95rem; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: var(--surface-light); padding: 2rem; border-radius: 8px; border-left: 4px solid var(--primary-gold); text-align: left; }
.stars { color: var(--primary-gold); margin-bottom: 1rem; }
.testimonial-card h4 { font-size: 1rem; color: #fff; margin-bottom: 0; margin-top: 1rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface-light); margin-bottom: 1rem; border-radius: 6px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.2rem; background: transparent; border: none; color: var(--text-main); font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover, .faq-question.active { color: var(--primary-gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; }
.faq-answer p { margin-bottom: 1.2rem; }
.faq-question.active + .faq-answer { max-height: 200px; }
.faq-question i { transition: transform 0.3s ease; }
.faq-question.active i { transform: rotate(180deg); }

/* Menu Specifics */
.menu-hero { 
    padding: 60px 0 3rem 0; /* Adjusted padding since navbar is no longer fixed */
    background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--surface-bg) 100%); 
}
.btn-pill { background: var(--surface-light); color: var(--text-main); padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.btn-pill:hover { background: var(--primary-gold); color: var(--dark-bg); }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.menu-item { background-color: var(--surface-light); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition); display: flex; flex-direction: column; overflow: hidden; }
.menu-item:hover { border-color: var(--primary-gold); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.premium-item { border: 1px solid rgba(212, 175, 55, 0.4); }
.menu-img { width: 100%; height: 220px; object-fit: cover; }
.menu-item-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.5rem; }
.menu-item-header h3 { margin-bottom: 0; font-size: 1.2rem; line-height: 1.3; }
.price { font-family: var(--font-heading); font-weight: 700; color: var(--primary-gold); font-size: 1.2rem; white-space: nowrap; }
.badge { display: inline-block; background-color: var(--green-accent); color: #e0f2e0; padding: 0.3rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; align-self: flex-start; }

/* Footer */
.footer { background-color: #050505; padding: 4rem 0 2rem 0; border-top: 1px solid rgba(212, 175, 55, 0.2); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.social-icons a { margin-right: 1rem; font-size: 1.5rem; transition: var(--transition); }
.social-icons a:hover { color: var(--primary-gold); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-size: 0.8rem; }

/* Mobile Sticky CTA */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--surface-bg); padding: 10px 15px; box-shadow: 0 -5px 20px rgba(0,0,0,0.8); z-index: 999; border-top: 1px solid var(--primary-gold); }

/* Media Queries for Desktop */
@media (min-width: 768px) {
    body { padding-bottom: 0; }
    h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; }
    .mobile-toggle, .mobile-sticky-cta { display: none; }
    .nav-links { display: flex; flex-direction: row; position: static; background: transparent; padding: 0; gap: 2rem; }
    .hero-buttons { flex-direction: row; }
    .desktop-only { display: inline-flex; }
    .trust-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
    .trust-image-placeholder { height: 500px; }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.announcement-bar {
    position: relative; /* Change from fixed to relative so it flows naturally */
    width: 100%;
    background-color: var(--primary-gold);
    padding: 10px 15px;
    text-align: center;
    z-index: 1001;
}

.announcement-bar p {
    color: #000; /* Makes text readable against the gold background */
    margin: 0;   /* Removes the default paragraph margin */
    font-weight: 600;
}