@charset "UTF-8";
/* ===== TACO TEK — SHARED COMPONENTS ===== */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn:active {
    transform: scale(0.97) !important;
    transition-duration: 0.1s;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--glow-red), var(--shadow-lg);
}

.hero-actions .btn-primary {
    animation: pulsePrimary 3s infinite;
}

@keyframes pulsePrimary {
    0% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 212, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0); }
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-yellow {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-outline-yellow:hover {
    background: var(--yellow);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--glow-yellow);
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: var(--glow-red), var(--shadow-lg);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: var(--fs-small);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-body-lg);
}

/* --- Sticky Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 var(--space-lg);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85); /* Slightly less transparent for better readability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); /* Stronger shadow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    height: 76px; /* slightly smaller padding on scroll */
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.header-logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: all var(--transition-base);
}

.site-header.scrolled .header-logo img {
    height: 58px;
}

.header-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-logo img {
        height: 54px;
    }
    .site-header.scrolled .header-logo img {
        height: 48px;
    }
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-links a {
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-small);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.site-header.scrolled .nav-links a {
    color: var(--navy);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
    color: var(--red);
}

.nav-cta {
    margin-left: var(--space-xs);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.site-header.scrolled .hamburger span {
    background: var(--navy);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 16, 33, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-overlay a {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(15px);
}

.mobile-nav-overlay.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav-overlay.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav-overlay a:hover {
    background: rgba(255, 212, 0, 0.12);
    color: var(--yellow);
    transform: translateY(-2px);
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-soft);
    color: var(--navy);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid var(--gray-100);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-200);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-brand .header-logo {
    justify-content: flex-start;
    margin-bottom: var(--space-xs);
}

.footer-brand .header-logo img {
    height: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.8;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--navy);
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: var(--glow-yellow);
}

.footer-col h4 {
    color: var(--navy);
    font-size: var(--fs-body);
    margin-bottom: var(--space-md);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--yellow);
    margin-top: 8px;
    border-radius: 2px;
    transition: width var(--transition-base);
}

.footer-col:hover h4::after {
    width: 50px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: var(--fs-small);
    padding: 6px 0;
    transition: all var(--transition-base);
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--yellow);
    transition: width var(--transition-base);
}

.footer-col a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    font-size: var(--fs-xs);
    color: var(--gray-600);
}

.footer-bottom a {
    color: var(--gray-600);
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* --- Card --- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow);
}

.card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-body {
    padding: var(--space-md);
}

.card-body h3 {
    margin-bottom: var(--space-xs);
}

.card-body p {
    color: var(--gray-600);
    font-size: var(--fs-small);
    margin-bottom: var(--space-sm);
}

/* --- Floating Order CTA (Mobile) --- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta .btn {
    box-shadow: var(--shadow-xl), var(--glow-yellow);
    font-size: var(--fs-small);
    padding: 0.9rem 1.6rem;
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* --- Page Hero (shared for inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 40%, rgba(255, 212, 0, 0.04) 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.06), transparent 70%);
    border-radius: 50%;
    animation: heroShapePulse 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 49, 49, 0.04), transparent 70%);
    border-radius: 50%;
    animation: heroShapePulse 10s ease-in-out infinite reverse;
}

@keyframes heroShapePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    display: block;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero h1 {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.page-hero .subtitle {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-small);
    color: var(--navy);
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    color: var(--navy);
    transition: all var(--transition-base);
}

.form-control:focus {
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: var(--glow-focus);
}

.form-group:focus-within label {
    color: var(--red);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* --- Section Divider --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-label {
    display: block;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header .subtitle {
    margin: 0 auto;
}

/* --- Icon Box --- */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--yellow), #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-base);
}

.feature-card:hover .icon-box,
.catering-feature:hover .icon-box,
.franchise-perk:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-yellow);
}

/* --- Accordion --- */
.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-body);
    color: var(--navy);
    text-align: left;
    transition: color var(--transition-fast);
}

.accordion-btn:hover {
    color: var(--red);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--yellow);
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.accordion-content p {
    padding-bottom: var(--space-md);
    color: var(--gray-600);
    font-size: var(--fs-small);
    line-height: 1.7;
}

/* --- Responsive Footer --- */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 80px;
        padding: 0 var(--space-md);
    }

    /* Mobile Nav */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        padding-top: 100px;
    }

    /* Page Hero mobile */
    .page-hero {
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
        text-align: center;
    }

    .page-hero .subtitle {
        margin: 0 auto;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    /* Floating CTA */
    .floating-cta {
        display: block;
        bottom: var(--space-md);
        right: var(--space-md);
    }
}