/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* New Vibrant Palette - Orange and Yellow Dominant */
    --primary-orange: #FF6D00;
    --primary-yellow: #FFD600;
    --primary-red: #D50000; /* Accent for prices/important buttons */
    
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-warm: #FFF8E1; /* Very light yellow for section variation */
    
    --text-dark: #212121;
    --text-gray: #546E7A;
    --text-light: #FFFFFF;
    
    --shadow-card: 0 10px 20px rgba(255, 109, 0, 0.15);
    --shadow-hover: 0 15px 30px rgba(255, 109, 0, 0.25);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    color: var(--text-dark);
    padding: 14px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.4);
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-orange);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
    transition: var(--transition);
    overflow: visible;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    border: none;
    padding: 5px;
    background: transparent;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
    margin: -30px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-orange);
    z-index: 9999;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}


/* Hero Section (GLOBAL) */
.hero, 
section[style*="background"] {
    width: 100vw;
    height: 100vh; /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 0;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* Overlay for readability */
.hero::before,
section[style*="background"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)); /* Slightly lighter overlay */
    z-index: 1;
}

.hero-content,
section[style*="background"] .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1,
section[style*="background"] h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-content p,
section[style*="background"] p {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 30px;
    color: var(--primary-orange);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    border: 5px solid var(--bg-light);
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

.about-text h3 {
    color: var(--primary-orange);
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Products/Menu Section */
.menu-category {
    margin-bottom: 80px;
}

.menu-grid {
    display: grid;
    /* Fixed: Adjusted minmax to 280px to prevent overflow on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 10px; /* Add padding to container to prevent shadow clipping */
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* Franchise Section */
.franchise-section {
    background-color: var(--bg-warm); /* Light warm background instead of dark image */
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 5px solid var(--primary-orange);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-right: 25px;
    min-width: 40px;
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 5px solid var(--bg-white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #263238; /* Dark Blue-Gray for contrast */
    padding: 80px 0 30px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-orange);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.fixed-btn:hover {
    transform: scale(1.15);
}

.btn-whatsapp { background-color: #25D366; }
.btn-phone { background-color: var(--primary-orange); }
.btn-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--text-light);
}

/* Featured Hero Section */
.featured-hero {
    width: 100%;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../assets/home-feature-feast.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.featured-hero-content {
    position: relative;
    z-index: 2;
}

.featured-hero h2 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Intro heading */
.intro-heading {
    margin-bottom: 50px;
}

/* SEO Columns */
.seo-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.seo-columns {
    column-count: 2;
    column-gap: 40px;
    font-size: 0.9rem;
}

.seo-columns p {
    margin-bottom: 15px;
}

/* ============================================ */
/* RESPONSIVE - TABLET (max 992px)              */
/* ============================================ */
@media (max-width: 992px) {
    .logo img {
        height: 120px;
        margin: -25px 0;
    }

    .hero-content h1,
    section[style*="background"] h1 {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .featured-hero h2 {
        font-size: 2.8rem;
    }
}

/* ============================================ */
/* RESPONSIVE - MOBILE (max 768px)              */
/* ============================================ */
@media (max-width: 768px) {

    /* --- HEADER & NAVIGATION --- */
    .hamburger {
        display: flex;
    }

    header {
        padding: 3px 0;
    }

    .navbar {
        min-height: 55px;
    }

    .logo img {
        height: 100px;
        margin: -20px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 0 30px rgba(0,0,0,0.15);
        z-index: 9998;
        gap: 0;
        padding: 60px 20px 40px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 85%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 16px 10px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        color: var(--primary-orange);
        font-weight: 700;
    }

    .nav-links a:hover {
        color: var(--primary-orange);
        background-color: var(--bg-warm);
        border-radius: 10px;
    }

    /* --- HERO SECTIONS --- */
    .hero, 
    section[style*="background"] {
        height: 55vh;
        min-height: 320px;
        background-attachment: scroll !important;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1,
    section[style*="background"] h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-content p,
    section[style*="background"] p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-top: 10px;
    }

    /* --- FEATURED HERO --- */
    .featured-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .featured-hero h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* --- SECTIONS & SPACING --- */
    .section-padding {
        padding: 40px 0;
    }

    .intro-heading {
        margin-bottom: 25px;
    }

    .intro-heading h2 {
        font-size: 1.5rem;
    }

    .intro-heading p {
        font-size: 0.95rem;
    }

    /* --- ABOUT SECTION --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-img img {
        border-radius: 12px;
        max-height: 280px;
        width: 100%;
        object-fit: cover;
    }

    .about-text h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.92rem;
        line-height: 1.7;
        text-align: center;
    }

    .about-text .btn,
    .about-text .btn-outline {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }

    /* --- MENU / PRODUCT GRID --- */
    .menu-category {
        margin-bottom: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 20px;
        padding: 5px;
    }
    
    .product-card {
        border-radius: 14px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-img {
        height: 140px;
    }
    
    .product-info {
        padding: 10px 8px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .product-info p {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    /* --- FRANCHISE / FEATURES --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .feature-card {
        padding: 20px;
        border-radius: 14px;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* --- CONTACT SECTION --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-right: 15px;
        margin-bottom: 0;
        min-width: 30px;
    }

    .contact-info-item h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .contact-info-item p {
        font-size: 0.85rem;
    }
    
    .map-container {
        height: 250px;
        border-radius: 14px;
        border-width: 3px;
    }

    /* --- SEO SECTION --- */
    .seo-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .seo-columns {
        column-count: 1;
        font-size: 0.85rem;
    }

    /* --- FOOTER --- */
    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .footer-col p,
    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    /* --- FIXED BUTTONS --- */
    .fixed-buttons {
        bottom: 12px;
        right: 12px;
        gap: 10px;
    }
    
    .fixed-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    /* --- BUTTONS --- */
    .btn {
        padding: 11px 24px;
        font-size: 0.95rem;
    }

    /* --- GENERAL TEXT --- */
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* ============================================ */
/* RESPONSIVE - SMALL MOBILE (max 480px)        */
/* ============================================ */
@media (max-width: 480px) {
    .logo img {
        height: 80px;
        margin: -15px 0;
    }

    .navbar {
        min-height: 48px;
    }

    .container {
        padding: 0 12px;
    }

    .hero, 
    section[style*="background"] {
        height: 50vh;
        min-height: 280px;
    }

    .hero-content h1,
    section[style*="background"] h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p,
    section[style*="background"] p {
        font-size: 0.82rem;
    }

    .featured-hero {
        min-height: 40vh;
    }

    .featured-hero h2 {
        font-size: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-img {
        height: 120px;
    }

    .product-info {
        padding: 8px 6px;
    }

    .product-info h3 {
        font-size: 0.8rem;
    }

    .product-info p {
        font-size: 0.7rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 14px 10px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 7px 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    footer {
        padding: 30px 0 15px;
    }

    .footer-grid {
        gap: 20px;
        margin-bottom: 15px;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .about-img img {
        max-height: 220px;
    }

    .intro-heading {
        margin-bottom: 15px;
    }

    .map-container {
        height: 200px;
    }

    .contact-info-item {
        padding: 12px;
        margin-bottom: 8px;
    }

    .fixed-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .fixed-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
}
