:root {
    --naija-red: #E31E24;
    --naija-green: #008751;
    --dark-text: #333;
    --white: #ffffff;
}

/* Hero Section */
/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1000; text-decoration: none; font-size: 30px; }

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--naija-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* For readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}


/* Chef Section Styles */
.chef-section {
    padding: 100px 0;
    background: #fff;
}

.chef-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--gray);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.chef-image {
    flex: 1;
}

.chef-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 10px 10px 0 var(--naija-green); /* Naija-themed accent */
}

.chef-bio {
    flex: 1.5;
}

.chef-badge {
    background: var(--naija-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.chef-bio h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.chef-quote {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--naija-green);
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .chef-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .chef-quote {
        border-left: none;
        border-top: 4px solid var(--naija-green);
        padding: 20px 0 0 0;
    }
}

/* =========================
   CONTACT FORM
========================= */

.contact-card{
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.form-header{
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--naija-red);
    margin-bottom: 10px;
}

.form-header p{
    color: #666;
    max-width: 600px;
    margin: auto;
}

.contact-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group{
    display: flex;
    flex-direction: column;
}

.form-group label{
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline: none;
    border-color: var(--naija-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,135,81,0.1);
}

.full-width{
    grid-column: 1 / -1;
}

.btn-submit{
    grid-column: 1 / -1;
    background: linear-gradient(
        135deg,
        var(--naija-red),
        #c4151b
    );
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227,30,36,0.2);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    .contact-card{
        padding: 25px;
    }

    .contact-form{
        grid-template-columns: 1fr;
    }

    .form-header h2{
        font-size: 1.7rem;
    }
}

/* Testimonials Styles */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--naija-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.customer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--naija-red);
    font-weight: 600;
}

.btn-whatsapp {
    display: block;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.02);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.btn-pay {
    background: var(--naija-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}

/* Normal view: Hide receipt */
.print-only { display: none; }

@media print {
    /* Hide everything else on the admin panel */
    body * { visibility: hidden; }
    
    /* Show only the receipt and force it to the top left */
    .print-only, .print-only * { visibility: visible; }
    .print-only {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 80mm; /* Standard thermal paper width */
        padding: 10px;
        font-family: 'Courier New', Courier, monospace; /* Monospaced is best for thermal */
        color: #000;
        text-align: center;
    }
    
    .receipt-header h1 { font-size: 18px; margin: 0; }
    .receipt-body { text-align: left; margin: 20px 0; font-size: 14px; }
    .receipt-footer { font-size: 12px; }
}

:root { --naija-red: #E31E24; --naija-green: #008751; --dark: #222; --white: #fff; --gray: #f8f9fa; }
        * { box-sizing: border-box; }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        /* Chef Section Styles */
.chef-section {
    padding: 100px 0;
    background: #fff;
}

.chef-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--gray);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.chef-image {
    flex: 1;
}

.chef-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 10px 10px 0 var(--naija-green); /* Naija-themed accent */
}

.chef-bio {
    flex: 1.5;
}

.chef-badge {
    background: var(--naija-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.chef-bio h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.chef-quote {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--naija-green);
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .chef-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .chef-quote {
        border-left: none;
        border-top: 4px solid var(--naija-green);
        padding: 20px 0 0 0;
    }
}

/* Testimonials Styles */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--naija-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.customer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--naija-red);
    font-weight: 600;
}

        /* Hero & Countdown */
        .hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover no-repeat; height: 60vh; display: flex; align-items: center; color: var(--white); text-align: center; }
        .hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); width: 100%; }
        
        .countdown-wrap { background: var(--gray); padding: 40px 0; text-align: center; border-bottom: 5px solid var(--naija-green); }
        #timer { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
        .time-box { background: var(--white); padding: 15px; border-radius: 10px; min-width: 80px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        .time-box span { display: block; font-size: 2rem; font-weight: 800; color: var(--naija-red); }
        
        .about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--naija-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

        /* Category Grid */
        .section-title { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 2.5rem; margin: 60px 0 40px; }
        .category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 80px; }
        .category-card { position: relative; height: 350px; border-radius: 20px; overflow: hidden; transition: 0.4s; }
        .category-card:hover { transform: scale(1.02); }
        .category-card img { width: 100%; height: 100%; object-fit: cover; }
        .category-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: white; }
        .btn-view { background: var(--naija-green); color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: 600; align-self: flex-start; margin-top: 10px; }

        /* About & Chef */
        .split-section { padding: 80px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .split-section img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        @media (max-width: 768px) { .split-section { grid-template-columns: 1fr; text-align: center; } }

       

/* Buttons */
.btn-primary {
    background: var(--naija-red);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-secondary {
    background: var(--naija-green);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
}

/* Info Bar */
.info-bar {
    background: #f4f4f4;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
}

.info-bar span {
    margin: 0 15px;
}