/* DESIGN SYSTEM & TOKENS */
:root {
    --q-red: #D32F2F;
    --q-red-hover: #B71C1C;
    --white: #FFFFFF;
    --charcoal: #1E1E1E;
    --dark-grey: #2C2C2C;
    --light-grey: #F5F5F7;
    --gold: #D4AF37;
    --gold-light: #F1D570;
    --text-main: #333333;
    --text-muted: #666666;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: 0.3s ease-in-out;
    --header-height: 80px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--charcoal);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}
.btn:hover::before { width: 100%; }

.btn-primary {
    background-color: var(--q-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}
.btn-primary:hover {
    background-color: var(--q-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--charcoal);
}

/* HEADER & NAVIGATION */
.sticky-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.sticky-header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--q-red);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 2px;
    background-color: var(--q-red);
    transition: var(--transition);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px; height: 3px;
    background-color: var(--charcoal);
    transition: var(--transition);
}

/* PARALLAX UTILITIES */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

/* 1. HERO SECTION */
.section-hero {
    height: 100vh;
    background-image: url('images/hero_red.png');
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 2rem;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(30,30,30,0.7) 0%, rgba(211,47,47,0.5) 100%);
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content .sub-headline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* 2. ABOUT US */
.section-about {
    padding: 6rem 0;
    background-color: var(--white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

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

.text-content strong {
    color: var(--q-red);
}

.icon-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-grey);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(211,47,47,0.15);
    color: var(--q-red);
}
.icon-item .icon {
    font-size: 1.2rem;
}

.image-content img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
}

/* 3. OUR MENU */
.section-menu {
    padding: 6rem 0;
    background-color: var(--light-grey);
}

.section-menu h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.section-menu .subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-category {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-category:hover .menu-image img {
    transform: scale(1.08);
}

.menu-category h3 {
    padding: 1.5rem;
    background-color: var(--charcoal);
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
}

.menu-list {
    list-style: none;
    padding: 1.5rem;
    text-align: left;
}

.menu-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-banner {
    display: inline-block;
    background: linear-gradient(135deg, var(--charcoal) 0%, #111 100%);
    color: var(--gold-light);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* 4. FRANCHISE OPPORTUNITY */
.section-franchise {
    padding: 8rem 0;
    background-image: url('images/franchise.png');
    color: var(--white);
    text-align: center;
}

.franchise-overlay {
    background: rgba(30, 30, 30, 0.7);
}

.section-franchise .content {
    position: relative;
    z-index: 2;
}

.section-franchise h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--q-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.feature-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.investment-tiers {
    background: linear-gradient(135deg, var(--q-red) 0%, #9A1F1F 100%);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.investment-tiers h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.investment-tiers ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.investment-tiers li {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.budget-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* 4. OUR OUTLETS */
.section-outlets {
    padding: 6rem 0;
    background-color: var(--light-grey);
}

.section-outlets h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.section-outlets .subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.outlet-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.outlet-card .pin {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.outlet-card h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
}

.outlet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background-color: transparent;
    transition: var(--transition);
}
.outlet-card:hover::before {
    background-color: var(--q-red);
}

.outlet-card.flagship {
    border: 2px solid var(--q-red);
}
.outlet-card.flagship .badge {
    position: absolute;
    top: 15px; right: -30px;
    background: var(--q-red);
    color: var(--white);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

/* 6. CONTACT US & FOOTER */
.section-contact {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 6rem 0 0 0;
}

.section-contact h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
}
.info-block h4 {
    color: var(--gold);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}
.info-block p a { color: var(--white); }
.info-block p a:hover { color: var(--q-red); }

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    color: var(--charcoal);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    position: relative;
    top: -20px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.input-group {
    margin-bottom: 1.5rem;
}
.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.input-group input, .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}
.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--q-red);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}

.recaptcha-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-grey);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
}
.recaptcha-mock input { width: 18px; height: 18px; cursor: pointer; }

.submit-btn { width: 100%; }

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
    padding: 10px;
    border-radius: 4px;
}
.form-status.success { 
    color: #155724; 
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    display: block; 
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ANIMATIONS (SCROLL REVEAL) */
.fade-in-up, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}
.fade-in-up, .reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.fade-in-up.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        right: -100%; top: var(--header-height);
        flex-direction: column;
        background: var(--white);
        width: 100%; text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }
    .nav-links.active { right: 0; }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
    
    .contact-form { padding: 2rem; }
    
    /* Parallax disabled for mostly mobile performance per best practices */
    .parallax {
        background-attachment: scroll;
    }
    
    .split-layout { 
        gap: 2rem;
    }
    
    .section-about, .section-menu, .section-franchise, .section-outlets {
        padding: 4rem 0;
    }
    .section-contact {
        padding-top: 4rem;
    }
}
