/* Chibu Kite Instructor - Exact Template Styling */
/* Based on Squarespace Template Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,500;0,700;1,500;1,700&display=swap');

/* CSS Variables for Enhanced Design */
:root {
    /* Base Colors */
    --white-hsl: 0, 0%, 100%;
    --black-hsl: 0, 0%, 0%;
    
    /* Modern Color Palette */
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-color: #00d4aa;
    --secondary-dark: #00b894;
    --accent-color: #ff6b6b;
    --accent-dark: #ff5252;
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Header Colors */
    --headerBorderColor: hsla(var(--black-hsl), 1);
    --solidHeaderBackgroundColor: hsla(var(--white-hsl), 0.95);
    --solidHeaderNavigationColor: hsla(var(--black-hsl), 1);
    --gradientHeaderBackgroundColor: hsla(var(--white-hsl), 0.95);
    --gradientHeaderNavigationColor: hsla(var(--black-hsl), 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white-hsl);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Site Wrapper */
#siteWrapper {
    position: relative;
    overflow: hidden;
}

/* Header Styles - Exact from Template */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--solidHeaderBackgroundColor);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

header.bright {
    background: transparent;
}

.header-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--headerBorderColor);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-dropshadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--solidHeaderBackgroundColor);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Header Title */
.header-title {
    margin-right: 3rem;
}

.header-title-logo img {
    height: 65px;
    transition: transform 0.3s ease;
}

.header-title-logo img:hover {
    transform: scale(1.05);
}

/* Header Navigation */
.header-title-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.header-nav-wrapper {
    flex: 1;
}

.header-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-nav-item {
    position: relative;
}

.header-nav-item a {
    text-decoration: none;
    color: var(--solidHeaderNavigationColor);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
    padding: 0.5rem 1rem;
    display: block;
    border-radius: var(--radius-md);
    position: relative;
}

.header-nav-item--active a,
.header-nav-item a:hover {
    color: var(--primary-color);
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.header-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal);
    border-radius: 1px;
}

.header-nav-item--active a::after,
.header-nav-item a:hover::after {
    width: 80%;
}

/* Mobile Header */
.header-display-mobile {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-box {
    width: 24px;
    height: 18px;
    position: relative;
}

.burger-inner div {
    height: 2px;
    background: var(--solidHeaderNavigationColor);
    transition: all 0.3s ease;
    margin-bottom: 4px;
    border-radius: 1px;
}

.header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--solidHeaderBackgroundColor);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.header-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu .header-nav-list {
    flex-direction: column;
    padding: 1rem;
}

.header-menu .header-nav-item {
    margin-bottom: 0.5rem;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}

/* Hero Sections */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Video Background Hero - For index.php only */
.hero-section.fullscreen-video {
    background: none;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.1) 0%, 
        rgba(0, 0, 0, 0.4) 25%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 212, 170, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 100;
    text-align: center;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none;
    animation: none !important;
    transition: none !important;
}

/* Ensure hero content is NEVER affected by any animations */
.hero-content * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Force hero content to be visible regardless of any classes added by JavaScript */
.hero-section .hero-content,
.hero-section .hero-content *,
.hero-section .hero-content h1,
.hero-section .hero-content .hero-buttons,
.hero-section .hero-content .btn-primary,
.hero-section .hero-content .btn-secondary {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.hero-section .hero-content .btn-primary,
.hero-section .hero-content .btn-secondary {
    display: inline-block !important;
}

/* Override any potential conflicting styles */
.hero-content,
.hero-content h1,
.hero-content .hero-buttons,
.hero-content .btn-primary,
.hero-content .btn-secondary {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-content .btn-primary,
.hero-content .btn-secondary {
    display: inline-block !important;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: white;
}

.hero-buttons {
    margin-top: 2.5rem;
    pointer-events: auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    margin: 0;
    position: relative;
    z-index: 101;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto;
    animation: none !important;
    transition: all 0.3s ease !important;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Modern Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.025em;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-800);
    text-decoration: none;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Enhanced Modern Cards */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gray-300);
}

.card:hover::before {
    transform: scaleX(1);
}

.lesson-card,
.rental-card {
    padding: 32px;
    height: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.lesson-card h3,
.rental-card h4 {
    color: var(--gray-800);
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.lesson-card p,
.rental-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Enhanced Pricing */
.price,
.lesson-price {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    line-height: 1.2;
}

.rental-pricing p {
    margin: 8px 0;
    font-weight: 600;
}

.price-per-hour {
    color: #007bff;
}

.price-per-day {
    color: #28a745;
}

/* Enhanced Status Badges */
.lesson-level,
.rental-type {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    border: 2px solid;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.lesson-level::before,
.rental-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition-normal);
}

.lesson-level:hover::before,
.rental-type:hover::before {
    left: 100%;
}

.lesson-level.beginner,
.rental-type.kite {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-color: var(--success-color);
}

.lesson-level.intermediate,
.rental-type.board {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
    border-color: var(--info-color);
}

.lesson-level.advanced,
.rental-type.harness {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border-color: var(--warning-color);
}

.lesson-level.all,
.rental-type.wetsuit {
    background: rgba(100, 116, 139, 0.1);
    color: var(--gray-600);
    border-color: var(--gray-600);
}

.rental-type.helmet {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border-color: var(--error-color);
}

.rental-type.other {
    background: rgba(148, 163, 184, 0.1);
    color: var(--gray-500);
    border-color: var(--gray-500);
}

/* Enhanced Weather Widget */
.weather-widget {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white-hsl) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.weather-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.weather-main {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.weather-condition {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #666;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.weather-detail {
    background: white;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.weather-detail-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.weather-detail-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

.kite-condition {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    border: 2px solid;
}

.kite-condition.excellent {
    background: transparent;
    color: #28a745;
    border-color: #28a745;
}

.kite-condition.good {
    background: transparent;
    color: #17a2b8;
    border-color: #17a2b8;
}

.kite-condition.fair {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.kite-condition.poor {
    background: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

/* Enhanced Forms */
.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white-hsl);
    color: var(--gray-800);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    transform: translateY(-1px);
}

.form-control:hover {
    border-color: var(--gray-300);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white-hsl);
    color: var(--gray-800);
    transition: all var(--transition-normal);
    font-family: inherit;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    transform: translateY(-1px);
}

.form-select:hover {
    border-color: var(--gray-300);
}

/* Enhanced Alerts */
.alert {
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid;
    border-left: 4px solid;
    position: relative;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Enhanced Sections */
.featured-section {
    padding: 100px 0;
    position: relative;
}

.featured-section:nth-child(even) {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white-hsl) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--gray-200);
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer h4 {
    margin-bottom: 24px;
    color: var(--white-hsl);
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.footer p,
.footer a {
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: all var(--transition-fast);
    line-height: 1.6;
}

.footer a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-hsl);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-600);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.social-links a:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i,
.social-links a svg {
    position: relative;
    z-index: 1;
}

/* Enhanced Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Focus Management for Accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.form-control:focus,
.form-select:focus {
    outline: 3px solid rgba(0, 102, 255, 0.3);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: rgba(0, 102, 255, 0.2);
    color: var(--gray-800);
}

::-moz-selection {
    background: rgba(0, 102, 255, 0.2);
    color: var(--gray-800);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-dark), var(--secondary-dark));
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-display-desktop {
        display: none;
    }
    
    .header-display-mobile {
        display: block;
    }
    
    .header-title-nav-wrapper {
        height: 80px;
    }
    
    .header-inner {
        padding: 0 1rem;
    }
    
    .main-content {
        margin-top: 80px;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-section.fullscreen-video {
        height: 60vh;
        width: 100%;
        transform: none !important;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .hero-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    }
    
    /* Mobile video optimization */
    .hero-video {
        display: none;
    }
    
    .hero-section.fullscreen-video .hero-video {
        display: none;
    }
    
    .hero-section.fullscreen-video {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/kitesurfing-hero-bg.jpg');
        background-size: cover;
        background-position: center;
        height: 100vh;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }
    
    .section-title h2::after {
        width: 60px;
        bottom: -8px;
    }
    
    .featured-section {
        padding: 80px 0;
    }
    
    .lesson-card,
    .rental-card {
        padding: 24px;
    }
    
    .price,
    .lesson-price {
        font-size: 1.875rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0.75rem;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.875rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .card {
        margin-bottom: 24px;
    }
    
    .lesson-card,
    .rental-card {
        padding: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
}

/* Animation Classes */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
}

.slide-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.slide-up.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    header,
    .footer,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero-section {
        background: none !important;
        color: #333 !important;
        height: auto !important;
    }
    
    .hero-content {
        position: static !important;
        transform: none !important;
        height: auto !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}