/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Brand color (primary): Chef On Call Yellow */
    --red-primary: #F4E92A; /* renamed variable kept for compatibility */
    --red-hover: #D4C600;  /* darker shade for hover/active */
    --beige: #F5F5DC;
    --dark: #2C2C2C;
    --dark-bg: #1a1a1a;
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    /* clip instead of hidden: clips visual overflow without creating a scroll container,
       which preserves position:sticky on child elements */
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    /* clip instead of hidden: prevents horizontal overflow without creating a scroll container,
       which would break position:sticky on child elements */
    overflow-x: clip;
}

/* Prevent any section from blowing out horizontal layout */
section, header, footer, nav {
    max-width: 100%;
}

/* Smooth scrolling optimization */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	background: transparent;
	backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
	overflow: visible; /* allow center logo to hang over */
    will-change: background, box-shadow;
    transform: translateZ(0); /* Force GPU acceleration */
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	background: var(--beige);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    cursor: pointer;
}
.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: #ffffff; /* Default to white */
    border-radius: 2px;
    position: relative;
    box-shadow: 0 7px 0 0 #ffffff, 0 -7px 0 0 #ffffff;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle .bar {
    background: var(--dark);
    box-shadow: 0 7px 0 0 var(--dark), 0 -7px 0 0 var(--dark);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
	position: relative;
    padding: 0 2.5rem;
}

.nav-link {
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 1px;
    color: #ffffff; /* Default to white for hero sections */
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Add shadow for better legibility */
}

.light-hero .nav-link {
    color: var(--dark); /* Black on light backgrounds */
    text-shadow: none;
}

.light-hero .nav-link:hover,
body.light-hero .nav-link:hover {
    color: #000 !important;
}

.light-hero .nav-link::after,
body.light-hero .nav-link::after {
    background: var(--dark) !important;
}

.light-hero .nav-toggle .bar {
    background: var(--dark);
    box-shadow: 0 7px 0 0 var(--dark), 0 -7px 0 0 var(--dark);
}

/* Order button on light backgrounds */
.light-hero .btn-order {
    background: var(--dark);
    color: var(--red-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.light-hero .btn-order:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scrolled state - dark links */
.navbar.scrolled .nav-link {
    color: var(--dark);
    text-shadow: none;
}

.nav-link:hover::after {
    width: 100%;
}

/* Logo Animation */
.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo {
	width: 120px;
	height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: translateY(0); /* remove overhang */
	z-index: 1100;
}

.logo-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.logo-link:hover .logo-svg {
    transform: rotate(360deg) scale(1.1);
}

.logo-link:hover .logo-img {
	transform: rotate(360deg) scale(1.06);
}

.logo-svg ellipse,
.logo-svg path,
.logo-svg circle {
    transition: all 0.3s ease;
}

.logo-link:hover .logo-svg ellipse:first-child {
    fill: #E8C89E;
}

/* Location Button */
.location-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 1.2px;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    color: var(--dark);
    background: rgba(244, 233, 41, 0.15);
    border-radius: 6px;
}

.location-btn:hover .location-icon,
.location-btn:hover .dropdown-arrow {
    opacity: 0.8;
}

.location-icon {
    width: 14px;
    height: 17px;
}

.dropdown-arrow {
    width: 8px;
    height: 5px;
    margin-left: 2px;
}

/* Order Button */
.btn-order {
    background: var(--red-primary);
    color: var(--dark);
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
	font-size: 1.35rem;
	letter-spacing: 2.2px;
	padding: 0.95rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(244, 233, 41, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-order:hover::before {
    width: 300px;
    height: 300px;
}

.btn-order:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 233, 41, 0.45);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--beige);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Catering (slide 3): matches the catering page hero image */
.hero-slide--catering {
    background-image: url('images/food/catering-event.jpg');
}

/* Ranch Showdown (slide 2): responsive cover + WebP when supported */
.hero-slide--ranch-showdown {
    background-image: url('images/ranch-showdown-hero.jpg');
    background-image: image-set(
        url('images/ranch-showdown-hero.webp') type('image/webp'),
        url('images/ranch-showdown-hero.jpg') type('image/jpeg')
    );
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.45) 18%,
            rgba(0,0,0,0.18) 38%,
            rgba(0,0,0,0.42) 62%,
            rgba(0,0,0,0.72) 100%
        );
    z-index: 5;
}

.hero-slide-overlay--lto {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.72) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 4rem 3rem 0;
    margin: 0 auto;
    text-align: center;
}

.hero-slide.active .hero-slide-content {
    animation: heroFadeInUp 0.8s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-slider-dot.active {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-slider-arrow:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow--prev {
    left: 1.5rem;
}

.hero-slider-arrow--next {
    right: 1.5rem;
}

.hero-eyebrow {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(3.25rem, 9vw, 8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-shadow: 0 2px 0 rgba(0,0,0,0.5),
        0 4px 15px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-locations {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.hero-title-line {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    display: inline-block;
	/* brand gradient */
	background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 2.2px;
    padding: 1.35rem 3.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 12px 28px rgba(244, 233, 41, 0.45), 0 2px 0 rgba(0,0,0,0.12);
	border: 2px solid #A89E00;
	/* subtle inner highlight */
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2),
		0 12px 28px rgba(244, 233, 41, 0.45), 0 2px 0 rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
	background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-3px) scale(1.05);
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.25),
		0 18px 42px rgba(244, 233, 41, 0.55);
}

/* Best Sellers Section */
.best-sellers {
    padding: 6rem 2rem;
    background: #ffffff;
}

/* Fullscreen Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(245,245,220,0.98);
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu.open {
    transform: translateY(0);
}
.mobile-menu-inner {
    width: min(720px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.mobile-menu-list {
    order: 1;
}
.mobile-lang-toggle {
    order: 2;
    align-self: flex-start;
}
.mobile-cta {
    order: 3;
    margin-top: 1.5rem;
}
.mobile-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    background: transparent;
    border: none;
    color: var(--dark);
}
.mobile-menu-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    order: 1;
}
.mobile-link {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: 2px;
    color: var(--dark);
    text-decoration: none;
}
.mobile-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.section-subtitle {
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card:hover .product-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.image-placeholder {
    opacity: 0.6;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-5deg);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(5deg);
    }
}

.badge-green {
    background: linear-gradient(135deg, #2D8659 0%, #1F5F3F 100%);
}

.badge-orange {
    background: linear-gradient(135deg, #F4A460 0%, #D2691E 100%);
}

.badge-red {
    background: linear-gradient(135deg, #D92027 0%, #B81B22 100%);
}

.product-card:hover .product-badge {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-10deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

.product-name {
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: 1px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

/* Start Order Button */
.btn-start-order {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: var(--red-primary);
    color: var(--dark);
	font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(244, 233, 41, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-start-order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-start-order:hover::before {
    width: 400px;
    height: 400px;
}

.btn-start-order:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 233, 41, 0.45);
}

/* Popular Items Section */
.popular-items-section {
    padding: 6rem 2rem;
    background: var(--dark);
    position: relative;
}

.popular-items-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}

.popular-items-section > .container {
    position: relative;
    z-index: 1;
}

.popular-items-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.popular-items-subtitle {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    color: var(--red-primary);
    margin-bottom: 3.5rem;
    letter-spacing: 3px;
}

.popular-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.popular-item-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px var(--red-primary);
}

.popular-item-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.popular-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-item-card:hover .popular-item-img {
    transform: scale(1.08);
}

.popular-item-info {
    padding: 1.25rem 1.25rem 0.5rem;
    flex: 1;
}

.popular-item-category {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--dark);
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.popular-item-name {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.popular-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.btn-popular-order {
    display: block;
    width: calc(100% - 2.5rem);
    margin: 0.75rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 0.75rem;
    border-radius: 50px;
    border: 2px solid #A89E00;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-popular-order:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 233, 41, 0.4);
}

.popular-items-cta {
    text-align: center;
}

.btn-view-menu {
    display: inline-block;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 233, 41, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn-view-menu:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 233, 41, 0.5);
}

@media (max-width: 1024px) {
    .popular-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-items-section {
        padding: 4rem 1.5rem;
    }
    .popular-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .popular-item-info {
        padding: 1rem 1rem 0.25rem;
    }
    .popular-item-name {
        font-size: 1.15rem;
    }
    .btn-popular-order {
        width: calc(100% - 2rem);
        margin: 0.5rem 1rem 1rem;
        font-size: 1rem;
        padding: 0.6rem;
    }
}

@media (max-width: 400px) {
    .popular-items-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 5rem 2rem;
    background: var(--dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.social-proof-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.social-proof-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stars-display {
    display: flex;
    gap: 0.15rem;
}

.stars-display .star {
    font-size: 2rem;
    color: #555;
    line-height: 1;
}

.stars-display .star.filled {
    color: var(--red-primary);
}

.stars-display .star.half {
    background: linear-gradient(90deg, var(--red-primary) 60%, #555 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.rating-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.social-proof-quotes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--red-primary);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: var(--red-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .social-proof-quotes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 3.5rem 1.5rem;
    }
    .social-proof-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    .social-proof-quotes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .review-card {
        padding: 1.5rem;
    }
}

/* Rewards Banner Section */
.rewards-banner-section {
    padding: 0;
    background: var(--dark);
    overflow: hidden;
    position: relative;
    isolation: isolate; /* Create new stacking context */
}

.rewards-banner-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.rewards-banner-scroll {
    display: flex;
    width: fit-content;
    animation: scroll-rewards 60s linear infinite;
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden; /* Prevent flickering */
}

.rewards-banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.rewards-text {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 3px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none; /* Prevent text selection during scroll */
}

.rewards-btn {
    display: inline-block;
    background: var(--red-primary);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 2px;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.2s ease,
                box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(244, 233, 41, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 10; /* Ensure buttons are above scrolling content */
    pointer-events: auto; /* Ensure buttons are clickable */
    transform: translateZ(0); /* GPU acceleration for smooth hover */
    will-change: transform, background-color, box-shadow;
}

.rewards-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px) scale(1.03) translateZ(0);
    box-shadow: 0 6px 20px rgba(244, 233, 41, 0.4);
}

.rewards-btn:active {
    transform: translateY(0) scale(1) translateZ(0);
    transition-duration: 0.1s;
}

@keyframes scroll-rewards {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

/* Pause animation on hover for better UX */
.rewards-banner-section:hover .rewards-banner-scroll {
    animation-play-state: paused;
}

/* Chef Deal Section */
.chef-deal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%);
    position: relative;
    overflow: hidden;
}

.chef-deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(244, 233, 41, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(244, 233, 41, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.deal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

.deal-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.deal-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.deal-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.deal-image-wrapper {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2C2C2C;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.deal-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #F4E92A 0%, #D4C600 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deal-image-wrapper:hover::before {
    opacity: 1;
}

.deal-image-wrapper:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: #F4E92A;
}

.deal-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-badge-item:hover .deal-image {
    transform: scale(1.1);
}

.deal-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-label {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #2C2C2C;
    font-weight: 700;
}

.deal-text {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: #2C2C2C;
    font-weight: 700;
}

.deal-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.deal-subtext {
    font-size: 1.25rem;
    color: #2C2C2C;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-deal {
    display: inline-block;
    background: linear-gradient(180deg, #F4E929 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 2.2px;
    padding: 1.35rem 3.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2),
        0 12px 28px rgba(244, 233, 41, 0.45), 0 2px 0 rgba(0,0,0,0.12);
    border: 2px solid #A89E00;
    position: relative;
    overflow: hidden;
}

.btn-deal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-deal:hover::before {
    width: 400px;
    height: 400px;
}

.btn-deal:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.25),
        0 18px 42px rgba(244, 233, 41, 0.55);
}

/* Event Banner (Chef's Yellow) */
.event-banner {
    position: relative;
    background: var(--red-primary);
	padding: 6rem 0 6rem 2rem;
    overflow: visible;
    border-top: 1px solid var(--dark);
    border-bottom: 1px solid var(--dark);
}
.event-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr; /* give artwork more space */
    align-items: center;
    gap: 2rem;
}
.event-copy {
    color: var(--dark);
    padding-right: 1rem;
}
.event-heading {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    line-height: 1.05;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
}
.event-heading-line {
    display: block;
}
.event-subtext,
.event-note {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 620px;
}
.event-subtext {
    margin-bottom: 0.5rem;
}
.event-note {
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
.btn-event {
    display: inline-block;
    background: #2C2C2C;
    color: #ffffff;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1rem 2.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    background: #111111;
}
.event-artwork {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; /* push image to the right */
    position: relative;
    min-height: 420px;
    overflow: visible;
}
.event-image {
    width: 100%;
    max-width: 1200px; /* larger visual width on desktop */
    height: auto;
    object-fit: contain;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.event-artwork:hover .event-image {
    transform: translateY(-6px);
}

/* Right bleed and slight bottom overlap on larger screens */
@media (min-width: 1024px) {
    .event-artwork {
		margin-right: -14vw; /* push beyond viewport edge more decisively */
		margin-bottom: -28px; /* hang over the bottom border slightly */
		z-index: 2;
    }
}

/* Reveal animation for event artwork */
.event-image {
    opacity: 0;
    transform: translateY(28px) scale(0.96) rotate(-1.25deg);
    clip-path: inset(0 0 16% 0);
    transform-origin: 50% 80%;
    will-change: transform, opacity, clip-path, filter;
}
.event-artwork.visible .event-image {
    animation: eventImageReveal 900ms cubic-bezier(0.2, 0.8, 0.16, 1) forwards;
}
@keyframes eventImageReveal {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.96) rotate(-1.25deg);
        clip-path: inset(0 0 16% 0);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.02) rotate(0deg);
        clip-path: inset(0 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        clip-path: inset(0 0 0 0);
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .nav-link {
        font-size: 1.15rem;
        letter-spacing: 0.8px;
    }
    .nav-left,
    .nav-right {
        gap: 0.6rem;
    }
    .nav-center {
        padding: 0 0.75rem;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-left,
    .nav-right {
        gap: 0.5rem;
    }
    .nav-link {
        font-size: 1.05rem;
        letter-spacing: 0.5px;
    }

    .event-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .event-heading {
        font-size: clamp(2.25rem, 5vw, 3rem);
    }
    .event-image {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .navbar { position: fixed; top: 0; left: 0; right: 0; background: transparent; border-bottom: none; box-shadow: none; }
    /* 3-column grid: [hamburger] [logo] [ORDER NOW]  — lang toggle lives in the hamburger menu */
    .nav-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.75rem; padding: 0.65rem 0.9rem; overflow: clip; }
    .nav-toggle { display: inline-flex; grid-column: 1; justify-self: start; }
    .nav-left { display: none; }
    /* Reset the padding that bleeds in from the 1280px breakpoint so the auto column is exactly the logo width */
    .nav-center { grid-column: 2; justify-self: center; display: flex; align-items: center; padding: 0; }
    .logo { width: 88px; height: 88px; }
    /* Hide the lang toggle from the nav bar — it is accessible via the hamburger menu */
    .nav-right .lang-toggle { display: none; }
    .nav-right { grid-column: 3; display: flex; align-items: center; justify-self: end; min-width: 0; }
    .btn-order { font-size: 1rem; padding: 0.55rem 1.15rem; letter-spacing: 1.3px; white-space: nowrap; }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-slider {
        height: auto;
        min-height: 100svh;
    }

    .hero-slide {
        position: relative;
        min-height: 100svh;
        padding: 7rem 1rem 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide:not(.active) {
        position: absolute;
        inset: 0;
    }

    .hero-slide-content {
        padding: 0 1rem;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-slider-arrow--prev {
        left: 0.75rem;
    }

    .hero-slider-arrow--next {
        right: 0.75rem;
    }
    
    .rewards-banner-content {
        padding: 1.25rem 2rem;
        gap: 1.5rem;
    }
    
    .rewards-text {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        letter-spacing: 2px;
    }
    
    .rewards-btn {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        min-height: 44px; /* Ensure touch target is large enough */
    }
    
    .chef-deal {
        padding: 4rem 1.5rem;
    }
    
    .deal-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 3rem;
    }
    
    .deal-badges {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .deal-image-wrapper {
        max-width: 240px;
    }
    
    .visit-label {
        font-size: 1.3rem;
    }
    
    .deal-text {
        font-size: 1.75rem;
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 3rem;
    }
    
    .deal-subtext {
        font-size: 1.1rem;
    }
    
    .btn-deal {
        font-size: 1.4rem;
        padding: 1.1rem 2.5rem;
    }

    .event-banner {
        padding: 4rem 1.25rem;
    }
    .event-inner {
        grid-template-columns: 1fr;
    }
    .event-copy {
        order: 1;
        text-align: left;
        padding-right: 0;
    }
    .event-artwork {
        order: 2;
        min-height: 200px;
    }
    .event-heading {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    .event-subtext,
    .event-note {
        font-size: 1.05rem;
    }
    .event-subtext {
        margin-bottom: 0.5rem;
    }
    .event-note {
        margin-bottom: 1.1rem;
    }
    .event-image {
        max-width: 520px; /* about 2x of typical mobile width for retina */
    }
}

/* Desktop boost to approximate 125% zoom at native 100% */
@media (min-width: 1200px) {
    html { font-size: 17.5px; } /* bumps all rem-based sizes ~9% */
    .hero-title { font-size: clamp(3.5rem, 9.2vw, 8.25rem); }
    .btn-hero { font-size: 1.75rem; padding: 1.4rem 3.4rem; }
    .btn-order { font-size: 1.4rem; padding: 1rem 2.5rem; }
    .nav-link { font-size: 1.85rem; }
}

@media (min-width: 1400px) {
    .event-artwork { min-height: 520px; }
    .event-image { max-width: 1400px; }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* App Promo Widget */
.app-promo-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 999;
    overflow: hidden;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.app-promo-widget.show {
    transform: translateY(0);
    opacity: 1;
}

.app-promo-widget.hiding {
    transform: translateY(calc(100% + 40px));
    opacity: 0;
}

.app-promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.app-promo-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.app-promo-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-promo-phone {
    flex-shrink: 0;
    width: 140px;
    height: auto;
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.app-promo-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.app-promo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-promo-eyebrow {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.7;
}

.app-promo-heading {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0;
}

.btn-app-promo {
    display: inline-block;
    background: linear-gradient(180deg, #F4E929 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(244, 233, 41, 0.35);
    border: 2px solid #A89E00;
    position: relative;
    overflow: hidden;
}

.btn-app-promo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-app-promo:hover::before {
    width: 300px;
    height: 300px;
}

.btn-app-promo:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(244, 233, 41, 0.45);
}

/* Responsive adjustments for app promo */
@media (max-width: 768px) {
    .app-promo-widget {
        width: min(calc(100vw - 32px), 100%);
        max-width: 360px;
        bottom: 16px;
        right: 16px;
    }
    
    .app-promo-content {
        padding: 16px;
    }
    
    .app-promo-phone {
        width: 120px;
    }
    
    .app-promo-heading {
        font-size: 1.5rem;
    }
    
    .btn-app-promo {
        font-size: 1rem;
        padding: 0.65rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .app-promo-widget {
        width: min(calc(100vw - 24px), 100%);
        right: 12px;
        bottom: 12px;
    }
    
    .app-promo-phone {
        width: 100px;
    }
    
    .app-promo-eyebrow {
        font-size: 0.85rem;
    }
    
    .app-promo-heading {
        font-size: 1.25rem;
    }
}

/* LTO Section */
.lto-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f5 100%);
    position: relative;
    overflow: hidden;
}

.lto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(244, 233, 41, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(217, 32, 39, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.lto-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    color: #D92027;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.lto-subtitle {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 4rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.lto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lto-item {
    position: relative;
    text-align: center;
    animation: fadeInUp 0.8s ease-out backwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lto-item:nth-child(1) {
    animation-delay: 0.1s;
}

.lto-item:nth-child(2) {
    animation-delay: 0.2s;
}

.lto-item:nth-child(3) {
    animation-delay: 0.3s;
}

.lto-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 130px;
    height: 130px;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lto-badge-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid #2C2C2C;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lto-item:hover .lto-badge-circle {
    transform: rotate(360deg) scale(1.1);
}

.lto-badge-text {
    text-align: center;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    color: #2C2C2C;
    padding: 1rem;
}

.lto-badge-line1 {
    font-size: 1rem;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.lto-badge-line2 {
    font-size: 1.3rem;
    letter-spacing: 1.8px;
    line-height: 1;
    font-weight: 700;
}

.lto-card {
    position: relative;
    background: #000000;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.lto-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #F4E92A 0%, #D4C600 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lto-item:hover .lto-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lto-item:hover .lto-card::before {
    opacity: 1;
}

.lto-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lto-item:hover .lto-image {
    transform: scale(1.05);
}

.lto-name {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 2px;
    color: #2C2C2C;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.lto-item:hover .lto-name {
    color: #D92027;
}

.lto-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-grow: 1;
}

/* LTO Button */
.btn-lto {
    display: inline-block;
    background: linear-gradient(180deg, #F4E92A 0%, #D4C600 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2),
        0 8px 20px rgba(244, 233, 42, 0.35);
    border: 2px solid #A89E00;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.btn-lto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-lto:hover::before {
    width: 300px;
    height: 300px;
}

.btn-lto:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.25),
        0 12px 30px rgba(244, 233, 42, 0.45);
}

/* Badge color variants - using brand colors */
.lto-badge-yellow .lto-badge-circle {
    background: linear-gradient(135deg, #F4E92A 0%, #E8DA18 100%);
}

.lto-badge-yellow-dark .lto-badge-circle {
    background: linear-gradient(135deg, #D4C600 0%, #B8AA00 100%);
}

/* LTO Section Mobile */
@media (max-width: 768px) {
    .lto-section {
        padding: 4rem 1.5rem;
    }

    .lto-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .lto-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }

    .lto-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .lto-badge {
        width: 110px;
        height: 110px;
        top: -20px;
        left: -20px;
    }

    .lto-badge-line1 {
        font-size: 0.9rem;
    }

    .lto-badge-line2 {
        font-size: 1.1rem;
    }

    .lto-name {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .lto-description {
        font-size: 0.95rem;
    }

    .btn-lto {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

/* Instagram Feed Section */
.instagram-feed-section {
    padding: 6rem 2rem 3rem;
    background: #1a1a1a;
    position: relative;
}

.feed-header {
    text-align: center;
    margin-bottom: 4rem;
}

.feed-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: 700;
}

.feed-title-main {
    display: block;
    color: #ffffff;
}

.feed-subtitle {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--red-primary);
    margin-top: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.instagram-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px var(--red-primary);
}

.instagram-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.instagram-post:hover .instagram-post-image {
    transform: scale(1.05);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    opacity: 0;
}

.instagram-post:hover .instagram-post-overlay {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.instagram-post-stats {
    display: flex;
    gap: 1.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.instagram-post:hover .instagram-post-stats {
    opacity: 1;
    transform: translateY(0);
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Follow Us Section */
.follow-us-section {
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 3rem 0 1rem;
    text-align: center;
}

.follow-us-text {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.follow-text {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem; /* Increased margin for better spacing from buttons */
    font-weight: 600;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.instagram-link {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
    color: white;
    border-color: #C13584;
}

.instagram-link:hover {
    background: linear-gradient(135deg, #6A2D91 0%, #A12A6B 50%, #C2285A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(193, 53, 132, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.15);
    border-color: #A12A6B;
}

.facebook-link {
    background: linear-gradient(135deg, #1877F2 0%, #0062E0 100%);
    color: white;
    border-color: #1877F2;
}

.facebook-link:hover {
    background: linear-gradient(135deg, #166FE5 0%, #0052CC 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.15);
    border-color: #0052CC;
}

.tiktok-link {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
    color: white;
    border-color: #EE1D52;
}

.tiktok-link:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #D11A47 50%, #5BB5BC 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(238, 29, 82, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.15);
    border-color: #D11A47;
}

.twitter-link {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    border-color: var(--dark);
}

.twitter-link:hover {
    background: linear-gradient(135deg, #333333 0%, var(--dark) 100%);
    border-color: #333333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive Instagram Feed */
@media (max-width: 768px) {
    .instagram-feed-section {
        padding: 4rem 1.5rem;
    }
    
    .feed-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .feed-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 3rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .follow-us-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
}

/* Parallax Hero Section */
.parallax-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('images/about/waterloo-exterior.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 4px solid var(--red-primary);
    border-bottom: 4px solid var(--red-primary);
}

.parallax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.parallax-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.parallax-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Mobile: disable fixed attachment for better performance */
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        min-height: 300px;
        height: 40vh;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark);
    position: relative;
    z-index: 100;
}

/* Footer Banner */
.footer-banner {
    background: var(--red-primary);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.footer-banner-scroll {
    display: flex;
    width: fit-content;
    gap: 3rem;
    animation: scroll-footer-banner 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.footer-banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 0;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scroll-footer-banner {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.footer-banner-text {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--dark);
    font-weight: 700;
    user-select: none;
}

.footer-banner-icon {
    font-size: 2rem;
}

/* Main Footer Content */
.footer-main {
    padding: 5rem 2rem 3rem;
    background: var(--dark);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.footer-logo-section {
    padding-right: 1rem;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-section-title {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link-highlight {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-link-highlight::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.footer-link-highlight:hover {
    color: #ffffff;
}

.footer-link-highlight:hover::after {
    margin-left: 1rem;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.footer-social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: var(--red-primary);
    transform: translateY(-3px) scale(1.15);
}

/* Footer CTA Buttons */
.btn-footer-cta {
    display: inline-block;
    background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-hover) 100%);
    color: var(--dark);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(244, 233, 41, 0.35);
    border: 2px solid #A89E00;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-footer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-footer-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-footer-cta:hover {
    background: linear-gradient(180deg, #E8DA18 0%, #B8AA00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(244, 233, 41, 0.45);
}

.btn-footer-cta-secondary {
    display: inline-block;
    background: var(--dark);
    color: var(--red-primary);
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--dark);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-footer-cta-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(244, 233, 41, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-footer-cta-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-footer-cta-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.footer-link-inline {
    color: var(--red-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-link-inline:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--red-primary);
}

.footer-separator {
    opacity: 0.5;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--red-primary);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-banner-scroll {
        gap: 1.5rem;
    }

    .footer-banner-content {
        padding: 1.25rem 0;
        gap: 1.5rem;
    }

    .footer-banner-text {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    .footer-banner-icon {
        font-size: 1.5rem;
    }

    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-section-title {
        font-size: 1.35rem;
    }

    .btn-footer-cta,
    .btn-footer-cta-secondary {
        font-size: 1.1rem;
        padding: 0.8rem 1.75rem;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-banner-text {
        font-size: 1.5rem;
    }

    .footer-section-title {
        font-size: 1.2rem;
    }

    .footer-link,
    .footer-link-highlight {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Location Modal (Shared across all pages)
   ========================================== */
.location-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-modal.open {
    opacity: 1;
    visibility: visible;
}

.location-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.location-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-modal.open .location-modal-content {
    transform: translateY(0) scale(1);
}

.location-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dark);
}

.location-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.location-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-modal-header h2 {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.location-modal-header p {
    color: #666;
    font-size: 1rem;
}

.location-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f8f8;
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-option:hover {
    background: #fff;
    border-color: var(--red-primary);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    font-size: 1.75rem;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 0.25rem 0;
    letter-spacing: 1px;
}

.location-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.location-arrow {
    font-size: 1.5rem;
    color: #111;
    transition: transform 0.3s ease;
}

.location-option:hover .location-arrow {
    transform: translateX(5px);
}

.location-modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.location-promo {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

@media (max-width: 600px) {
    .location-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .location-modal-header h2 {
        font-size: 1.75rem;
    }
    
    .location-option {
        padding: 1rem 1.25rem;
    }
}

/* ================================================
   LANGUAGE TOGGLE
   ================================================ */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-toggle {
    border-color: rgba(44, 44, 44, 0.4);
    color: rgba(44, 44, 44, 0.6);
}

.navbar.scrolled .lang-toggle:hover {
    border-color: var(--dark);
    background: rgba(44, 44, 44, 0.06);
}

.light-hero .lang-toggle {
    border-color: rgba(44, 44, 44, 0.35);
    color: rgba(44, 44, 44, 0.6);
}

.light-hero .lang-toggle:hover {
    border-color: var(--dark);
    background: rgba(44, 44, 44, 0.06);
}

.lang-option {
    padding: 0.1rem 0.35rem;
    border-radius: 14px;
    transition: color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.lang-option.active {
    color: var(--dark);
    background: var(--red-primary);
    font-weight: 700;
}

.navbar.scrolled .lang-option.active,
.light-hero .lang-option.active {
    color: var(--dark);
    background: var(--red-primary);
}

.lang-separator {
    padding: 0 0.1rem;
    opacity: 0.4;
    pointer-events: none;
}

/* Mobile lang toggle inside mobile menu — handles both <button class="mobile-lang-toggle"> and <div class="mobile-lang-toggle"><button>...</button></div> patterns */
.mobile-menu-inner .mobile-lang-toggle,
.mobile-menu-inner > .mobile-lang-toggle {
    order: 2;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.mobile-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: transparent;
    border: 2px solid var(--dark);
    border-radius: 20px;
    padding: 0.45rem 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: fit-content;
    align-self: flex-start;
    order: 2;
}

.mobile-lang-toggle .lang-option {
    padding: 0.2rem 0.6rem;
    border-radius: 14px;
    cursor: pointer;
    color: var(--dark);
    opacity: 0.45;
    transition: opacity 0.2s;
}

.mobile-lang-toggle .lang-option.active {
    background: var(--dark);
    color: var(--red-primary);
    opacity: 1;
}

.mobile-lang-toggle .lang-separator {
    padding: 0 0.1rem;
    opacity: 0.3;
    pointer-events: none;
}