/* Variables & Reset */
:root {
    --red: #E63946;
    --red-dark: #C1121F;
    --green: #2A9D8F;
    --green-dark: #264653;
    --cream: #F4F1DE;
    --tan: #E9C46A;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Merriweather', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); line-height: 1.6; background: var(--cream); }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.main-header { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--red); }
.header-container { max-width: 1400px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { height: 50px; width: auto; }
.main-nav { flex: 1; }
.nav-links { display: flex; list-style: none; gap: 25px; justify-content: center; }
.nav-link { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--green-dark); text-transform: uppercase; letter-spacing: 1px; padding: 6px 0; border-bottom: 3px solid transparent; }
.nav-link:hover, .nav-link.active { color: var(--red); border-bottom-color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { color: var(--green-dark); }
.social-icons a:hover { color: var(--red); transform: translateY(-2px); }
.doordash-btn { display: flex; align-items: center; gap: 6px; background: var(--red); color: var(--white); padding: 10px 20px; border-radius: 6px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.doordash-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.mobile-menu-toggle span { width: 24px; height: 3px; background: var(--green-dark); border-radius: 2px; transition: all 0.3s; }

/* Hero */
.hero-section { background: var(--green-dark); padding: 40px 20px; text-align: center; }
.hero-title { font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }
.hero-subtitle { font-size: 1.1rem; color: var(--white); opacity: 0.9; }

/* Home Page Grid */
.home-content { padding: 40px 0; }
.home-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }

.info-column { display: flex; flex-direction: column; gap: 15px; }
.info-card-stacked { background: var(--white); padding: 18px; border-radius: 8px; display: flex; gap: 15px; align-items: flex-start; box-shadow: 0 2px 6px rgba(0,0,0,0.1); border-left: 4px solid var(--red); }
.info-icon { font-size: 2rem; flex-shrink: 0; }
.info-card-stacked h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 6px; text-transform: uppercase; }
.info-card-stacked p { font-size: 0.95rem; color: var(--gray); margin: 0; }
.info-card-stacked a { font-weight: 700; }

.reviews-column { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.reviews-column h2 { font-size: 1.6rem; text-align: center; color: var(--green-dark); margin-bottom: 25px; text-transform: uppercase; }
.reviews-carousel-home { position: relative; padding: 0 45px; }
.reviews-wrapper { position: relative; overflow: hidden; min-height: 130px; }
.review-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 0.5s; text-align: center; padding: 10px; }
.review-slide.active { opacity: 1; position: relative; }
.stars { color: var(--tan); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.6; color: var(--gray); margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 0.85rem; color: var(--green-dark); font-weight: 700; }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--red); color: var(--white); width: 35px; height: 35px; border-radius: 50%; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; border: none; cursor: pointer; }
.carousel-dot.active { background: var(--red); transform: scale(1.2); }

.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn { display: inline-block; padding: 14px 30px; border-radius: 6px; font-family: var(--font-display); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; text-align: center; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: var(--white); }
.btn-accent { background: var(--green); color: var(--white); }
.btn-accent:hover { background: var(--green-dark); }

/* Page Header */
.page-header { background: var(--green-dark); color: var(--white); padding: 30px 20px; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { font-size: 1.1rem; opacity: 0.9; }

/* Catering Options */
.catering-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin: 40px 0; }
.catering-option-card { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); border-left: 4px solid var(--red); }
.catering-option-card h3 { font-size: 1.3rem; color: var(--red); margin-bottom: 15px; text-transform: uppercase; }
.catering-option-card ul { list-style: none; padding: 0; }
.catering-option-card li { padding: 8px 0; color: var(--gray); font-size: 0.95rem; border-bottom: 1px solid #f0f0f0; }
.catering-option-card li:last-child { border-bottom: none; }
.catering-option-card li:before { content: "✓ "; color: var(--green); font-weight: bold; margin-right: 8px; }

/* Content Sections */
.content-section { padding: 50px 0; }
.content-section h2 { font-size: 2rem; color: var(--green-dark); margin-bottom: 20px; }
.content-section p { font-size: 1.05rem; line-height: 1.8; color: var(--gray); margin-bottom: 20px; }
.lead { font-size: 1.15rem; font-weight: 500; }

.cta-box { background: var(--cream); padding: 30px; border-radius: 8px; text-align: center; margin-top: 40px; border-left: 4px solid var(--red); }
.cta-box h3 { color: var(--green-dark); margin-bottom: 15px; }
.highlight-link { font-weight: 700; font-size: 1.2rem; }

.about-text p { margin-bottom: 25px; }
.awards-box { background: var(--cream); padding: 30px; border-radius: 8px; margin-top: 40px; }
.awards-box h2 { color: var(--green-dark); margin-bottom: 20px; }
.award-item h3 { color: var(--red); font-size: 1.3rem; margin-bottom: 10px; }
.award-item { margin-bottom: 25px; }
.read-more { font-weight: 700; }
.video-embed { margin-top: 20px; position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: 8px; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 8px; }

@media (max-width: 640px) {
    .awards-box { padding: 20px; margin-top: 30px; }
    .awards-box h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .award-item h3 { font-size: 1.05rem; line-height: 1.3; }
    .award-item { margin-bottom: 20px; }
    .award-item p { font-size: 0.9rem; line-height: 1.5; }
}

/* Menu Page */
.menu-page-section { padding: 50px 0; }
.menu-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 35px; flex-wrap: wrap; }
.menu-tab { padding: 14px 30px; background: var(--cream); color: var(--green-dark); font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; border-radius: 6px; cursor: pointer; }
.menu-tab:hover, .menu-tab.active { background: var(--red); color: var(--white); }

.menu-content-page { max-width: 900px; margin: 0 auto; }
.menu-panel-page { display: none; }
.menu-panel-page.active { display: block; }

.menu-side-by-side { display: grid; grid-template-columns: 1fr; gap: 30px; }
.menu-image-wrap { text-align: center; }
.menu-img { max-width: 100%; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); margin-bottom: 15px; cursor: pointer; transition: transform 0.3s; }
.menu-img:hover { transform: scale(1.01); }
.download-link { display: inline-block; padding: 10px 24px; background: var(--green); color: var(--white); border-radius: 6px; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.download-link:hover { background: var(--green-dark); }

.specials-container { max-width: 700px; margin: 0 auto; }
.specials-container h2 { text-align: center; color: var(--green-dark); margin-bottom: 30px; }
.specials-content { min-height: 150px; }
.loading { text-align: center; padding: 30px; color: var(--gray); font-style: italic; }

.special-item { background: var(--white); padding: 20px; margin-bottom: 15px; border-radius: 6px; border-left: 4px solid var(--red); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.special-item h4 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.special-item p { color: var(--red); margin-bottom: 0; font-weight: 600; line-height: 1.5; }
.special-price { font-size: 0.95rem; font-weight: 400; color: var(--green-dark); font-family: var(--font-body); }

.no-specials { text-align: center; padding: 30px; }
.no-specials h4 { color: var(--green-dark); margin-bottom: 12px; }

/* Contact Page */
.contact-section { padding: 50px 0; }

/* Desktop Layout: Address | Contact | Map (all in one row) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    grid-template-areas:
        "hours hours hours"
        "address contact map";
    gap: 25px 40px;
}

.contact-info-hours { grid-area: hours; }
.contact-info-address { grid-area: address; }
.contact-info-contact { grid-area: contact; }
.contact-map { grid-area: map; }

.contact-info-hours h2,
.contact-info-address h2,
.contact-info-contact h2 { 
    font-size: 1.5rem; 
    color: var(--red); 
    margin: 0 0 12px 0; 
    text-transform: uppercase; 
}

/* Match text styling exactly to hours days */
.contact-text {
    margin: 15px 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-link {
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: var(--font-body);
}

.contact-link:hover { color: var(--red); }

.email-btn {
    display: inline-block;
    background: var(--red);
    color: var(--white) !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 4px;
    text-decoration: none;
    font-family: var(--font-body);
}

.email-btn:hover {
    background: var(--red-dark);
}

.contact-map { 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    height: 100%;
    min-height: 400px;
}

.hours-table { margin: 15px 0; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd; }
.day { 
    font-weight: 700; 
    color: var(--green-dark); 
    flex: 1; 
    font-size: 1.05rem;
    font-family: var(--font-body);
}
.time { 
    color: var(--gray); 
    text-align: right; 
    white-space: nowrap; 
    font-size: 1.05rem;
    font-family: var(--font-body);
}
.contact-links .email-btn { margin-top: 8px; }

.contact-map { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.15); height: 450px; }

.faq-section { margin-top: 50px; }
.faq-section h2 { text-align: center; color: var(--green-dark); margin-bottom: 30px; font-size: 2rem; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.faq-item { background: var(--white); padding: 22px; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.faq-item h3 { font-size: 1.1rem; color: var(--red); margin-bottom: 10px; }
.faq-item p { font-size: 0.95rem; }

/* Footer */
.main-footer { background: var(--green-dark); color: var(--cream); padding: 40px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 25px; }
.footer-section h4 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.footer-section p, .footer-section a { color: var(--cream); font-size: 0.95rem; }
.footer-section a:hover { color: var(--tan); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); color: var(--cream); font-size: 0.9rem; }

/* Mobile */
@media (max-width: 968px) {
    .header-container { flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
    .main-nav.active { max-height: 400px; }
    .nav-links { flex-direction: column; gap: 0; padding: 15px 0; }
    .nav-link { display: block; padding: 12px 15px; border-bottom: 1px solid #eee; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-title { font-size: 1.7rem; }
    .home-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Mobile: Hours full width, Address + Contact side by side, Map below */
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "hours hours"
            "address contact"
            "map map";
        gap: 25px;
    }
    .contact-map { height: 300px; }
}

@media (max-width: 640px) {
    .logo { height: 30px; }
    .header-container { 
        padding: 8px 10px; 
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Logo on left */
    .logo-section { 
        flex-shrink: 0;
    }
    
    /* Right side container: icons + button + toggle */
    .header-actions { 
        display: flex;
        flex-direction: row;
        gap: 8px; 
        align-items: center;
        flex-shrink: 0;
    }
    
    /* Menu toggle visible and positioned */
    .mobile-menu-toggle { 
        display: flex;
        flex-shrink: 0;
    }
    
    /* Social icons more compact */
    .social-icons { 
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .social-icons a svg { width: 15px; height: 15px; }
    
    /* Very compact DoorDash button - just logo + text */
    .header-actions .doordash-btn { 
        padding: 4px 8px;
        font-size: 0.65rem;
        white-space: nowrap;
        gap: 3px;
    }
    .doordash-btn svg { width: 11px; height: 11px; }
    
    /* Navigation - drops below as overlay */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-links { 
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        text-align: left;
        padding: 14px 20px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-section { padding: 25px 15px; }
    .hero-title { font-size: 1.3rem; }
    .hero-subtitle { font-size: 0.9rem; }
    
    .home-content { padding: 30px 0; }
    .info-column { gap: 12px; }
    .info-card-stacked { padding: 15px; gap: 12px; }
    .info-icon { font-size: 1.7rem; }
    .info-card-stacked h3 { font-size: 1rem; }
    .info-card-stacked p { font-size: 0.9rem; }
    
    .reviews-column { padding: 20px 15px; }
    .reviews-column h2 { font-size: 1.4rem; margin-bottom: 18px; }
    .reviews-carousel-home { padding: 0 35px; }
    .reviews-wrapper { min-height: 110px; }
    .review-slide { padding: 8px 5px; }
    .stars { font-size: 1rem; margin-bottom: 10px; }
    .review-text { font-size: 0.88rem; line-height: 1.5; margin-bottom: 8px; }
    .review-author { font-size: 0.8rem; }
    .carousel-btn { width: 30px; height: 30px; font-size: 1.4rem; }
    .carousel-dots { margin-top: 12px; gap: 6px; }
    
    .cta-buttons { flex-direction: row; gap: 8px; margin-bottom: 30px; }
    .btn { 
        flex: 1; 
        padding: 10px 8px; 
        font-size: 0.75rem; 
        min-width: 0; 
        white-space: nowrap;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page-header { padding: 30px 15px; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 1rem; }
    
    .content-section { padding: 35px 0; }
    .menu-page-section { padding: 20px 0; }
    
    /* Hide menu page subheader on mobile only */
    .menu-page .page-header p { display: none; }
    .menu-page .page-header h1 { margin-bottom: 0; }
    .menu-page .page-header { 
        padding: 18px 15px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Make menu tabs single row on mobile */
    .menu-tabs { 
        flex-direction: row; 
        margin-bottom: 15px; 
        gap: 8px;
    }
    .menu-tab { 
        flex: 1;
        padding: 10px 8px; 
        font-size: 0.85rem;
        text-align: center;
    }
    
    .faq-grid { gap: 15px; }
    .faq-item { padding: 18px; }
    
    .contact-map { height: 280px; }
    
    /* Compact mobile footer */
    .main-footer { padding: 25px 0 15px; }
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
        font-size: 0.85rem;
    }
    .footer-section h4 { 
        font-size: 0.95rem; 
        margin-bottom: 8px;
    }
    .footer-section p, .footer-section a { 
        font-size: 0.85rem; 
        line-height: 1.6;
    }
    .footer-section p { 
        white-space: nowrap;
    }
    .email-btn {
        display: inline-block;
        background: var(--red);
        color: var(--white) !important;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        margin-top: 4px;
    }
    .footer-bottom { 
        padding-top: 15px; 
        font-size: 0.8rem;
    }
}
