 :root {
            --primary: #1F3C5F;
            --secondary: #6BA2D9;
            --accent: #F57C51;
            --text: #333333;
            --light-bg: #F5F5F5;
            --white: #FFFFFF;
}
        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
/* Color Palette */
:root {
    --primary: #1F3C5F;
    --secondary: #6BA2D9;
    --accent: #F57C51;
    --text: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --neon-yellow: #FFFF00;
    
    /* Native Social Media Colors */
    --strava-orange: #FC4C02;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --facebook-blue: #1877F2;
    --garmin-blue: #007CC3;
}

.top-bar {
    background-color: var(--neon-yellow);
    color: var(--text);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

 .events-dropdown {
position: relative;
flex: 1;
min-width: 200px;
}

.dropdown-toggle {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: var(--white);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
padding: 8px 16px;
border-radius: 25px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(31, 60, 95, 0.3);
}

.dropdown-toggle:hover {
background: linear-gradient(to right, var(--secondary), var(--accent));
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(31, 60, 95, 0.4);
}

.dropdown-toggle span {
font-weight: bold;
}

.dropdown-toggle i {
transition: transform 0.3s ease;
}

.events-dropdown.active .dropdown-toggle i {
transform: rotate(180deg);
}

.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
box-shadow: 0 8px 25px rgba(31, 60, 95, 0.2);
border-radius: 12px;
padding: 20px;
max-width: 350px;
z-index: 1000;
margin-top: 32px;
border: 2px solid var(--secondary);
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}

.events-dropdown.active .dropdown-menu {
display: block;
opacity: 1;
transform: translateY(0);
}

.event-item {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 15px;
border-radius: 8px;
margin-bottom: 12px;
transition: all 0.3s ease;
background: var(--white);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
border-left: 4px solid var(--primary);
}

.event-item:hover {
transform: translateX(5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-left: 4px solid var(--accent);
}

.event-item:last-child {
margin-bottom: 0;
}

.event-details {
flex: 1;
margin-right: 15px;
}

.event-title {
font-weight: bold;
color: var(--primary);
display: block;
margin-bottom: 5px;
font-size: 15px;
}

.event-register-btn {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border: none;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
white-space: nowrap;
box-shadow: 0 2px 8px rgba(31, 60, 95, 0.3);
}

.event-register-btn:hover {
background: linear-gradient(135deg, var(--secondary), var(--accent));
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(31, 60, 95, 0.4);
}

/* Content for demonstration */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .content h1 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .content p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .events-dropdown {
                min-width: auto;
                order: 1;
                width: 100%;
                margin-bottom: 10px;
                margin-left: 0px;
                margin-top: 20px;
            }
            
            .dropdown-toggle {
                justify-content: center;
                width: 100%; 
            }
            
            .dropdown-menu {
                left: 50%;
                transform: translateX(-50%) ;
                min-width: 90%;
                max-width: 400px;
            }
            
            .events-dropdown.active .dropdown-menu {
                transform: translateX(-50%) translateY(0);
            }
        }

        @media (max-width: 575px) {
            .event-item {
                flex-direction: column;
                text-align: center;
            }
            
            .event-details {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .btn-text-short {
                display: inline;
            }
            
            .btn-text-full {
                display: none;
            }
        }

.next-event {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.next-event span {
    font-weight: bold;
    margin-right: 10px;
    color: var(--primary);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone {
    display: flex;
    align-items: center;
    color: var(--text);
}

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

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Native Social Media Colors */
.strava-icon {
    color: var(--strava-orange) !important;
}

.instagram-icon {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facebook-icon {
    color: var(--facebook-blue) !important;
}

.garmin-icon {
    color: var(--garmin-blue) !important;
}

/* Register Button */ 
.register-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 60, 95, 0.2);
    white-space: nowrap;
    text-decoration: none; /* 👈 Remove underline for anchor elements */
    margin-right: 20px;
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 95, 0.3);
    text-decoration: none;
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(31, 60, 95, 0.2);
}

 

.member-btn {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 60, 95, 0.2);
    white-space: nowrap;
    text-decoration: none; /* 👈 Remove underline for anchor elements */
}
.member-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 95, 0.3);
    text-decoration: none;
}
.member-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(31, 60, 95, 0.2);
}

/* Responsive Text Control */
.btn-text-full {
    display: inline;
}

.btn-text-short {
    display: none;
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .top-bar {
        padding: 10px 8%;
        font-size: 15px;
    }
    
    .contact-social {
        gap: 25px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Desktop - 992px to 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .top-bar {
        padding: 8px 6%;
    }
    
    .contact-social {
        gap: 18px;
    }
    
    .social-icons {
        gap: 12px;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .top-bar {
        padding: 8px 4%;
        font-size: 13px;
        gap: 15px;
    }
    
    .next-event {
        min-width: 250px;
        flex: 1;
    }
    
    .contact-social {
        gap: 15px;
        justify-content: flex-end;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .register-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* Large Mobile - 576px to 767px */
@media (max-width: 767px) and (min-width: 576px) {
    .top-bar {
        padding: 10px 3%;
        font-size: 13px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .next-event {
        min-width: auto;
        justify-content: center;
        text-align: center;
        order: 1;
    }
    
    .contact-social {
        order: 2;
        justify-content: center;
        gap: 20px;
        margin-top: 5px;
    }
    
    .phone {
        order: 1;
    }
    
    .social-icons {
        order: 2;
        gap: 15px;
    }
    
    .register-btn {
        order: 3;
        padding: 8px 16px;
        font-size: 12px;
        align-self: center;
    }
}

/* Small Mobile - 480px to 575px */
@media (max-width: 575px) and (min-width: 480px) {
    .top-bar {
        padding: 12px 4%;
        font-size: 12px;
        gap: 10px;
        flex-direction: column;
    }
    
    .next-event {
        min-width: auto;
        justify-content: center;
        text-align: center;
    }
    
    .next-event span {
        margin-right: 8px;
    }
    
    .contact-social {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .phone {
        margin-bottom: 8px;
        justify-content: center;
    }
    
    .social-icons {
        gap: 12px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .register-btn {
        padding: 8px 14px;
        font-size: 11px;
        margin-top: 5px;
        align-self: center;
    }
    
    .btn-text-short {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
}

/* Extra Small Mobile - up to 479px */
@media (max-width: 479px) {
    .top-bar {
        padding: 10px 3%;
        font-size: 15px;
        gap: 8px;
        flex-direction: column;
        text-align: center; 
    }
    
    .next-event {
        min-width: auto;
        flex-direction: column;
        gap: 5px;
    }
    
    .next-event span {
        margin-right: 0;
        margin-bottom: 3px;
    }
    
    .contact-social {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .phone {
        justify-content: center;
        font-size: 11px;
    }
    
    .phone i {
        margin-right: 4px;
    }
    
    .social-icons {
        gap: 15px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 18px;
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .register-btn {
        padding: 10px 16px;
        font-size: 11px;
        margin-top: 5px;
        width: fit-content;
        align-self: center;
    }
    
    .btn-text-short {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
}

        
/* Main Header */
header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
}
        
.header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%; 
            margin: 0 auto;
}
        
.logo {
            height: 100px;
}
        
.nav-links {
            display: flex;
            list-style: none;
}
        
.nav-links li {
            margin-left: 30px;
            position: relative;
}
        
.nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s;
            padding: 5px 0;
}
        
.nav-links a:hover {
            color: var(--accent);
}
        
.nav-links li.active a {
            color: var(--accent);
}
        
.nav-links li.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
}

/* Cart Link Special Styling */
.cart-item .nav-link {
    position: relative;
    padding: 12px;
    border-radius: 50%;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.cart-item .nav-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(107, 162, 217, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::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 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 162, 217, 0.5);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(107, 162, 217, 0.3);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button span {
    font-weight: 700;
    position: relative;
    z-index: 1;
}
        
/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 3.8rem;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 50px;
    margin-right: 60px;
}

.hamburger:hover {
    color: var(--accent);
}

.hamburger.active {
    color: var(--accent);
}

/* Hamburger Lines */
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 60, 95, 0.45); /* tinted with --primary */
    backdrop-filter: blur(4px);
    z-index: 1200; /* sit above page content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Compact, elevated mobile menu using core colors */
.mobile-menu {
    position: fixed;
    top: 80px;                       /* leave space for top bar */
    right: -320px;
    width: 280px;                    /* slightly narrower */
    height: calc(100vh - 100px);     /* shorter than full height */
    margin-top: 12px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(107,162,217,0.03) 100%);
    border-left: 1px solid rgba(31,60,95,0.06);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 20px 45px rgba(31, 60, 95, 0.18);
    z-index: 1250;                   /* ensure it floats above other sections */
    transition: right 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.28s;
    overflow-y: auto;
    padding: 14px 0;
    -webkit-overflow-scrolling: touch;
    opacity: 0.98;
}

.mobile-menu.active {
    right: 12px; /* visible state offset from edge */
}

/* Mobile header inside menu */
.mobile-menu-header {
    padding: 0 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-menu:hover {
    color: var(--accent);
}

/* Mobile Links */
.mobile-links {
    list-style: none;
    padding: 8px 12px;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 8px;
    opacity: 1;
    transform: none;
    animation: none; /* keep subtle by default */
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.12s ease, box-shadow 0.18s ease;
    background: transparent;
}


.mobile-links a:hover,
.mobile-links li.active a {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: translateX(-4px);
    box-shadow: 0 6px 18px rgba(31, 60, 95, 0.12);
}

/* CTA button inside menu */
.mobile-cta {
    padding: 16px;
    border-top: 1px solid rgba(31,60,95,0.04);
    margin-top: 8px;
}

.mobile-cta-button {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 12px 14px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31,60,95,0.14);
}

/* Disable scrolling when menu is open */
.no-scroll {
    overflow: hidden;
}

/* Animations */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animation for menu items */
.mobile-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-links li:nth-child(5) { animation-delay: 0.3s; }
.mobile-links li:nth-child(6) { animation-delay: 0.35s; }
.mobile-links li:nth-child(7) { animation-delay: 0.4s; }

 /* Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) { 
    
    .header-container {
        padding: 10px 3%;
        flex-wrap: wrap;
    }
    
    .logo {
        height: 60px;
        flex-shrink: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
        margin-left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 20px;
        display: block;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        margin-right: 20px;
        font-size: 2.5rem;
    }
    
    .nav-links li.active::after {
        bottom: 10px;
        width: 80%;
        left: 10%;
    }
}

/* Small Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .header-container {
        padding: 12px 4%;
    }
    
    .logo {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        margin-right: 40px;
        font-size: 3rem;
    }
}

/* Large Tablets (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 15px 4%;
    }
    
    .logo {
        height: 80px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .hamburger {
        display: none;
    }
}

/* Small Desktops (1025px - 1200px) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .header-container {
        padding: 15px 4%;
    }
    
    .logo {
        height: 90px;
    }
    
    .nav-links li {
        margin-left: 25px;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media screen and (max-width: 320px) {
    .header-container {
        padding: 8px 2%;
    }
    
    .logo {
        height: 50px;
    }
    
    .hamburger {
        margin-right: 10px;
        font-size: 2.2rem;
        width: 25px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
}

/* Landscape Mobile Orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding: 20px;
    }
    
    .nav-links li {
        margin: 10px 15px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 1rem;
    }
}
/* ===== M2M PAGE CONTENT SECTIONS ===== */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(245, 124, 81, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(107, 162, 217, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: var(--white);
}

/* Event Badge */
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Photo Gallery Container */
.photo-gallery-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.photo-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
}

.photo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

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

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.photo-slide:hover img {
  transform: scale(1.05);
}

/* Photo Navigation */
.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.photo-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffd700;
  color: #ffd700;
  transform: translateY(-50%) scale(1.1);
}

.photo-prev {
  left: 20px;
}

.photo-next {
  right: 20px;
}

/* Photo Dots */
.photo-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.photo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-dot.active {
  background: #ffd700;
  border-color: #ffd700;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.photo-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Photo Links */
.photo-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.photo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.photo-link-btn.primary {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--text);
}

.photo-link-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* Event Stats */
.event-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-bg);
  padding: 4rem 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--primary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
}

.reviews-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-slider {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

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

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
}

.review-content {
  text-align: center;
  width: 100%;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.review-content blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  border: none;
  padding: 0;
}

.reviewer-info h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.reviewer-info span {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Review Navigation */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-nav:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.review-prev {
  left: -60px;
}

.review-next {
  right: -60px;
}

/* Review Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(31, 60, 95, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.review-dot:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* Race Categories Section */
.race-categories-section {
  background: var(--white);
  padding: 4rem 0;
}

.race-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.race-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.race-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid;
}

.race-card.ultra {
  border-top-color: #ff4444;
}

.race-card.marathon {
  border-top-color: var(--secondary);
}

.race-card.trail {
  border-top-color: var(--accent);
}

.race-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.race-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.race-card.ultra .race-badge {
  background: #ff4444;
}

.race-card.marathon .race-badge {
  background: var(--secondary);
}

.race-card.trail .race-badge {
  background: var(--accent);
}

.race-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.race-start {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1rem;
}

.start-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.start-location i {
  color: var(--accent);
  width: 20px;
}

.race-description p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Next Edition Section */
.next-edition-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 0;
  color: var(--white);
}

.next-edition-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.next-edition-section .section-title {
  color: var(--white);
}

.next-edition-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.next-edition-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.edition-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.edition-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.edition-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--white);
}

.edition-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.date-text,
.highlight-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.edition-card p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.early-bird-signup {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.early-bird-signup h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.early-bird-signup p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.early-bird-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.early-bird-btn:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 124, 81, 0.3);
}

/* Sponsors Section */
.sponsors-section {
  background: var(--light-bg);
  padding: 4rem 0;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sponsors-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

/* Sponsor Category */
.sponsor-category {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Sponsor Logos Slider */
.sponsor-logos {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--light-bg);
  padding: 2rem 0;
}

.sponsor-logos-track {
  display: flex;
  animation: slideLogos 15s linear infinite;
  gap: 3rem;
  align-items: center;
}

.sponsor-logos:hover .sponsor-logos-track {
  animation-play-state: paused;
}

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

.sponsor-logo {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
}

/* Official Partners Specific Styling */
.official-partners {
  background: linear-gradient(
    135deg,
    rgba(31, 60, 95, 0.05),
    rgba(107, 162, 217, 0.05)
  );
}

.official-partners .sponsor-logo {
  border: 2px solid rgba(31, 60, 95, 0.1);
}

.official-partners .sponsor-logo:hover {
  border-color: var(--primary);
}

.sponsor-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sponsor-description {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.5;
}

.sponsor-tier {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sponsor-tier.title {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: var(--text);
}

.sponsor-tier.presenting {
  background: var(--primary);
  color: var(--white);
}

.sponsor-tier.supporting {
  background: var(--secondary);
  color: var(--white);
}

.sponsor-tier.community {
  background: var(--accent);
  color: var(--white);
}

/* Partnership CTA */
.partnership-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(245, 124, 81, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.partnership-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.partnership-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.partnership-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(245, 124, 81, 0.3);
}

.partnership-btn:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 124, 81, 0.4);
  text-decoration: none;
}

.partnership-btn i {
  font-size: 1.2rem;
}

/* Responsive Design for Sponsors */
@media (max-width: 768px) {
  .sponsors-container {
    padding: 0 1rem;
  }

  .sponsor-category {
    padding: 1.5rem;
  }

  .category-title {
    font-size: 1.3rem;
  }

  .sponsor-logo {
    width: 120px;
    height: 80px;
  }

  .sponsor-logos-track {
    gap: 2rem;
  }

  .partnership-cta {
    padding: 2rem 1.5rem;
  }

  .partnership-cta h3 {
    font-size: 1.5rem;
  }

  .partnership-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sponsors-section {
    padding: 2rem 0;
  }

  .sponsor-logo {
    width: 100px;
    height: 70px;
    padding: 0.75rem;
  }

  .sponsor-logos-track {
    gap: 1.5rem;
  }

  .partnership-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    padding: 1rem;
  }

  .photo-slider {
    height: 300px;
  }

  .photo-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .photo-prev {
    left: 10px;
  }

  .photo-next {
    right: 10px;
  }

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

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .reviews-container,
  .race-container,
  .next-edition-container,
  .sponsors-container {
    padding: 0 1rem;
  }

  .review-nav {
    display: none;
  }

  .race-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .next-edition-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .edition-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 1rem 0;
  }

  .photo-gallery-container {
    margin: 2rem auto;
    border-radius: 15px;
  }

  .photo-slider {
    height: 250px;
    border-radius: 15px;
  }

  .photo-links {
    flex-direction: column;
    align-items: center;
  }

  .photo-link-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .event-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .race-card {
    padding: 1.5rem;
  }

  .edition-card,
  .early-bird-signup {
    padding: 1.5rem;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--neon-yellow);
  color: var(--text);
  padding: 60px 5% 30px;
  font-size: 0.95rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-heading {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

.footer-about {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
}

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

.footer-social a {
  background-color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Native Social Media Colors */
.footer-social .facebook-icon {
  color: var(--facebook-blue) !important;
}

.footer-social .facebook-icon:hover {
  background-color: var(--facebook-blue);
  color: var(--white) !important;
}

.footer-social .strava-icon {
  color: var(--strava-orange) !important;
}

.footer-social .strava-icon:hover {
  background-color: var(--strava-orange);
  color: var(--white) !important;
}

.footer-social .garmin-icon {
  color: var(--garmin-blue) !important;
}

.footer-social .garmin-icon:hover {
  background-color: var(--garmin-blue);
  color: var(--white) !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 500;
}

.footer-contact i {
  margin-right: 12px;
  color: var(--primary);
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
  padding: 14px 16px;
  border: none;
  font-size: 0.9rem;
  outline: none;
  background-color: var(--white);
  color: var(--text);
  border-radius: 6px;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  min-width: 120px;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateX(-2px);
}

.footer-notes {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.8;
  font-weight: 500;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 2px solid rgba(31, 60, 95, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.legal-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.legal-links a:hover::before {
  width: 100%;
}

/* Footer Media Queries */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .site-footer {
    padding: 50px 4% 25px;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
    margin-bottom: 12px;
  }

  .newsletter-form button {
    min-width: 100px;
    padding: 14px 20px;
  }
}

/* Medium tablets */
@media (max-width: 768px) {
  .site-footer {
    padding: 45px 3% 20px;
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .footer-heading::after {
    width: 40px;
    height: 2px;
  }

  .footer-about {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-contact i {
    margin-right: 10px;
    width: 18px;
    font-size: 14px;
  }

  .newsletter-form {
    gap: 6px;
    margin-bottom: 12px;
  }

  .newsletter-form input {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .newsletter-form button {
    padding: 12px 18px;
    font-size: 0.85rem;
    min-width: 90px;
  }

  .footer-notes {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 25px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-links {
    gap: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 3% 18px;
  }

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

  .footer-column {
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
  }

  .footer-about {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .footer-links {
    text-align: center;
  }

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

  .footer-contact {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-contact li {
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto 10px;
  }

  .newsletter-form input {
    padding: 12px 14px;
    text-align: center;
  }

  .newsletter-form button {
    padding: 12px 16px;
    min-width: auto;
    width: 100%;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 12px;
  }

  .legal-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .site-footer {
    padding: 35px 4% 15px;
    font-size: 0.85rem;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-column {
    margin-bottom: 12px;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .footer-heading::after {
    width: 30px;
    height: 2px;
  }

  .footer-about {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer-links {
    font-size: 0.85rem;
  }

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

  .footer-contact {
    font-size: 0.85rem;
    max-width: 280px;
  }

  .footer-contact li {
    margin-bottom: 8px;
  }

  .footer-contact i {
    margin-right: 8px;
    width: 16px;
    font-size: 13px;
  }

  .newsletter-form {
    max-width: 280px;
    margin-bottom: 8px;
  }

  .newsletter-form input {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .newsletter-form button {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .footer-notes {
    font-size: 0.75rem;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 18px;
    font-size: 0.75rem;
    gap: 10px;
  }

  .legal-links {
    gap: 10px;
  }

  .legal-links a {
    font-size: 0.75rem;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .site-footer {
    padding: 30px 3% 12px;
  }

  .footer-container {
    gap: 18px;
  }

  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer-heading::after {
    width: 25px;
  }

  .footer-about {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .footer-social {
    gap: 6px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .footer-links {
    font-size: 0.8rem;
  }

  .footer-contact {
    font-size: 0.8rem;
    max-width: 260px;
  }

  .footer-contact i {
    margin-right: 6px;
    width: 14px;
    font-size: 12px;
  }

  .newsletter-form {
    max-width: 260px;
    gap: 6px;
  }

  .newsletter-form input {
    padding: 9px 10px;
    font-size: 0.75rem;
  }

  .newsletter-form button {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 0.7rem;
    gap: 8px;
  }

  .legal-links {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .legal-links a {
    font-size: 0.7rem;
  }
}

/* Landscape orientation adjustments for small screens */
@media (max-width: 640px) and (orientation: landscape) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-column {
    text-align: left;
  }

  .footer-heading {
    text-align: left;
  }

  .footer-heading::after {
    left: 0;
    transform: none;
  }

  .footer-about {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .newsletter-form {
    margin: 0 0 10px 0;
  }
}

/* Enhanced animations for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

/* Enhanced animations for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

/* Footer Media Queries */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .site-footer {
    padding: 50px 4% 25px;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
    margin-bottom: 12px;
  }

  .newsletter-form button {
    min-width: 100px;
    padding: 14px 20px;
  }
}

/* Medium tablets */
@media (max-width: 768px) {
  .site-footer {
    padding: 45px 3% 20px;
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .footer-heading::after {
    width: 40px;
    height: 2px;
  }

  .footer-about {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

  .footer-contact li {
    margin-bottom: 12px;
  }

  .footer-contact i {
    margin-right: 10px;
    width: 18px;
    font-size: 14px;
  }

  .newsletter-form {
    gap: 6px;
    margin-bottom: 12px;
  }

  .newsletter-form input {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .newsletter-form button {
    padding: 12px 18px;
    font-size: 0.85rem;
    min-width: 90px;
  }

  .footer-notes {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 25px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-links {
    gap: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 3% 18px;
  }

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

  .footer-column {
    margin-bottom: 15px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
  }

  /* Adjusted animation delays for single column layout */
  .footer-column:nth-child(1) {
    animation-delay: 0.1s;
  }
  .footer-column:nth-child(2) {
    animation-delay: 0.15s;
  }
  .footer-column:nth-child(3) {
    animation-delay: 0.2s;
  }
  .footer-column:nth-child(4) {
    animation-delay: 0.25s;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
  }

  .footer-about {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .footer-links {
    text-align: center;
  }

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

  .footer-contact {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-contact li {
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto 10px;
  }

  .newsletter-form input {
    padding: 12px 14px;
    text-align: center;
  }

  .newsletter-form button {
    padding: 12px 16px;
    min-width: auto;
    width: 100%;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 12px;
  }

  .legal-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .site-footer {
    padding: 35px 4% 15px;
    font-size: 0.85rem;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-column {
    margin-bottom: 12px;
    animation: fadeInUp 0.4s ease-out;
  }

  /* Faster animations for mobile */
  .footer-column:nth-child(1) {
    animation-delay: 0.05s;
  }
  .footer-column:nth-child(2) {
    animation-delay: 0.1s;
  }
  .footer-column:nth-child(3) {
    animation-delay: 0.15s;
  }
  .footer-column:nth-child(4) {
    animation-delay: 0.2s;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .footer-heading::after {
    width: 30px;
    height: 2px;
  }

  .footer-about {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer-links {
    font-size: 0.85rem;
  }

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

  .footer-contact {
    font-size: 0.85rem;
    max-width: 280px;
  }

  .footer-contact li {
    margin-bottom: 8px;
  }

  .footer-contact i {
    margin-right: 8px;
    width: 16px;
    font-size: 13px;
  }

  .newsletter-form {
    max-width: 280px;
    margin-bottom: 8px;
  }

  .newsletter-form input {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .newsletter-form button {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .footer-notes {
    font-size: 0.75rem;
    text-align: center;
  }

  .footer-bottom {
    padding-top: 18px;
    font-size: 0.75rem;
    gap: 10px;
  }

  .legal-links {
    gap: 10px;
  }

  .legal-links a {
    font-size: 0.75rem;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .site-footer {
    padding: 30px 3% 12px;
  }

  .footer-container {
    gap: 18px;
  }

  .footer-column {
    animation: fadeInUp 0.3s ease-out;
  }

  /* Very fast animations for small screens */
  .footer-column:nth-child(1) {
    animation-delay: 0.03s;
  }
  .footer-column:nth-child(2) {
    animation-delay: 0.06s;
  }
  .footer-column:nth-child(3) {
    animation-delay: 0.09s;
  }
  .footer-column:nth-child(4) {
    animation-delay: 0.12s;
  }

  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer-heading::after {
    width: 25px;
  }

  .footer-about {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .footer-social {
    gap: 6px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .footer-links {
    font-size: 0.8rem;
  }

  .footer-contact {
    font-size: 0.8rem;
    max-width: 260px;
  }

  .footer-contact i {
    margin-right: 6px;
    width: 14px;
    font-size: 12px;
  }

  .newsletter-form {
    max-width: 260px;
    gap: 6px;
  }

  .newsletter-form input {
    padding: 9px 10px;
    font-size: 0.75rem;
  }

  .newsletter-form button {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 0.7rem;
    gap: 8px;
  }

  .legal-links {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .legal-links a {
    font-size: 0.7rem;
  }
}

/* Landscape orientation adjustments for small screens */
@media (max-width: 640px) and (orientation: landscape) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-column {
    text-align: left;
    animation: fadeInUp 0.4s ease-out;
  }

  /* Adjusted delays for 2-column landscape layout */
  .footer-column:nth-child(1) {
    animation-delay: 0.1s;
  }
  .footer-column:nth-child(2) {
    animation-delay: 0.1s;
  }
  .footer-column:nth-child(3) {
    animation-delay: 0.2s;
  }
  .footer-column:nth-child(4) {
    animation-delay: 0.2s;
  }

  .footer-heading {
    text-align: left;
  }

  .footer-heading::after {
    left: 0;
    transform: none;
  }

  .footer-about {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .newsletter-form {
    margin: 0 0 10px 0;
  }
}
/* ===== MEDIA COVERAGE SECTION ===== */
.media-coverage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4fd 100%);
    position: relative;
}

.media-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

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

.media-content {
    width: 100%;
}

.news-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.news-video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--secondary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-details {
    padding: 20px 0;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #e55a2b);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 124, 81, 0.3);
}

.news-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 30px;
}

.news-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.watch-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(31, 60, 95, 0.3);
}

.watch-full-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(31, 60, 95, 0.4);
    text-decoration: none;
    color: var(--white);
}

/* ===== ENTERTAINMENT SECTION ===== */
.entertainment-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

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

.entertainment-content {
    width: 100%;
}

.band-performance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.video-section {
    position: relative;
}

/* Custom Video Player Styles */
.custom-video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary);
}

.custom-video-player video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    min-height: 300px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls,
.custom-video-player.show-controls .video-controls {
    opacity: 1;
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-pause-btn {
    font-size: 1.5rem;
    background: var(--accent);
    width: 45px;
    height: 45px;
}

.play-pause-btn:hover {
    background: var(--primary);
}

.time-display {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.volume-container:hover .volume-slider {
    opacity: 1;
}

.volume-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.volume-filled {
    height: 100%;
    background: var(--secondary);
    border-radius: 2px;
    width: 100%;
}

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

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-button-large:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-loading.show {
    opacity: 1;
    pointer-events: all;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Upload Note */
.video-upload-note {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-bg), #f0f8ff);
    border-radius: 16px;
    border: 2px dashed var(--secondary);
    text-align: center;
    display: none; /* Hidden by default since video is present */
}

.upload-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.video-upload-note h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-upload-note p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.upload-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.upload-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.upload-specs i {
    color: var(--accent);
}

/* Entertainment Details */
.entertainment-details {
    padding: 20px 0;
}

.entertainment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(31, 60, 95, 0.3);
}

.entertainment-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.entertainment-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 30px;
}

.entertainment-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.entertainment-quote {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 30px;
}

.entertainment-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.entertainment-quote cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

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

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .news-feature,
    .band-performance {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-title,
    .entertainment-title {
        font-size: 1.9rem;
    }
    
    .media-coverage-section,
    .entertainment-section {
        padding: 60px 0;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .media-container,
    .entertainment-container {
        padding: 0 15px;
    }
    
    .news-feature,
    .band-performance {
        gap: 30px;
    }
    
    .news-title,
    .entertainment-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .news-description,
    .entertainment-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .news-highlights,
    .entertainment-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .video-wrapper {
        border-radius: 12px;
        border-width: 2px;
    }
    
    .custom-video-player {
        border-radius: 12px;
        border-width: 2px;
    }
    
    .play-button-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .control-btn {
        font-size: 1rem;
        padding: 6px;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .volume-slider {
        width: 60px;
    }
    
    .controls-row {
        gap: 10px;
    }
    
    .controls-left,
    .controls-right {
        gap: 10px;
    }
    
    .video-upload-note {
        padding: 20px;
        margin-top: 20px;
    }
    
    .upload-specs {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .media-coverage-section,
    .entertainment-section {
        padding: 40px 0;
    }
    
    .media-container,
    .entertainment-container {
        padding: 0 10px;
    }
    
    .news-title,
    .entertainment-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .news-badge,
    .entertainment-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .watch-full-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .entertainment-quote {
        padding: 20px;
    }
    
    .entertainment-quote blockquote {
        font-size: 1rem;
    }
    
    .upload-icon {
        font-size: 2.5rem;
    }
    
    .video-upload-note h4 {
        font-size: 1.1rem;
    }
    
    .video-upload-note p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .news-feature,
    .band-performance {
        gap: 20px;
    }
    
    .news-title,
    .entertainment-title {
        font-size: 1.3rem;
    }
    
    .video-controls {
        padding: 15px 10px 10px;
    }
    
    .time-display {
        font-size: 0.8rem;
    }
    
    .volume-container {
        display: none; /* Hide volume on very small screens */
    }
}