/* ===================================
   Half Time 36 Bar and Grill - Styles
   Enhanced Visual Design & UX
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #d4a039;
    --primary-dark: #b8862e;
    --primary-light: #e8c06a;
    --secondary-color: #1a1a2e;
    --accent-color: #e63946;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --text-dark: #1a1a2e;
    --text-light: #f8f9fa;
    --text-muted: #5a6268; /* Darkened for better contrast (was #6c757d) */
    --bg-dark: #0f0f1a;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Background patterns */
    --pattern-dots: radial-gradient(circle, rgba(212, 160, 57, 0.05) 1px, transparent 1px);
    --pattern-grid: linear-gradient(rgba(212, 160, 57, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212, 160, 57, 0.03) 1px, transparent 1px);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Note: scroll-behavior: smooth removed from html to prevent scroll stuck issues on mobile.
   Smooth scrolling is handled by JavaScript for anchor links only. */

html {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    min-height: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Page load animation - scroll blocking removed for performance */

/* Popup/Modal scroll blocking removed for performance */

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
}

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

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

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

/* ================
   SKIP NAVIGATION (Accessibility)
   ================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ================
   FOCUS STATES (Accessibility)
   ================ */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ================
   UTILITY CLASSES
   ================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Fade-in animation utility */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ================
   BUTTONS
   ================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 48px; /* Touch-friendly tap target */
}

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

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 160, 57, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 57, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2a2a4e, #3a3a5e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 57, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 56px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
    min-height: 40px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #c82333);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    transform: translateY(-3px);
}

/* Button icon animation */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

/* ================
   SPECIAL OFFERS BANNER
   ================ */
.special-offers-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    flex: 1;
    overflow: hidden;
}

.offer-slider {
    position: relative;
    height: 24px;
}

.offer-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.offer-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.offer-slide i {
    color: var(--primary-color);
}

.offer-slide strong {
    color: var(--primary-color);
}

.banner-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    opacity: 0.7;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Adjust navbar position when banner is visible */
.navbar {
    top: 44px;
}

.special-offers-banner.hidden {
    display: none;
}

.special-offers-banner.hidden ~ .navbar {
    top: 0;
}

/* ================
   NAVIGATION
   ================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    /* backdrop-filter removed for scroll performance */
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-half {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo-36 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after {
    width: 100%;
}

/* Active state color change */
.nav-menu a:not(.btn).active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
}

/* Hamburger focus state for accessibility */
.nav-toggle:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile menu animation */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ================
   HERO SECTION
   ================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1920') center/cover no-repeat;
}

/* Parallax effect disabled for performance - was causing scroll freezing */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 26, 0.6) 0%,
        rgba(15, 15, 26, 0.7) 50%,
        rgba(15, 15, 26, 0.9) 100%
    );
}

/* Gradient overlay - animation disabled for performance */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 160, 57, 0.1) 0%, transparent 50%);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 80px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* Happy Hour Countdown */
.happy-hour-countdown {
    background: rgba(0, 0, 0, 0.4);
    /* backdrop-filter removed for scroll performance */
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(212, 160, 57, 0.3);
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-label i {
    font-size: 18px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--text-light);
    line-height: 1;
}

.time-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.time-separator {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--primary-color);
    line-height: 1;
}

.happy-hour-countdown .btn {
    margin-top: 5px;
}

@media (max-width: 480px) {
    .happy-hour-countdown {
        padding: 15px 20px;
    }

    .time-value {
        font-size: 28px;
    }

    .time-separator {
        font-size: 28px;
    }

    .time-block {
        min-width: 50px;
    }
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-light);
    font-size: 24px;
    opacity: 0.7;
    display: block;
    padding: 10px;
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================
   PAGE HEADER (Inner Pages)
   ================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--bg-dark);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern on page headers */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-dots);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* ================
   SECTION HEADERS
   ================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Decorative underline */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ================
   SECTION DIVIDERS
   ================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-divider i {
    padding: 0 20px;
    color: var(--primary-color);
    font-size: 24px;
}

/* ================
   TRUST BADGES
   ================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.trust-badge.family-owned i { color: #e63946; }
.trust-badge.local i { color: #28a745; }
.trust-badge.fresh i { color: #17a2b8; }

/* Open Now Indicator */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.open-status.open {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.open-status.closed {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.open-status .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ================
   PAYMENT ICONS
   ================ */
.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

.payment-methods span {
    font-size: 12px;
    color: var(--text-muted);
    margin-right: 5px;
}

.payment-methods i {
    font-size: 28px;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--text-dark);
    opacity: 1;
}

/* ================
   FEATURES SECTION
   ================ */
.features {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

/* Subtle background pattern */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-grid);
    background-size: 50px 50px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Card hover lift effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Decorative corner accent */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 160, 57, 0.1) 0%, transparent 50%);
    border-radius: var(--radius-lg) 0 0 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    font-size: 32px;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

/* Icon glow effect on hover */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 160, 57, 0.4);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Enhanced Features Grid */
.features-grid-enhanced {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card-enhanced {
    display: flex;
    flex-direction: column;
}

.feature-highlight {
    margin-top: auto;
    padding-top: 15px;
    font-size: 13px;
    color: var(--success-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-highlight i {
    font-size: 14px;
}

/* ================
   PLAY & WIN PROMO SECTION
   ================ */
.play-win-promo {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a4e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.play-win-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 160, 57, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.play-win-container {
    position: relative;
    z-index: 1;
}

.play-win-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.play-win-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e63946, #c82333);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.play-win-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-color);
    margin-bottom: 16px;
}

.play-win-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 500px;
}

.play-win-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.play-win-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.play-win-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.play-win-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.play-win-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    /* backdrop-filter removed for scroll performance */
    transition: var(--transition);
}

.play-win-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.play-win-feature-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.play-win-feature-card span {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .play-win-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .play-win-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .play-win-buttons {
        justify-content: center;
    }

    .play-win-features {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .play-win-features {
        grid-template-columns: 1fr;
        max-width: 250px;
    }

    .play-win-feature-card {
        padding: 20px;
    }
}

/* ================
   INTERACTIVE EXPERIENCE SECTION
   ================ */
.interactive-experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
}

.interactive-header h2,
.interactive-header p {
    color: var(--text-light);
}

.interactive-header p {
    color: var(--text-muted);
}

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.interactive-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.interactive-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.interactive-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-icon i {
    font-size: 32px;
    color: var(--text-dark);
}

.interactive-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.interactive-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.interactive-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.interactive-card:hover .interactive-link {
    gap: 12px;
}

@media (max-width: 768px) {
    .interactive-experience-section {
        padding: 60px 0;
    }

    .interactive-card {
        padding: 25px;
    }

    .interactive-icon {
        width: 60px;
        height: 60px;
    }

    .interactive-icon i {
        font-size: 24px;
    }
}

/* ================
   MENU PREVIEW SECTION
   ================ */
.menu-preview {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.menu-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 160, 57, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.menu-preview .section-header h2,
.menu-preview .section-header p {
    color: var(--text-light);
}

.menu-preview .section-header h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.menu-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

/* Image overlay gradient */
.menu-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

.menu-item-content {
    padding: 20px;
}

.menu-item-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.menu-item-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ================
   LOCATION & HOURS SECTION
   ================ */
.location-hours {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.location-hours::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-dots);
    background-size: 30px 30px;
    opacity: 0.3;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
}

.hours-card,
.location-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hours-card:hover,
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Decorative accent line */
.hours-card::before,
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.hours-card h3,
.location-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.hours-card h3 i,
.location-card h3 i {
    color: var(--primary-color);
}

.hours-list {
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.hours-row:hover {
    background: rgba(212, 160, 57, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: var(--radius);
}

.hours-row:last-child {
    border-bottom: none;
}

.kitchen-note {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card address {
    font-style: normal;
    margin-bottom: 20px;
}

.location-card address p {
    margin-bottom: 5px;
}

.location-card .phone {
    margin-top: 15px;
}

.location-card .phone a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-card .phone a:hover {
    color: var(--primary-dark);
}

/* ================
   MAP SECTION
   ================ */
.map-section {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
    z-index: 1;
    pointer-events: none;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

/* ================
   EVENTS CTA SECTION
   ================ */
.events-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.events-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.events-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.cta-buttons .btn-outline:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

/* ================
   TESTIMONIALS SECTION
   ================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-grid);
    background-size: 50px 50px;
    opacity: 0.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Quote icon */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-card .stars i {
    margin: 0 2px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.testimonial-author {
    color: var(--text-muted);
    font-weight: 600;
}

/* ================
   ANIMATED COUNTERS
   ================ */
.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--text-light);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ================
   BACK TO TOP BUTTON
   ================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(212, 160, 57, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 995;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.visible:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 160, 57, 0.5);
}

/* ================
   STICKY SIDEBAR (Quick Links)
   ================ */
.sticky-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-sidebar.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-sidebar a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: var(--radius);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sticky-sidebar a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.sticky-sidebar a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-left: 10px;
}

.sticky-sidebar a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ================
   LOADING SKELETON
   ================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-title {
    height: 28px;
    width: 40%;
    margin-bottom: 15px;
}

.skeleton-image {
    height: 200px;
    margin-bottom: 15px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ================
   IMAGE LAZY LOADING
   ================ */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* ================
   FOOTER
   ================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
}

/* Decorative top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Platform-specific hover colors for better brand recognition */
.social-links a.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-links a.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-links a.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.social-links a.yelp:hover {
    background: #D32323;
    color: white;
}

.footer-links h4,
.footer-contact h4,
.footer-order h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-order .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ================
   MENU PAGE STYLES
   ================ */

.menu-page {
    padding: 80px 0;
    position: relative;
}

.menu-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-dots);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.menu-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.menu-notice p {
    margin: 0;
    font-weight: 600;
}

.menu-notice a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.toast-menu-embed {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.toast-menu-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.toast-menu-embed h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.toast-menu-embed p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.menu-categories {
    margin-top: 60px;
    position: relative;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.menu-category h3 i {
    color: var(--primary-color);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: var(--shadow-lg);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

.menu-card .price {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.menu-card p {
    color: var(--text-muted);
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ================
   EVENTS PAGE
   ================ */

.events-page {
    padding: 80px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 30px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-date .month {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.event-date .year {
    font-size: 14px;
    opacity: 0.8;
}

.event-details {
    padding: 30px;
}

.event-details h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.event-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.event-details p {
    margin-bottom: 20px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================
   BOOK EVENT PAGE
   ================ */

.booking-page {
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.event-types {
    margin-bottom: 30px;
}

.event-types h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.event-types ul {
    list-style: none;
}

.event-types li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.event-types li:hover {
    padding-left: 10px;
}

.event-types li i {
    color: var(--primary-color);
}

.booking-form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.booking-form-container h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 160, 57, 0.15);
}

/* Form validation visual cues */
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: var(--danger-color);
}

input:valid:not(:placeholder-shown),
select:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--danger-color);
}

.form-group input:invalid:not(:placeholder-shown):focus,
.form-group select:invalid:not(:placeholder-shown):focus,
.form-group textarea:invalid:not(:placeholder-shown):focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

.form-group input:valid:not(:placeholder-shown):focus,
.form-group select:valid:not(:placeholder-shown):focus,
.form-group textarea:valid:not(:placeholder-shown):focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}

/* Select elements - valid state only when value selected */
.form-group select:required:invalid {
    border-color: var(--border-color);
}

.form-group select.touched:invalid {
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Full-width submit button for forms */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* ================
   GALLERY PAGE
   ================ */

.gallery-page {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery overlay with icon */
.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    color: white;
    font-size: 32px;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Touch device support for gallery */
@media (hover: none) {
    .gallery-item::after {
        opacity: 0.3;
    }
}

/* Intermediate breakpoint for gallery */
@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ================
   ABOUT PAGE
   ================ */

.about-page {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Decorative frame */
.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.values-section {
    background: var(--secondary-color);
    padding: 80px;
    border-radius: var(--radius-xl);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--pattern-dots);
    background-size: 20px 20px;
    opacity: 0.1;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
}

.value-item {
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-item p {
    opacity: 0.8;
    font-size: 14px;
}

/* ================
   CONTACT PAGE
   ================ */

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-muted);
}

.contact-item-text a {
    color: var(--primary-color);
}

.contact-form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.contact-form-container h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* ================
   SUCCESS MESSAGE
   ================ */

.success-message {
    display: none;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--success-color);
    animation: slideDown 0.5s ease;
}

.success-message.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-message i {
    font-size: 24px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================
   MOBILE MENU SLIDE ANIMATION
   ================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: var(--bg-dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        z-index: 999;
    }

    /* Mobile CTA button styling */
    .nav-menu .btn.btn-primary {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Staggered animation for menu items */
    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(10) { transition-delay: 0.55s; }
    .nav-menu.active li:nth-child(11) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(12) { transition-delay: 0.65s; }
    .nav-menu.active li:nth-child(13) { transition-delay: 0.7s; }
    .nav-menu.active li:nth-child(14) { transition-delay: 0.75s; }

    .nav-menu a {
        font-size: 18px;
        padding: 12px 0;
        display: block;
    }

    /* Mobile menu overlay */
    body.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

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

/* ================
   RESPONSIVE DESIGN
   ================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-container,
    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .event-card {
        grid-template-columns: 150px 1fr;
    }

    .sticky-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        flex-direction: row;
        gap: 10px;
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 40px 20px;
    }

    .trust-badges {
        justify-content: center;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }

    /* Hero parallax disabled on mobile for performance */
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 42px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Tighter spacing for forms on small screens */
    .form-group {
        margin-bottom: 15px;
    }

    .form-row {
        gap: 15px;
    }

    .booking-form-container,
    .catering-form-container {
        padding: 25px;
    }
}

/* ================
   PREFERS REDUCED MOTION
   ================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* ================
   HIGH CONTRAST MODE
   ================ */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .btn {
        border: 2px solid currentColor;
    }

    .feature-card,
    .menu-card,
    .testimonial-card,
    .hours-card,
    .location-card {
        border: 2px solid var(--border-color);
    }
}

/* ================
   PRINT STYLES
   ================ */
@media print {
    .navbar,
    .hero-scroll,
    .back-to-top,
    .sticky-sidebar,
    .social-links,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        background: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: black;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
}

/* ================
   LANDING PAGES STYLES
   ================ */

.landing-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    padding: 180px 0 100px;
}

.landing-content {
    padding: 80px 0;
}

.landing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.landing-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.landing-intro p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.landing-section {
    margin-bottom: 80px;
}

.landing-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.landing-section .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Sports Grid for Landing Pages */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sport-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.sport-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Serving Areas */
.serving-areas {
    background: var(--secondary-color);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-light);
}

.serving-areas h2 {
    color: var(--text-light);
}

.serving-areas p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-tag {
    background: rgba(212, 160, 57, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Landing CTA */
.landing-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px;
    border-radius: var(--radius-lg);
}

.landing-cta h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.landing-cta p {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 30px;
}

.landing-cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.landing-cta .cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Sides Grid */
.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.side-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.side-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.side-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Featured Menu Card */
.menu-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    position: relative;
}

.menu-card.featured h4 {
    color: var(--text-dark);
}

.menu-card.featured p {
    color: rgba(0, 0, 0, 0.7);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ================
   SOCIAL PROOF SECTION
   ================ */

.social-proof-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.social-proof-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-proof-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.social-proof-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Review Platforms */
.review-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-platform:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.platform-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.platform-logo.google {
    color: #4285F4;
}

.platform-logo.yelp {
    color: #D32323;
}

.platform-logo.facebook {
    color: #1877F2;
}

.platform-info {
    text-align: left;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-rating .stars {
    color: var(--primary-color);
}

.platform-rating span {
    font-weight: 700;
    font-size: 18px;
}

.platform-reviews {
    font-size: 13px;
    color: var(--text-muted);
}

/* As Seen On */
.as-seen-on {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
}

.as-seen-on h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.media-logo {
    opacity: 0.6;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.media-logo:hover {
    opacity: 1;
}

/* Awards Section */
.awards-section {
    text-align: center;
}

.awards-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.awards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.award-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 180px;
}

.award-badge i {
    font-size: 40px;
    color: var(--primary-color);
}

.award-badge span {
    font-weight: 700;
    text-align: center;
}

.award-badge small {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================
   FAQ SECTION
   ================ */

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Landing Pages Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 140px 0 60px;
    }

    .landing-intro h2 {
        font-size: 32px;
    }

    .serving-areas {
        padding: 40px 20px;
    }

    .landing-cta {
        padding: 40px 20px;
    }

    .landing-cta h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-platforms {
        flex-direction: column;
        align-items: center;
    }
}

/* ================
   TRUST BADGES SECTION
   ================ */

.trust-badges-section {
    padding: 40px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

/* Testimonial Source Badge */
.testimonial-source {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.testimonial-source i {
    margin-right: 5px;
}

/* ================
   PAGE LOAD TRANSITIONS
   ================ */

/* Loading overlay disabled - was causing scroll issues */

/* Page transition fade in */
/* pageLoad animation disabled - was causing scroll issues */

/* ================
   MOBILE PULL-TO-REFRESH FEEL
   ================ */
/* Note: overscroll-behavior removed as it was causing scroll issues on some devices */

/* ================
   TOUCH-FRIENDLY ENHANCEMENTS
   ================ */

@media (pointer: coarse) {
    /* Larger tap targets for touch devices */
    .btn {
        min-height: 52px;
        padding: 14px 28px;
    }

    .btn-sm {
        min-height: 44px;
        padding: 12px 20px;
    }

    .nav-menu a {
        padding: 14px 8px;
        min-height: 44px;
    }

    .social-links a {
        width: 48px;
        height: 48px;
        min-width: 44px;
        min-height: 44px;
    }

    /* Ensure form elements have adequate touch targets */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        min-height: 44px;
    }

    /* Ensure clickable items have adequate touch targets */
    .faq-question {
        min-height: 44px;
    }

    .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects that don't work well on touch */
    .feature-card:hover,
    .menu-item:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* ================
   DECORATIVE ELEMENTS
   ================ */

/* Decorative line after section headers */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Corner decorations for cards */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(-135deg, rgba(212, 160, 57, 0.05) 0%, transparent 50%);
    border-radius: 0 0 var(--radius-lg) 0;
}

/* ================
   IMPROVED MOBILE IMAGES
   ================ */

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding-top: 80px; /* Slightly less on mobile */
    }

    .menu-item-image {
        height: 180px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Optimize image loading for mobile */
    img {
        content-visibility: auto;
    }
}

/* ================
   COLOR CONTRAST IMPROVEMENTS
   ================ */

/* Ensure sufficient contrast for text */
.text-muted {
    color: #555;
}

/* Better link visibility */
a:not(.btn):hover {
    color: var(--primary-dark);
}

/* Form placeholder contrast */
::placeholder {
    color: #777;
    opacity: 1;
}

/* ================
   ADDITIONAL ANIMATIONS
   ================ */

/* Button shine effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::after {
    animation: shine 0.5s ease forwards;
}

@keyframes shine {
    from {
        left: -50%;
        opacity: 1;
    }
    to {
        left: 150%;
        opacity: 0;
    }
}

/* Card float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
}

/* Reduced motion: disable float animation */
@media (prefers-reduced-motion: reduce) {
    .feature-icon {
        animation: none;
    }
}

/* ================
   SPECIALS PAGE STYLES
   ================ */

.specials-page {
    padding: 80px 0;
}

.todays-special {
    background: linear-gradient(135deg, var(--accent-color), #c82333);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.todays-special-badge {
    background: white;
    color: var(--accent-color);
    padding: 15px 25px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.todays-special-content h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.todays-special-content p {
    opacity: 0.9;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.special-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.special-day-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.special-day-badge.monday { background: linear-gradient(135deg, #667eea, #764ba2); }
.special-day-badge.tuesday { background: linear-gradient(135deg, #f093fb, #f5576c); }
.special-day-badge.wednesday { background: linear-gradient(135deg, #4facfe, #00f2fe); color: var(--text-dark); }
.special-day-badge.thursday { background: linear-gradient(135deg, #43e97b, #38f9d7); color: var(--text-dark); }
.special-day-badge.friday { background: linear-gradient(135deg, #fa709a, #fee140); color: var(--text-dark); }
.special-day-badge.weekend { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--text-dark); }

.special-image {
    height: 0;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.special-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.special-content {
    padding: 25px;
}

.special-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.special-content h3 i {
    color: var(--primary-color);
}

.special-deals {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.deal-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.deal-item:last-child {
    border-bottom: none;
}

.deal-name {
    flex: 1;
    min-width: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.deal-price {
    flex-shrink: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.special-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-schedule-preview {
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
}

.game-schedule-preview h4 {
    margin-bottom: 10px;
}

.game-schedule-preview p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.weekend-card {
    grid-column: span 2;
}

.happy-hour-banner {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 50px 0;
}

.happy-hour-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.happy-hour-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-dark);
}

.happy-hour-text {
    flex: 1;
    color: white;
}

.happy-hour-text h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.happy-hour-text p {
    opacity: 0.8;
}

.specials-cta {
    text-align: center;
    margin-top: 60px;
}

.specials-cta h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.specials-cta p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ================
   EVENTS PAGE ENHANCEMENTS
   ================ */

.event-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.featured-event {
    border: 3px solid var(--primary-color);
    position: relative;
}

.event-featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-specials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.event-special-tag {
    background: rgba(212, 160, 57, 0.1);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rsvp-btn {
    position: relative;
}

.rsvp-count {
    display: block;
    font-size: 11px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.8;
}

/* Music Schedule Section */
.music-schedule-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.music-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.music-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.music-date {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
    min-width: 70px;
}

.music-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.music-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.music-time {
    margin-left: auto;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Watch Party Section */
.watch-party-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.sports-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.sport-category {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sport-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sport-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: white;
}

.sport-icon.nfl { background: linear-gradient(135deg, #013369, #D50A0A); }
.sport-icon.nba { background: linear-gradient(135deg, #1D428A, #C8102E); }
.sport-icon.ufc { background: linear-gradient(135deg, #333, #D20A0A); }
.sport-icon.ncaa { background: linear-gradient(135deg, #154734, #BF5700); }
.sport-icon.mlb { background: linear-gradient(135deg, #002D62, #EB6E1F); }
.sport-icon.boxing { background: linear-gradient(135deg, #8B0000, #FFD700); }

.sport-category h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.sport-category p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.next-game {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ================
   CATERING PAGE STYLES
   ================ */

.catering-page {
    padding: 80px 0;
}

.catering-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.intro-feature i {
    color: var(--success-color);
    font-size: 18px;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.featured-package {
    border: 3px solid var(--primary-color);
}

.package-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.package-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.package-header h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.package-serves {
    color: var(--text-muted);
    font-size: 14px;
}

.package-price {
    text-align: center;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.package-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--primary-color);
}

.package-price .price-note {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
}

.package-includes h4,
.package-options h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-includes ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-includes li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.package-includes li i {
    color: var(--success-color);
    margin-top: 3px;
}

.package-options {
    margin-bottom: 20px;
}

.package-options p {
    color: var(--text-muted);
    font-size: 14px;
}

.package-select {
    margin-top: auto;
    width: 100%;
}

.custom-package {
    background: var(--secondary-color);
    color: white;
}

.custom-package .package-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.custom-package .package-price .price {
    color: var(--primary-color);
}

.custom-package .package-includes h4,
.custom-package .package-options h4 {
    color: white;
}

.custom-package .package-options p {
    color: rgba(255,255,255,0.7);
}

/* A La Carte Menu */
.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.alacarte-category {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.alacarte-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.alacarte-category h3 i {
    color: var(--primary-color);
}

.alacarte-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.alacarte-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--text-dark);
}

.item-price {
    color: var(--primary-color);
    font-weight: 700;
}

/* Delivery Info */
.delivery-info-section {
    margin-bottom: 60px;
}

.delivery-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 36px;
    color: var(--text-dark);
}

.delivery-card > h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.delivery-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.delivery-item {
    display: flex;
    gap: 15px;
}

.delivery-item > i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 3px;
}

.delivery-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.delivery-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Catering Form */
.catering-form-section {
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.catering-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* ================
   REVIEWS PAGE STYLES
   ================ */

.reviews-page {
    padding: 80px 0;
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.rating-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 24px;
    margin: 10px 0;
}

.rating-count {
    color: var(--text-muted);
    font-size: 14px;
}

.rating-breakdown {
    padding: 0 30px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
    font-size: 14px;
    color: var(--text-muted);
}

.bar-container {
    flex: 1;
    height: 10px;
    background: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
}

.rating-percent {
    width: 40px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
}

.review-platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.platform-btn.google {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.platform-btn.google:hover {
    background: #4285F4;
    color: white;
}

.platform-btn.yelp {
    background: rgba(211, 35, 35, 0.1);
    color: #D32323;
}

.platform-btn.yelp:hover {
    background: #D32323;
    color: white;
}

.platform-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.platform-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-card.featured-review {
    border: 2px solid var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    font-size: 45px;
    color: var(--text-muted);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-stars {
    color: var(--primary-color);
}

.review-date {
    color: var(--text-muted);
    font-size: 13px;
}

.review-source {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.review-source.google {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.review-source.yelp {
    background: rgba(211, 35, 35, 0.1);
    color: #D32323;
}

.review-source.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.review-content {
    margin-bottom: 15px;
}

.review-content p {
    color: var(--text-dark);
    line-height: 1.7;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.review-tag i {
    color: var(--primary-color);
}

/* Photo Reviews */
.photo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.photo-review {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.photo-review img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-review:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.photo-review:hover .photo-overlay {
    opacity: 1;
}

.photo-caption {
    color: white;
    font-size: 14px;
    font-style: italic;
}

.share-photo-cta {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.share-photo-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Submit Review Section */
.submit-review-section {
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.review-submit-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-submit-options {
    text-align: center;
    margin-bottom: 40px;
}

.review-submit-options h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.review-platform-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.review-platform-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-platform-btn i {
    font-size: 36px;
}

.review-platform-btn span {
    font-weight: 600;
}

.review-platform-btn.google { color: #4285F4; }
.review-platform-btn.yelp { color: #D32323; }
.review-platform-btn.facebook { color: #1877F2; }

.review-form-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.review-form-divider::before,
.review-form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border-color);
}

.review-form-divider::before { left: 0; }
.review-form-divider::after { right: 0; }

.review-form-divider span {
    background: var(--bg-light);
    padding: 0 20px;
    color: var(--text-muted);
    font-weight: 600;
}

.review-form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-form-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 32px;
    color: var(--border-color);
    transition: var(--transition);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--primary-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover {
    background: rgba(212, 160, 57, 0.1);
}

.checkbox-item input {
    width: 18px;
    height: 18px;
}

.checkbox-item span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.checkbox-item i {
    color: var(--primary-color);
}

/* ================
   FLOATING ORDER BUTTON
   ================ */
.floating-order-btn {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 160, 57, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.floating-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 57, 0.5);
}

.floating-order-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .floating-order-btn span {
        display: none;
    }

    .floating-order-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ================
   CLICK TO CALL BUTTON
   ================ */

.click-to-call {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 994;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--success-color), #1e7e34);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.click-to-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
}

.click-to-call i {
    font-size: 18px;
    animation: phoneRing 2s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-15deg); }
    10%, 20% { transform: rotate(15deg); }
    25% { transform: rotate(0deg); }
}

/* ================
   CHAT WIDGET
   ================ */

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 996;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(212, 160, 57, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 160, 57, 0.5);
}

.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.chat-widget.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-body {
    padding: 20px;
}

.chat-body > p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.chat-social {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.chat-social p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.chat-social a {
    color: #0084FF;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================
   SOCIAL FEED PLACEHOLDER
   ================ */
/* Note: Main .social-feed-section styles defined in LIVE SOCIAL FEED SECTION */

.social-feed-placeholder {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.social-feed-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-feed-placeholder h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.social-feed-placeholder p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ================
   RESPONSIVE ADJUSTMENTS FOR NEW FEATURES
   ================ */

/* Fix weekend card grid span at 900px */
@media (max-width: 900px) {
    .weekend-card {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .rating-overview {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rating-breakdown {
        padding: 30px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .review-platforms {
        flex-direction: row;
        justify-content: center;
    }

    .catering-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .todays-special {
        flex-direction: column;
        text-align: center;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .happy-hour-content {
        flex-direction: column;
        text-align: center;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-featured-badge {
        top: 10px;
        right: 10px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-platform-buttons {
        flex-direction: column;
        align-items: center;
    }

    .click-to-call span {
        display: none;
    }

    .click-to-call {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .chat-window {
        width: calc(100% - 40px);
        max-width: 350px;
        right: 20px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .star-rating label {
        font-size: 28px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .photo-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Fix overflow on small screens */
    .specials-grid {
        grid-template-columns: 1fr;
    }

    .todays-special-badge {
        white-space: normal;
        text-align: center;
    }

    /* Ensure container padding doesn't cause overflow */
    .container {
        padding: 0 15px;
    }

    /* Fix table overflow */
    table {
        display: block;
        overflow-x: auto;
    }

    /* Ensure images don't overflow */
    img, video, iframe {
        max-width: 100%;
    }

    /* Fix long text overflow */
    h1, h2, h3, h4, h5, h6, p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* ===================================
   VIRAL SOCIAL & ENGAGEMENT FEATURES
   =================================== */

/* ================
   SMS/TEXT CLUB SECTION
   ================ */
.sms-club-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a4e 100%);
    position: relative;
    overflow: hidden;
}

.sms-club-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 160, 57, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sms-club-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sms-club-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    width: 320px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

.phone-screen {
    background: linear-gradient(180deg, #e5e5ea 0%, #f5f5f5 100%);
    border-radius: 30px;
    padding: 50px 15px 20px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sms-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageSlide 0.5s ease forwards;
    opacity: 0;
}

.sms-message:nth-child(1) { animation-delay: 0.2s; }
.sms-message:nth-child(2) { animation-delay: 0.6s; }
.sms-message:nth-child(3) { animation-delay: 1s; }
.sms-message:nth-child(4) { animation-delay: 1.4s; }

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

.sms-message.incoming {
    background: #fff;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sms-message.incoming .sender {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.sms-message.outgoing {
    background: #007AFF;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.sms-message.deal {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    animation-delay: 1.8s;
}

.sms-club-content {
    color: var(--text-light);
}

.sms-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 160, 57, 0.2);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sms-badge i {
    color: var(--primary-color);
}

.sms-club-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.sms-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.sms-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.sms-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sms-benefit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.sms-benefit i {
    color: var(--primary-color);
    font-size: 18px;
}

.sms-benefit span {
    font-size: 14px;
}

.sms-cta-box {
    background: rgba(212, 160, 57, 0.15);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.sms-keyword {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.keyword-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.keyword-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--primary-color);
    background: var(--text-dark);
    padding: 5px 20px;
    border-radius: var(--radius);
}

.keyword-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--text-light);
}

.sms-note {
    font-size: 11px;
    opacity: 0.6;
}

.sms-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
}

.sms-counter i {
    font-size: 18px;
}

/* ================
   LOYALTY PROGRAM SECTION
   ================ */
.loyalty-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.loyalty-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.loyalty-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.loyalty-content {
    color: var(--text-dark);
}

.loyalty-badge {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.loyalty-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.loyalty-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.loyalty-benefits {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.loyalty-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.loyalty-benefit:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.loyalty-benefit i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 40px;
    text-align: center;
}

.loyalty-benefit strong {
    display: block;
    font-size: 16px;
}

.loyalty-benefit span {
    font-size: 13px;
    opacity: 0.8;
}

.loyalty-btn {
    background: var(--secondary-color) !important;
    color: var(--text-light) !important;
}

.loyalty-btn:hover {
    background: #2a2a4e !important;
}

.loyalty-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loyalty-card {
    width: 320px;
    background: linear-gradient(145deg, var(--secondary-color) 0%, #2a2a4e 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.loyalty-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.loyalty-card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loyalty-card-header .logo-half {
    font-size: 18px;
}

.loyalty-card-header .logo-36 {
    font-size: 24px;
}

.vip-badge {
    margin-left: auto;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.loyalty-card-body {
    padding: 25px;
}

.points-display {
    text-align: center;
    margin-bottom: 25px;
}

.points-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.points-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--primary-color);
    line-height: 1;
}

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

.rewards-tier > span:first-child {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.tier-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.tier-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.tier-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .loyalty-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .loyalty-badge {
        margin: 0 auto 20px;
    }

    .loyalty-card {
        transform: rotate(0deg);
    }
}

/* ================
   NEWSLETTER SECTION
   ================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-dark);
    margin: 0 auto 25px;
}

.newsletter-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-container > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-inputs .input-group {
    position: relative;
}

.newsletter-inputs .input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.newsletter-inputs input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-consent {
    text-align: left;
    margin-bottom: 15px;
}

.newsletter-consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.newsletter-success {
    display: none;
    padding: 20px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--radius);
    color: var(--success-color);
}

.newsletter-success.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-success i {
    font-size: 24px;
}

.newsletter-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .newsletter-inputs {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        padding: 30px 20px;
    }
}

/* ================
   BIRTHDAY CLUB SECTION
   ================ */
.birthday-club-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.birthday-club-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 160, 57, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.birthday-club-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.birthday-content {
    padding-right: 20px;
}

.birthday-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.birthday-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.birthday-tagline {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.birthday-tagline .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.birthday-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.birthday-perk {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.birthday-perk:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.perk-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.perk-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.perk-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Referral Program Box */
.referral-program {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--text-light);
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.referral-header i {
    color: var(--primary-color);
    font-size: 24px;
}

.referral-header h3 {
    font-size: 24px;
    color: var(--text-light);
}

.referral-program > p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.referral-progress-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-step i,
.progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.progress-step.completed i {
    background: var(--success-color);
    color: white;
}

.progress-step .step-number {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.progress-step span:last-child {
    font-size: 11px;
    opacity: 0.7;
}

.progress-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    color: var(--text-dark);
}

.progress-reward i {
    font-size: 24px;
}

.progress-reward span {
    font-size: 12px;
    font-weight: 700;
}

/* Birthday Form */
.birthday-form-container {
    position: relative;
}

.birthday-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.birthday-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.birthday-form h3 i {
    color: var(--primary-color);
}

.birthday-form .form-group {
    margin-bottom: 20px;
}

.birthday-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.birthday-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.birthday-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 160, 57, 0.1);
}

.referral-code-group {
    background: rgba(212, 160, 57, 0.1);
    padding: 15px;
    border-radius: var(--radius);
    margin-top: 10px;
}

.birthday-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Birthday Success State */
.birthday-success {
    display: none;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.birthday-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.birthday-form.hidden {
    display: none;
}

.success-animation {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-animation i {
    font-size: 36px;
    color: white;
}

.birthday-success h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.birthday-success > p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.share-referral {
    background: rgba(212, 160, 57, 0.1);
    padding: 25px;
    border-radius: var(--radius);
}

.share-referral > p {
    font-size: 14px;
    margin-bottom: 10px;
}

.referral-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.referral-code-display span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    background: var(--bg-card);
    padding: 10px 25px;
    border-radius: var(--radius);
    border: 2px dashed var(--primary-color);
}

.referral-code-display .copy-btn {
    background: var(--primary-color);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.referral-code-display .copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.sms { background: var(--success-color); }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: var(--text-muted); }

/* ================
   CHALLENGE A FRIEND SECTION
   ================ */
.challenge-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.challenge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 57, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.challenge-section .section-header h2,
.challenge-section .section-header p {
    color: var(--text-light);
}

.challenge-section .section-header h2 i {
    color: var(--primary-color);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.challenge-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.challenge-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--text-dark);
    transition: var(--transition);
}

.challenge-badge.hot {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.challenge-badge.spicy {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.challenge-badge.team {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.challenge-card:hover .challenge-badge {
    transform: scale(1.1) rotate(10deg);
}

.challenge-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.challenge-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}

.challenge-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.challenge-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.challenge-details i {
    color: var(--primary-color);
}

.challenge-prize {
    background: rgba(212, 160, 57, 0.1);
    padding: 12px 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.challenge-prize i {
    color: var(--primary-color);
}

.challenge-btn {
    width: 100%;
}

/* Challenge Leaderboard */
.challenge-leaderboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.challenge-leaderboard h3 {
    color: var(--text-light);
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.challenge-leaderboard h3 i {
    color: var(--primary-color);
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: var(--text-light);
    transition: var(--transition);
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.leaderboard-item .rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.leaderboard-item.gold .rank {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: var(--text-dark);
}

.leaderboard-item.silver .rank {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: var(--text-dark);
}

.leaderboard-item.bronze .rank {
    background: linear-gradient(135deg, #cd7f32, #b5651d);
    color: white;
}

.leaderboard-item .name {
    font-weight: 600;
    flex: 1;
}

.leaderboard-item .achievement {
    font-size: 13px;
    opacity: 0.7;
}

.leaderboard-item i {
    font-size: 20px;
}

.leaderboard-item.gold i { color: #ffd700; }
.leaderboard-item.silver i { color: #c0c0c0; }
.leaderboard-item.bronze i { color: #cd7f32; }

/* Challenge Modal */
.challenge-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.challenge-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.challenge-modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    padding: 40px 30px;
    text-align: center;
    color: var(--text-light);
}

.modal-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--text-dark);
}

.modal-header h2 {
    font-size: 28px;
    color: var(--text-light);
}

.modal-body {
    padding: 30px;
}

.modal-body > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.challenge-form .form-group {
    margin-bottom: 20px;
}

.challenge-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.challenge-form input,
.challenge-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.challenge-form input:focus,
.challenge-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.challenge-form textarea {
    resize: vertical;
    min-height: 80px;
}

.challenge-form button {
    width: 100%;
}

/* Challenge Success State */
.modal-success {
    display: none;
    padding: 40px 30px;
    text-align: center;
}

.modal-success.show {
    display: block;
}

.modal-body.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.modal-success h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-success > p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.share-challenge p {
    font-size: 14px;
    margin-bottom: 15px;
}

.share-challenge .share-buttons {
    gap: 10px;
}

.share-challenge .share-btn {
    width: auto;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    gap: 8px;
}

/* ================
   LIVE SOCIAL FEED SECTION
   ================ */
.social-feed-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.social-feed-section .section-header h2 i {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.social-post-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.social-post-card.featured {
    border: 2px solid var(--primary-color);
}

.post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.post-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.social-post-card:hover .post-image::before {
    opacity: 1;
}

.post-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.post-overlay i.fa-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-overlay i.fa-facebook {
    color: #1877f2;
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
}

.social-post-card:hover .video-indicator {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    color: var(--text-dark);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content {
    padding: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-user {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
}

.post-time {
    font-size: 12px;
    color: var(--text-muted);
}

.post-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hashtag {
    color: var(--primary-dark);
    font-weight: 600;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-stats i {
    color: var(--accent-color);
}

/* Social CTA */
.social-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.social-cta-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.social-cta-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.social-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.photo-upload-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upload-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.photo-upload-cta p {
    font-size: 14px;
}

.photo-upload-cta a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ================
   RESPONSIVE - VIRAL FEATURES
   ================ */
@media (max-width: 1024px) {
    .sms-club-container,
    .birthday-club-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sms-club-visual {
        order: -1;
    }

    .phone-mockup {
        transform: scale(0.9);
    }

    .birthday-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .sms-club-section,
    .birthday-club-section,
    .challenge-section,
    .social-feed-section {
        padding: 60px 0;
    }

    .sms-club-content h2 {
        font-size: 36px;
    }

    .sms-benefits {
        grid-template-columns: 1fr;
    }

    .keyword-value,
    .keyword-number {
        font-size: 32px;
    }

    .birthday-content h2 {
        font-size: 32px;
    }

    .referral-progress-demo {
        flex-wrap: wrap;
        justify-content: center;
    }

    .birthday-form {
        padding: 25px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .challenge-leaderboard {
        padding: 25px;
    }

    .social-feed-grid {
        grid-template-columns: 1fr;
    }

    .social-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .social-cta-buttons {
        justify-content: center;
    }

    .photo-upload-cta {
        flex-direction: column;
        text-align: center;
    }

    .challenge-modal {
        margin: 10px;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 280px;
        transform: scale(0.85);
    }

    .phone-screen {
        min-height: 380px;
    }

    .sms-message {
        font-size: 12px;
        padding: 10px 12px;
    }

    .referral-code-display span {
        font-size: 24px;
        padding: 8px 15px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .leaderboard-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .leaderboard-item .achievement {
        width: 100%;
        text-align: left;
        padding-left: 45px;
    }
}

/* ================
   WEATHER-BASED SPECIALS
   ================ */
.weather-specials-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.weather-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 30px 40px;
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.weather-banner.hot {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.weather-banner.cold {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.weather-banner.rainy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.weather-banner.nice {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.weather-icon {
    font-size: 60px;
    opacity: 0.9;
    animation: weatherPulse 2s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.weather-content {
    flex: 1;
}

.weather-temp {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weather-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.weather-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* ================
   LIVE SPORTS SCHEDULE
   ================ */
.live-sports-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.live-sports-section .section-header h2,
.live-sports-section .section-header p {
    color: var(--text-light);
}

.sports-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.sport-filter {
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sport-filter:hover,
.sport-filter.active {
    background: var(--primary-color);
    color: var(--text-dark);
}

.sports-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition);
}

.game-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-league {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.game-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.game-teams .team {
    text-align: center;
    flex: 1;
}

.team-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.team-record {
    font-size: 13px;
    opacity: 0.7;
}

.game-teams .vs {
    padding: 0 15px;
    font-size: 14px;
    opacity: 0.5;
}

.game-info {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
    font-size: 14px;
}

.game-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

.watch-btn {
    width: 100%;
    justify-content: center;
}

.sports-cta {
    margin-top: 40px;
}

.sports-cta p {
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Live Sports - Loading & States */
.games-loading,
.games-error,
.no-games,
.no-games-filtered {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.games-loading i,
.games-error i,
.no-games i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.games-loading p,
.games-error p,
.no-games p {
    font-size: 18px;
    margin-bottom: 8px;
}

.games-error .subtext,
.no-games .subtext {
    font-size: 14px;
    opacity: 0.6;
}

.no-games-filtered {
    padding: 40px 20px;
    opacity: 0.7;
}

/* Live Game Indicator */
.game-card.game-live {
    border-color: var(--error-color);
    box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
}

.game-card.game-live .game-league {
    background: var(--error-color);
    color: white;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.game-card.game-live .game-time {
    color: var(--error-color);
    font-weight: 700;
}

/* Final Game Styling */
.game-card.game-final {
    opacity: 0.8;
}

.game-card.game-final .game-time {
    color: var(--text-muted);
}

/* Team Logos */
.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Team Scores */
.team-score {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.game-card.game-live .team-score {
    color: var(--error-color);
}

/* ================
   LOCAL EVENTS CALENDAR
   ================ */
.local-events-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.local-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.local-event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.local-event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.event-date .day {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.event-details p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-details p i {
    color: var(--primary-color);
    width: 14px;
}

/* Featured Event */
.local-event-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 160, 57, 0.2);
}

.local-event-card.featured .event-date {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* No Events Message */
.no-events-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-events-message i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: var(--primary-color);
}

.no-events-message p {
    font-size: 18px;
    margin-bottom: 8px;
}

.no-events-message .subtext {
    font-size: 14px;
    opacity: 0.7;
}

/* ================
   AS SEEN ON - ENHANCED
   ================ */
.as-seen-on.enhanced {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.media-badge {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.media-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.media-badge i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.media-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.media-quote {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.third-party-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
    background: rgba(0,0,0,0.02);
    border-radius: var(--radius-lg);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.badge-item span {
    font-weight: 600;
    font-size: 14px;
}

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

.badge-rating span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.mini-stars {
    font-size: 10px;
    color: var(--primary-color);
}

/* ================
   USER-GENERATED CONTENT HUB
   ================ */
.ugc-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ugc-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.ugc-photo {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.ugc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.ugc-photo:hover .ugc-overlay {
    opacity: 1;
}

.ugc-username {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.ugc-overlay p {
    font-size: 13px;
    margin-bottom: 10px;
    font-style: italic;
}

.ugc-likes {
    font-size: 13px;
}

.ugc-likes i {
    color: #e74c3c;
}

.ugc-submit-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ugc-submit-content {
    text-align: center;
    color: var(--text-dark);
}

.ugc-submit-content i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.ugc-submit-content span {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.ugc-submit-content p {
    font-size: 14px;
    opacity: 0.8;
}

.ugc-submit-section {
    max-width: 600px;
    margin: 0 auto 50px;
}

.ugc-submit-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ugc-submit-container h3 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ugc-submit-container h3 i {
    color: var(--primary-color);
}

.ugc-submit-container > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.ugc-form .form-group {
    margin-bottom: 20px;
}

.ugc-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.ugc-form input,
.ugc-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.ugc-form input:focus,
.ugc-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.ugc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ugc-form .consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-muted);
}

.ugc-form .consent input {
    width: auto;
    margin-top: 3px;
}

.ugc-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.ugc-success.show {
    display: block;
}

.ugc-success i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.ugc-success h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.ugc-social-cta {
    text-align: center;
}

.ugc-social-cta p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.ugc-social-cta .social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ugc-social-cta .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.ugc-social-cta .social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ugc-social-cta .social-btn.facebook {
    background: #1877f2;
}

.ugc-social-cta .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ================
   BLOG PREVIEW SECTION
   ================ */
.blog-preview-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.blog-preview-section .section-header h2,
.blog-preview-section .section-header p {
    color: var(--text-light);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-preview-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-preview-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-preview-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-preview-content {
    padding: 25px;
    color: var(--text-dark);
}

.blog-preview-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-preview-content h3 a {
    color: var(--text-dark);
}

.blog-preview-content h3 a:hover {
    color: var(--primary-color);
}

.blog-preview-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.blog-preview-meta span {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-preview-meta .read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-preview-meta .read-more:hover {
    gap: 10px;
}

/* ================
   RESPONSIVE - NEW SECTIONS
   ================ */
@media (max-width: 768px) {
    .weather-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .weather-icon {
        font-size: 48px;
    }

    .weather-content h3 {
        font-size: 22px;
    }

    .sports-schedule {
        grid-template-columns: 1fr;
    }

    .game-teams {
        flex-direction: column;
        gap: 10px;
    }

    .game-teams .vs {
        padding: 10px 0;
    }

    .local-events-grid {
        grid-template-columns: 1fr;
    }

    .local-event-card {
        flex-direction: column;
        text-align: center;
    }

    .ugc-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ugc-form-row {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .media-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .third-party-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   EVENTS PAGE FIXES
   =================================== */

/* Events grid with proper grid-template-columns */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 600px), 1fr));
    gap: 30px;
}

/* Featured event badge overflow fix */
.featured-event {
    overflow: visible;
}

/* Filter button focus state */
.filter-btn:focus,
.filter-btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 160, 57, 0.2);
}

/* Event date sizing fix for multi-character dates */
.event-date {
    min-width: 140px;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 42px;
    white-space: nowrap;
    min-width: fit-content;
}

/* Event card text overflow fix */
.event-details h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-details p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-special-tag {
    white-space: nowrap;
}

/* Events CTA section styling (moved from inline) */
.events-cta {
    margin-top: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a4e);
    padding: 50px;
    text-align: center;
    color: var(--text-light);
}

.events-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.events-cta .cta-content p {
    margin-bottom: 10px;
}

.events-cta .cta-time {
    font-size: 24px;
    margin-bottom: 10px;
}

.events-cta .btn {
    margin-top: 20px;
}

/* Book event CTA styling (moved from inline) */
.book-event-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.book-event-cta p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* ===================================
   SPECIALS PAGE FIXES
   =================================== */

/* Specials grid minmax fix for mobile */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

/* Weekend card span fix */
.weekend-card {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .weekend-card {
        grid-column: span 1;
    }
}

/* Deal item layout fix */
.deal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    gap: 15px;
    flex-wrap: wrap;
}

.deal-item:last-child {
    border-bottom: none;
}

.deal-name {
    flex: 1;
    min-width: 0;
    color: var(--text-dark);
    font-weight: 500;
    word-wrap: break-word;
}

.deal-price {
    flex-shrink: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Chat widget button styling (moved from inline) */
.chat-body .btn {
    width: 100%;
}

.chat-body .btn.btn-primary {
    margin-top: 15px;
}

.chat-body .btn.btn-secondary {
    margin-top: 10px;
}

/* ===================================
   RESPONSIVE FIXES FOR EVENTS & SPECIALS
   =================================== */

@media (max-width: 768px) {
    /* Events grid single column on mobile */
    .events-grid {
        grid-template-columns: 1fr;
    }

    /* Specials grid single column on mobile */
    .specials-grid {
        grid-template-columns: 1fr;
    }

    /* Event date responsive */
    .event-date {
        min-width: auto;
        padding: 20px;
    }

    .event-date .day {
        font-size: 36px;
    }

    /* Events CTA responsive */
    .events-cta {
        padding: 30px 20px;
    }

    .events-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    /* Event date extra small screens */
    .event-date .day {
        font-size: 32px;
    }

    .event-date .month {
        font-size: 14px;
    }

    /* Deal items stack on very small screens */
    .deal-item {
        flex-wrap: wrap;
    }
}
