/* ========================================
   FIZZFUEL.CO - DIRTY SODAS MENU
   Warm, nostalgic, whimsical aesthetic
   ======================================== */

/* CSS Variables - Color Palette */
:root {
    --cream: #FDF6E9;
    --cream-light: #FFFBF5;
    --tan: #E8D5B7;
    --tan-dark: #C4A97B;
    --brick-red: #8B3A3A;
    --deep-red: #6B2D2D;
    --navy: #2C3E50;
    --navy-light: #34495E;
    --gold: #D4A574;
    --gold-sparkle: #E6C891;
    --pink-soft: #F5E1DA;
    --pink-accent: #E8B4A0;
    --brown-soda: #5C3D2E;
    --green-straw: #7CB342;
    --bubble-white: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-display: 'Lilita One', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(139, 58, 58, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 58, 58, 0.15);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--cream) 0%, var(--tan) 50%, var(--cream-light) 100%);
    min-height: 100vh;
    color: var(--navy);
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   PAGE WRAPPER - Side by Side Layout
   ======================================== */
.page-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 5;
}

/* Hero Section - Left Side */
/* Hero Section - Left Side */
.hero-section {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-2xl);
    /* overflow: hidden; Removed to allow avatar to overlap */
    z-index: 20;
    /* Ensure it stays on top if needed, or higher than bubbles */
}

/* ========================================
   BUBBLES ANIMATION
   ======================================== */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.bubble:nth-child(1) {
    left: 5%;
    width: 30px;
    height: 30px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 15%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    left: 25%;
    width: 35px;
    height: 35px;
    animation-duration: 14s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    left: 35%;
    width: 25px;
    height: 25px;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.bubble:nth-child(5) {
    left: 50%;
    width: 40px;
    height: 40px;
    animation-duration: 13s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    left: 60%;
    width: 22px;
    height: 22px;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

.bubble:nth-child(7) {
    left: 70%;
    width: 28px;
    height: 28px;
    animation-duration: 15s;
    animation-delay: 4s;
}

.bubble:nth-child(8) {
    left: 80%;
    width: 18px;
    height: 18px;
    animation-duration: 10s;
    animation-delay: 2.5s;
}

.bubble:nth-child(9) {
    left: 88%;
    width: 32px;
    height: 32px;
    animation-duration: 12s;
    animation-delay: 0.2s;
}

.bubble:nth-child(10) {
    left: 42%;
    width: 15px;
    height: 15px;
    animation-duration: 8s;
    animation-delay: 5s;
}

.bubble:nth-child(11) {
    left: 92%;
    width: 24px;
    height: 24px;
    animation-duration: 11s;
    animation-delay: 3.5s;
}

.bubble:nth-child(12) {
    left: 3%;
    width: 20px;
    height: 20px;
    animation-duration: 13s;
    animation-delay: 6s;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}

.bubble:nth-child(13) {
    left: 8%;
    width: 28px;
    height: 28px;
    animation-duration: 9s;
    animation-delay: 5.5s;
}

.bubble:nth-child(14) {
    left: 18%;
    width: 22px;
    height: 22px;
    animation-duration: 11s;
    animation-delay: 1.2s;
}

.bubble:nth-child(15) {
    left: 38%;
    width: 38px;
    height: 38px;
    animation-duration: 13s;
    animation-delay: 4.5s;
}

.bubble:nth-child(16) {
    left: 55%;
    width: 16px;
    height: 16px;
    animation-duration: 8s;
    animation-delay: 2.8s;
}

.bubble:nth-child(17) {
    left: 65%;
    width: 32px;
    height: 32px;
    animation-duration: 14s;
    animation-delay: 6.5s;
}

.bubble:nth-child(18) {
    left: 75%;
    width: 26px;
    height: 26px;
    animation-duration: 10s;
    animation-delay: 0.8s;
}

.bubble:nth-child(19) {
    left: 85%;
    width: 20px;
    height: 20px;
    animation-duration: 12s;
    animation-delay: 3.2s;
}

.bubble:nth-child(20) {
    left: 95%;
    width: 24px;
    height: 24px;
    animation-duration: 15s;
    animation-delay: 5.8s;
}

/* ========================================
   SPARKLES OVERLAY
   ======================================== */
.sparkles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 10% 20%, var(--gold-sparkle) 1px, transparent 1px),
        radial-gradient(circle at 90% 15%, var(--gold-sparkle) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 80%, var(--gold-sparkle) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--gold-sparkle) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, var(--gold-sparkle) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, var(--gold-sparkle) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 30%, var(--gold-sparkle) 1px, transparent 1px),
        radial-gradient(circle at 15% 60%, var(--gold-sparkle) 2px, transparent 2px),
        radial-gradient(circle at 85% 85%, var(--gold-sparkle) 1px, transparent 1px),
        radial-gradient(circle at 45% 10%, var(--gold-sparkle) 1.5px, transparent 1.5px);
    animation: sparkle-twinkle 3s ease-in-out infinite alternate;
}

@keyframes sparkle-twinkle {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.8;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.logo-section {
    position: relative;
    z-index: 2;
}

.brand-name {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-sm);
}

.tagline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 6rem);
    color: var(--brick-red);
    text-shadow:
        3px 3px 0 var(--tan),
        5px 5px 10px rgba(139, 58, 58, 0.3);
    letter-spacing: 0.05em;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.tagline::before,
.tagline::after {
    content: '✦';
    position: absolute;
    font-size: 0.3em;
    color: var(--gold);
    animation: sparkle-pulse 2s ease-in-out infinite;
}

.tagline::before {
    top: -10px;
    left: -30px;
}

.tagline::after {
    top: -10px;
    right: -30px;
    animation-delay: 1s;
}

@keyframes sparkle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* ========================================
   MASCOT
   ======================================== */
.mascot-container {
    position: absolute;
    top: -70px;
    right: -120px;
    z-index: 3;
}

.mascot-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    animation: mascot-bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #000000;
    border-radius: 50%;
    border: 4px solid var(--tan-dark);
}

.mascot-image:hover {
    transform: scale(1.1);
}

@keyframes mascot-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   ORDER CTA SECTION
   ======================================== */
.order-cta {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.tagline-sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--navy);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.order-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(145deg, var(--pink-soft) 0%, var(--pink-accent) 100%);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-phone:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.order-phone.hidden-by-sticky {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.order-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--navy);
}

.order-text strong {
    color: var(--brick-red);
    font-weight: 600;
}

.phone-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--brick-red);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.phone-number:hover {
    color: var(--deep-red);
    transform: scale(1.05);
}

.phone-number::before {
    content: '📱 ';
    font-size: 0.8em;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-container {
    flex: 1.2;
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.menu-section {
    background: linear-gradient(145deg,
            rgba(253, 246, 233, 0.95) 0%,
            rgba(232, 213, 183, 0.9) 100%);
    border-radius: 30px;
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--tan-dark);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed var(--tan-dark);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.5;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.sparkle {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    animation: sparkle-rotate 4s linear infinite;
}

@keyframes sparkle-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.drink-info {
    flex: 1;
}

.drink-name {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--brick-red);
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

/* Drink name color variations */
.drink-name.color-red {
    color: var(--brick-red);
}

.drink-name.color-navy {
    color: var(--navy);
}

.menu-item:hover .drink-name.color-red {
    color: var(--deep-red);
}

.menu-item:hover .drink-name.color-navy {
    color: var(--navy-light);
}

.drink-ingredients {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
    color: var(--navy-light);
    letter-spacing: 0.02em;
}

.new-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(238, 90, 90, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   DECORATIVE SODA CUPS
   ======================================== */
.cups-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 6;
    transform: scale(0.8);
}

/* Base state: Show bottom cups on desktop (modified) */
.page-wrapper>.cups-decoration {
    display: none;
}

.soda-cup {
    position: relative;
    animation: cup-float 4s ease-in-out infinite;
}

.soda-cup.cup-left {
    animation-delay: 0s;
}

.soda-cup.cup-right {
    animation-delay: 2s;
}

@keyframes cup-float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.cup-body {
    width: 100px;
    height: 140px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(200, 180, 160, 0.8) 20%,
            var(--brown-soda) 25%,
            #3D2519 90%,
            rgba(61, 37, 25, 0.9) 100%);
    border-radius: 15px 15px 25px 25px;
    position: relative;
    box-shadow:
        inset 0 -20px 30px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cup-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(245, 240, 235, 0.9) 100%);
    border-radius: 15px 15px 0 0;
}

.cup-body::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 10px;
    right: 10px;
    bottom: 20px;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.25) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 30% 85%, rgba(255, 255, 255, 0.3) 3px, transparent 3px);
}

.cup-sticker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, var(--tan) 0%, var(--tan-dark) 100%);
    color: var(--brown-soda);
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-style: italic;
    padding: 8px 12px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.cup-straw {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 8px;
    height: 60px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 4px;
    transform: rotate(15deg);
    z-index: 3;
}

.cup-straw.green {
    background: linear-gradient(90deg, #7CB342 0%, #558B2F 50%, #7CB342 100%);
    right: 25px;
    transform: rotate(-10deg);
}

.cup-fruits {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 4;
}

.fruit {
    font-size: 1.5rem;
    animation: fruit-bounce 2s ease-in-out infinite;
}

.fruit:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes fruit-bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    color: var(--navy-light);
    font-size: 0.9rem;
}

.footer p {
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Tablet/Small Desktop tweaks for sticky behavior */
@media (min-width: 769px) and (max-width: 890px) {
    .hero-section {
        position: sticky;
        top: 0;
        height: 100vh;
        justify-content: flex-start;
        /* Align to top so it doesn't "slide" if centered */
        padding-top: 100px;
        /* Add some spacing since we are aligning to top */
        overflow: visible;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        padding: var(--spacing-md);
        padding-bottom: 200px;
        /* Space for cups */
    }

    /* Hide desktop cups, show mobile cups */
    .hero-section .cups-decoration {
        display: none;
    }

    /* Mobile cups positioning */
    .cups-decoration {
        display: flex;
        justify-content: center;
        gap: var(--spacing-lg);
        position: fixed;
        /* Fixed to viewport bottom on mobile */
        bottom: 10px;
        left: 0;
        right: 0;
        top: auto;
        /* Reset desktop top/bottom if needed */
        z-index: 100;
        pointer-events: none;
        transform: scale(0.65);
        /* Slightly smaller for mobile */
    }

    .hero-section {
        padding: var(--spacing-md);
        padding-bottom: 0;
        /* Disable sticky on mobile so it scrolls away */
        position: relative;
        height: auto;
        top: auto;
    }

    .menu-container {
        max-width: 100%;
    }

    .header {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    /* Mobile Mascot Positioning */
    .mascot-container {
        position: relative;
        top: auto;
        right: auto;
        margin: var(--spacing-sm) auto var(--spacing-md);
        text-align: center;
        width: auto;
    }

    .mascot-image {
        width: 160px;
        /* Slightly smaller for mobile */
        height: 160px;
    }

    .menu-section {
        padding: var(--spacing-lg);
        border-radius: 20px;
    }

    .menu-section::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 16px;
    }

    .cups-decoration {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .cup-body {
        width: 85px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 2.5rem;
    }

    .tagline::before,
    .tagline::after {
        display: none;
    }

    .menu-container {
        padding: var(--spacing-md);
    }

    .menu-section {
        padding: var(--spacing-md);
    }

    .sparkle {
        font-size: 1rem;
    }

    .new-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

    .bubbles-container,
    .sparkles-overlay,
    .mascot-container,
    .cups-decoration {
        display: none;
    }

    body {
        background: white;
    }

    .menu-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* ========================================
   STICKY NAVBAR
   ======================================== */
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 246, 233, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(139, 58, 58, 0.1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sticky-navbar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.sticky-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-display);
    color: var(--brick-red);
}

.sticky-logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.sticky-divider {
    color: var(--gold);
    font-weight: 300;
}

.sticky-tagline {
    font-size: 1.2rem;
    color: var(--navy);
}

/* Sticky CTA Button */
.sticky-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--deep-red) 100%);
    color: white;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 58, 58, 0.3);
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 58, 58, 0.4);
    background: linear-gradient(135deg, #A83A3A 0%, #762222 100%);
}

.cta-icon {
    font-size: 1.1em;
}

/* Mobile Tweaks for Sticky Navbar */
@media (max-width: 600px) {
    .sticky-content {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .sticky-logo {
        font-size: 0.9rem;
    }

    .sticky-tagline {
        display: none;
        /* Save space on mobile */
    }

    .sticky-divider {
        display: none;
    }

    .sticky-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}