/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #FBF9F6;
    font-size: 16px; /* Base font size for consistency */
}

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

/* Colors */
:root {
    --primary: #E67E22;
    --secondary: #8B4513;
    --secondary-light: #A0522D;
    --bg-light: #FBF9F6;
    --bg-medium: #E8E4DF;
    --accent: #D2691E;
}

/* Typography - Consistent sizing */
h1, h2, h3, h4 { 
    color: var(--secondary); 
    font-weight: 700; 
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
p { font-size: 16px; line-height: 1.6; }
a { text-decoration: none; }

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for items */
.scroll-animate-item:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate-item:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate-item:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate-item:nth-child(4) { transition-delay: 0.4s; }

/* Header & Nav */
.header {
    background: var(--bg-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

/* Desktop logo - hide on mobile */
.logo {
    display: block;
}

.logo-img { height: 50px; width: auto; }
.logo-img.white { filter: brightness(0) invert(1); }

.desktop-nav { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}
.nav-link { 
    color: var(--secondary); 
    font-weight: 700; 
    font-size: 14px; 
    letter-spacing: 1px;
}
.nav-link:hover { color: var(--primary); }

/* Mobile Header Layout */
.mobile-header-buttons {
    display: none;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10002;
    padding: 0 0px;
}

/* Left side - Gift card button */
.mobile-gift-card-btn {
    background: linear-gradient(135deg, #E67E22, #E67E22);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(205, 133, 63, 0.25);
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-gift-card-btn:hover {
    background: linear-gradient(135deg, #B8860B, #A0522D);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(205, 133, 63, 0.35);
}

/* Mobile logo - perfectly centered between the two buttons */
.mobile-logo {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin-left: -13px;
}

.mobile-logo a {
    display: flex;
    align-items: center;
}

.mobile-logo .logo-img {
    height: 60px;
    width: auto;
}

/* Right side container - Book Now + Menu */
.mobile-right-buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-book-btn {
    background: linear-gradient(135deg, #E67E22, #E67E22);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(205, 133, 63, 0.25);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.mobile-book-btn:hover {
    background: linear-gradient(135deg, #B8860B, #A0522D);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(205, 133, 63, 0.35);
}

/* Buttons */
.btn-primary, .btn-secondary, .gift-card-btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.btn-primary:hover { 
    background: var(--accent); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

.gift-card-btn {
    background: var(--primary);
    color: white;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.gift-card-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Top Banner */
.top-banner {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.top-banner-content {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
    animation: scrollLeftTop 25s linear infinite;
}

@keyframes scrollLeftTop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20003; /* Higher than backdrop to ensure visibility */
}

.mobile-menu-toggle:hover {
    background-color: rgba(230, 126, 34, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--secondary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Mobile menu active state */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: var(--primary);
}

/* Mobile Menu Backdrop - FULLSCREEN OVERLAY */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 20000; /* Much higher than header (1001) */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container - FULLSCREEN */
.mobile-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-light);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-backdrop.active .mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    background: white;
    position: sticky;
    top: 0;
    z-index: 20001;
    min-height: 80px; /* Keep header height consistent */
}

.mobile-menu-logo {
    display: none; /* Hide the logo completely */
}

.mobile-menu-close {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(230, 126, 34, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 28px;
    color: var(--primary);
    font-weight: 300;
    z-index: 20002;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu-link {
    display: block;
    padding: 20px 40px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-menu-link:hover {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    transform: scale(1.05);
}

.mobile-gift-card-link {
    margin: 40px 40px 20px;
    background: var(--primary);
    color: white !important;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.mobile-gift-card-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

/* Hero with Video Background */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback overlay for better text readability */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(33, 24, 14, 0.4), rgba(18, 8, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    margin-bottom: 20px; 
    color: var(--bg-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.hero-buttons { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 14px;
    min-width: 160px;
}

/* Scrolling Banner */
.scrolling-banner {
    background: var(--primary);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.banner-content {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: scrollLeftMain 20s linear infinite;
}

@keyframes scrollLeftMain {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Welcome with Food Images */
.welcome { 
    padding: 80px 0; 
    background: white; 
    position: relative;
    overflow: hidden;
}

.welcome-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.welcome-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.08;
    filter: grayscale(20%);
}

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

.features { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 30px; 
    text-align: center; 
    margin-top: 40px; 
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
}

.feature span { 
    font-weight: 700; 
    color: var(--secondary); 
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* CAROUSEL - Fixed Infinite Scroll + Manual Navigation */
.food-gallery-v2 { padding: 80px 0; background: var(--bg-light); }
.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    position: relative;
}
.gallery-carousel {
    display: flex;
    gap: 20px;
    width: max-content; 
    animation: scroll 100s linear infinite 1.5s;
    padding: 10px 5px;
    transition: transform 0.3s ease;
}
.gallery-carousel:hover {
    animation-play-state: paused;
}

/* Allow manual scrolling */
.carousel-container::-webkit-scrollbar {
    height: 8px;
}
.carousel-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}
.carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.carousel-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

.gallery-item {
    width: 300px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-image { width: 100%; height: 350px; object-fit: cover; }
.gallery-description { padding: 20px; }
.gallery-description h3 { 
    font-size: 18px; 
    color: var(--primary); 
    margin-bottom: 5px; 
}
.gallery-description p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.5; 
}

/* Gift Card */
.gift-card-section { 
    background: linear-gradient(135deg, var(--primary), #F39C12); 
    padding: 60px 0; 
    color: white; 
}
.gift-card-content { 
    background: white; 
    padding: 40px; 
    border-radius: 12px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    align-items: center; 
    justify-content: space-between; 
}
.gift-card-text { 
    color: #333; 
    flex: 1; 
    min-width: 250px; 
}

/* Hours & Functions */
.hours, .functions { padding: 80px 0; background: white; }
.hours-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.hours-card, .contact-card { background: var(--bg-light); padding: 30px; border-radius: 12px; }

/* Updated Hours List with reduced line height */
.hours-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.hour-item { 
    display: flex; 
    justify-content: space-between; 
    border-bottom: 1px solid #ddd; 
    padding-bottom: 6px;
    line-height: 1.3;
}

/* Functions */
.functions { padding: 80px 0; background: white; }
.function-content { text-align: center; }
.function-content .section-subtitle {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}
.function-cta {
    margin-top: 40px;
}

/* Run Club Section */
.run-club { 
    padding: 80px 0; 
    background: white; 
    position: relative;
    overflow: hidden;
}

.run-club-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.run-club-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.08;
    filter: grayscale(20%);
}

.run-club .container {
    position: relative;
    z-index: 1;
}

/* Left-to-right animation for the run club title */
.run-title {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.run-club.animate .run-title {
    opacity: 1;
    transform: translateX(0);
}

.run-club-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.run-club-image {
    flex-shrink: 0;
}

.run-club-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.run-club-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
}

/* Mobile-only gift cards button */
.mobile-only-gift-card {
    display: block;
}

/* Desktop - hide mobile-only gift cards button */
@media (min-width: 769px) {
    .mobile-only-gift-card {
        display: none;
    }
}

/* Booking */
.booking { background: var(--bg-medium); padding: 80px 0; text-align: center; }
.booking-widget { background: white; padding: 20px; border-radius: 12px; max-width: 800px; margin: 0 auto; }
.booking-iframe { width: 100%; min-height: 600px; border: none; }

/* Footer */
.footer { background: var(--secondary); color: white; padding: 60px 0 20px; }
.footer-content { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 40px; 
}
.footer a { color: #ddd; transition: color 0.3s ease; }
.footer a:hover { color: var(--primary); }
.footer-bottom { 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 20px; 
    font-size: 13px; 
    line-height: 1.8;
}
.footer-bottom p {
    margin: 5px 0;
}
.footer-bottom a { 
    color: var(--primary); 
    font-weight: 600; 
}
.footer-bottom a:hover { 
    color: white; 
}

/* Footer logo */
.footer .logo {
    text-align: center;
    margin-bottom: 20px;
}
.footer .logo img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
}

/* Footer navigation styling */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    padding: 5px 0;
    transition: color 0.3s ease;
    font-size: 16px;
}
.footer h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* Footer contact section */
.footer .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    font-size: 16px;
}
.footer .contact-item.footer-address {
    justify-content: center;
}
.footer .contact-item .location-icon,
.footer .contact-item .email-icon {
    color: var(--primary);
    font-size: 18px;
}

.footer-address-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ddd !important;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 16px;
}
.footer-address-link:hover {
    color: var(--primary) !important;
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.social-icon:hover {
    background: var(--primary);
}
.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Hours section styling */
.hours-card, .contact-card { 
    background: var(--bg-light); 
    padding: 30px; 
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hours-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hours-card h3, .contact-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.hours-card h3 .icon, .contact-card h3 .icon {
    color: var(--primary);
    font-size: 24px;
}

.hour-item .time {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

/* Contact card styling */
.contact-info {
    text-align: left;
}

.address-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary);
    transition: color 0.3s ease;
    padding: 10px 0;
    font-size: 16px;
}

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

.address-link .location-icon {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-link .address {
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide desktop nav and logo */
    .desktop-nav { display: none; }
    .logo { display: none; }
    
    /* Show mobile header layout */
    .mobile-header-buttons { display: flex; }
    .mobile-menu-toggle { display: flex; }
    
    /* Mobile hero adjustments */
    .hero {
        height: 85vh;
    }
    
    .hero-content {
        justify-content: space-between;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        margin-top: 0;
        margin-bottom: 40px;
        gap: 12px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px !important;
        font-size: 12px !important;
        min-width: auto;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    
    /* Features mobile layout */
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature span {
        font-size: 11px;
    }
    
    /* Adjust scrolling banner for mobile */
    .banner-content {
        font-size: 16px;
    }
    
    /* Adjust top banner for mobile */
    .top-banner-content {
        font-size: 12px;
    }
    
    /* Make video responsive on mobile */
    .hero-video {
        object-position: center center;
    }
    
    /* Run club mobile adjustments */
    .run-club-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .run-club-image img {
        width: 280px;
        height: 280px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

/* Desktop specific styles */
@media (min-width: 769px) {
    /* Hide mobile elements */
    .mobile-header-buttons { display: none; }
    .mobile-logo { display: none; }
    
    /* Show desktop logo */
    .logo { display: block; }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        margin-top: 0;
        gap: 20px;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 160px;
    }
}

/* Video mobile optimization for portrait videos */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-video {
        width: auto;
        height: 100%;
        min-width: 100%;
        object-fit: cover;
        object-position: center;
    }
}
