/* Brutalist Design System */
:root {
    --black: #0a0a0a;  /* Softer than pure black */
    --white: #f8f8f8;  /* Softer than pure white */
    --gray: #666666;   /* Medium gray for text */
    --primary: #0a0a0a; /* Black for all primary elements */
    --secondary: #333333; /* Dark gray for secondary elements */
    --accent: #666666; /* Medium gray for accents */
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --border-gray: #e0e0e0;
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

a:focus:not(.btn):not(.nav-link):not(.social-link),
button:focus:not(.btn) {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px var(--white);
}

/* Links */
a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b3b3b3; /* Light gray */
    text-decoration: underline;
}

/* Remove underlines from buttons, social media icons, highlights, and classes slider */
.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.nav-link.cta-button:hover,
.social-link:hover,
.highlights span:hover,
.highlight-tag:hover,
.class-slide a:hover {
    text-decoration: none;
}

/* Typography hierarchy */
h1 { 
    font-size: 3rem; 
    font-weight: 700; 
}

h2 { 
    font-size: 2rem; 
    font-weight: 600; 
}

h3 { 
    font-size: 1.5rem; 
    font-weight: 500; 
}

body { 
    font-size: 1rem; 
    line-height: 1.6; 
}

/* Micro-interactions */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Keep focus outline for accessibility on other elements */
*:focus:not(a):not(button) {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b35;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Hide skip link on mobile - not needed */
@media (max-width: 768px) {
    .skip-link {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
    position: relative;
    font-weight: 400;
}

/* Override body styles for admin pages */
body.admin-body {
    background: var(--white);
    color: var(--black);
}

/* Force admin content to be visible on desktop */
@media (min-width: 769px) {
    .admin-content {
        display: flex;
        visibility: visible;
        opacity: 1;
        position: relative;
        z-index: 1;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .admin-dashboard {
        display: block;
        visibility: visible;
        opacity: 1;
        position: relative;
    }
    
    .admin-sidebar {
        width: 250px;
        flex-shrink: 0;
        background: var(--white);
        border-right: 2px solid var(--black);
        padding: 20px;
        min-height: calc(100vh - 80px);
    }
    
    .admin-main {
        flex: 1;
        background: var(--white);
        padding: 30px;
        min-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .admin-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-menu-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background: var(--white);
        border: 2px solid var(--black);
        color: var(--black);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .admin-menu-item:hover {
        background: var(--black);
        color: var(--white);
    }
    
    .admin-menu-item.active {
        background: var(--primary);
        color: var(--white);
    }
}

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

/* Reduce container padding on mobile to prevent overflow */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Consistent section styling */
.section {
    padding: 4rem 0;
}

.section--dark {
    background: var(--black);
}

.section--black {
    background: var(--black);
}

.section--white {
    background: var(--white);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* Consistent spacing */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    border: 4px solid var(--white);
    padding: 1.5rem 2rem;
    background: var(--black);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 8px 8px 0 var(--primary);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: 2px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    background: transparent;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    background: var(--white);
    color: var(--black);
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-primary::before {
    background: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--black);
    z-index: 1000;
    border-bottom: 4px solid var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Desktop nav menu styles */
@media (min-width: 769px) {
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    }
}

/* Base nav link styles (applied to all screen sizes) */
.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link.cta-button {
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    border: 2px solid var(--white);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.nav-link.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

/* Desktop-only nav link styles */
@media (min-width: 769px) {
    .nav-link:hover {
        color: var(--white);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link.cta-button:hover::before {
    left: 0;
}

.nav-link.cta-button:hover {
    background: var(--white);
    color: var(--black);
    transform: none;
    letter-spacing: 1px;
    }
}

/* Dropdown - Desktop Only */
@media (min-width: 769px) {
    .nav-dropdown {
        position: relative;
        margin-right: 2rem;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        text-decoration: none !important;
    }
    
    .dropdown-toggle:hover {
        text-decoration: none !important;
    }
    
    .dropdown-toggle span {
        text-decoration: none;
    }
    
    .dropdown-toggle:hover span {
        text-decoration: underline;
        text-underline-offset: 0.3rem;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
        cursor: pointer;
        text-decoration: none !important;
        display: inline-block;
    }
    
    .dropdown-toggle:hover i,
    .dropdown-toggle:active i,
    .dropdown-toggle.active i {
        text-decoration: none !important;
    }

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

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px) scaleY(0);
        transform-origin: top center;
        background: var(--black);
        border: 4px solid var(--white);
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        box-shadow: 8px 8px 0 var(--accent);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }

    .dropdown-link {
        display: block;
        padding: 15px 20px;
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 2px solid var(--white);
        transition: all 0.2s ease;
        transform: translateY(-5px);
        opacity: 0;
        animation: dropdownLinkFadeIn 0.3s ease forwards;
        animation-delay: calc(var(--link-index, 0) * 0.05s);
    }
    .dropdown-link:hover {
        background: var(--white);
        color: var(--black);
    }
    .dropdown-link:last-child {
        border-bottom: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.hamburger:focus {
    outline: none;
}

.bar {
    width: 25px;
    height: 4px;
    background: var(--white);
    transition: 0.3s;
}

/* Hamburger active state (X) */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Promo Banner */
.promo-banner {
    background: var(--primary);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 80px;
    width: 100%;
    z-index: 999;
    border-bottom: 4px solid var(--white);
    display: none;
}

.promo-banner.show {
    display: block;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.promo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.promo-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.promo-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.promo-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    border: 2px solid var(--white);
    transition: all 0.2s ease;
}

.promo-close:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Video element styling */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Image fallback (hidden by default, shown only if video fails to play) */
.hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    display: none;
}

/* Gradient Mesh Background - overlay removed */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 0, 0, 0.05) 0%, 
        rgba(255, 0, 0, 0.1) 25%, 
        rgba(255, 0, 0, 0.05) 50%, 
        rgba(255, 0, 0, 0.1) 75%, 
        rgba(255, 0, 0, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
}

/* Bottom fade for smooth transition */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
    z-index: 4;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-3d {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    background: var(--black);
}

.hero-logo {
    width: 200px;
    height: 200px;
}

@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

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

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 0.9;
    text-shadow: 
        -1px -1px 0 var(--black),
        1px -1px 0 var(--black),
        -1px 1px 0 var(--black),
        1px 1px 0 var(--black);
}

.hero-subtitle {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 0.9;
    text-shadow: 
        -1px -1px 0 var(--white),
        1px -1px 0 var(--white),
        -1px 1px 0 var(--white),
        1px 1px 0 var(--white);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

/* Classes Section */
.classes {
    padding: 4rem 0;
    background: var(--black);
}

.classes-slider {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--white);
    background: var(--black);
    height: 45vh;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 95%;
    margin: 0 auto;
}

/* Loading Skeletons */
.classes-loading {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.skeleton-slide {
    flex: 1;
    height: 80%;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border: 2px solid var(--white);
    border-radius: 4px;
    max-width: 300px;
}

.schedule-loading {
    padding: 1rem;
}

.skeleton-row {
    height: 60px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border: 2px solid var(--white);
    margin-bottom: 1rem;
    border-radius: 4px;
}

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

.classes-loading.hidden,
.schedule-loading.hidden {
    display: none;
}

.class-slide {
    display: none;
    padding: 1rem 2rem;
    text-align: center;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.class-slide.active {
    display: flex;
}


.class-content {
    max-width: 98%;
    margin: 0 auto;
    height: auto;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent;
    color: var(--white);
    padding: 1rem;
}




.class-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    border: 3px solid var(--white);
}


.class-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin: 0.5rem 0 0.5rem 0;
    text-align: center;
    flex-shrink: 0;
}


.class-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    text-align: center;
    opacity: 0.9;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}

.class-slide:hover .class-content p {
    color: #b3b3b3;
}


.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--white);
    color: var(--black);
    border: 4px solid var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--primary);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 15px;
    height: 15px;
    background: var(--black);
    border: 3px solid var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--white);
}

.dot:hover {
    background: var(--white);
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: var(--black);
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.location-tab {
    padding: 12px 24px;
    background: var(--black);
    border: 4px solid var(--white);
    color: var(--white);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.location-tab:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--primary);
}

.location-tab.active {
    background: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--primary);
}


.schedule-filters {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Schedule Filter Transitions */
.schedule-grid {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.schedule-grid.filtering {
    opacity: 0.7;
    transform: scale(0.98);
}

.schedule-grid.filtered {
    opacity: 1;
    transform: scale(1);
}

.schedule-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.schedule-item.entering {
    opacity: 0;
    transform: translateY(20px);
}

.schedule-item.entered {
    opacity: 1;
    transform: translateY(0);
}

.schedule-item.exiting {
    opacity: 0;
    transform: translateY(-20px);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.filter-group label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    white-space: nowrap;
}

.filter-boxes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.filter-box {
    padding: 12px 16px;
    background: var(--black);
    border: 4px solid var(--white);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
}

/* Mobile styles for filter boxes */
@media (max-width: 768px) {
    .filter-box {
        padding: 6px 10px;
        font-size: 0.6rem;
        letter-spacing: 0.3px;
        white-space: normal;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.0;
        word-break: break-word;
        hyphens: auto;
        max-width: 120px;
    }
}

.filter-box:hover {
    background: var(--primary);
    color: var(--white);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--primary);
}

.filter-box.active {
    background: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.schedule-table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
    border: 4px solid var(--white);
    background: var(--black);
    min-height: 360px; /* 6 rows × 60px = 360px */
}

/* Schedule content wrapper */
.schedule-content {
    width: 100%;
    display: flex;
    justify-content: center; /* Center the table wrapper */
}

/* Mobile responsive table wrapper */
.schedule-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS - fallback only */
    max-width: 100%; /* Ensure it doesn't exceed viewport */
    display: flex;
    justify-content: center; /* Center the table */
}

/* On mobile, allow table wrapper to extend slightly for better scroll experience */
@media (max-width: 480px) {
    .schedule-table-wrapper {
        margin: 0 -1rem; /* Extend to edges on small screens */
        padding: 0 1rem; /* Add padding back inside */
        display: flex;
        justify-content: center; /* Center the table */
    }
    
    .schedule-table {
        margin: 2rem auto 0; /* Ensure table is centered */
    }
}

/* Small mobile devices (iPhone SE and similar - 375px and below) */
@media (max-width: 375px) {
    .schedule-content {
        padding: 0; /* Remove padding to allow full-width scroll */
        overflow: visible; /* Allow wrapper to extend */
    }
    
    .schedule-table-wrapper {
        margin: 0 -1rem; /* Extend to edges for full-width scroll */
        padding: 0 1rem; /* Add padding on right only, left edge flush for scroll */
        display: block; /* Change from flex to block for proper scroll */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table {
        min-width: 600px; /* Force scroll within wrapper on extremely small screens */
        margin: 2rem 0 0 0; /* Top margin only, no left/right to allow full scroll */
        width: auto; /* Let it be its natural width */
    }
    
    .schedule-header-row > div,
    .schedule-row > div {
        white-space: nowrap;
        min-width: 100px;
    }
}

/* Address copying styles */
.address-clickable {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px;
    border-radius: 3px;
    color: inherit;
}

.address-clickable:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.address-clickable .copy-btn {
    position: relative;
    flex-shrink: 0;
    margin-left: 8px;
}

/* Ensure copy button is properly positioned in main location cards */
.location-card .address-clickable .copy-btn {
    position: relative;
    flex-shrink: 0;
    margin-left: 8px;
}

/* Ensure copy button hover works in main location cards */
.location-card .address-clickable:hover .copy-btn {
    opacity: 1;
    transform: scale(1);
}

/* Ensure copy button hover effect works in main location cards */
.location-card .copy-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

/* Ensure copy button hover effect works in footer */
.footer-location .copy-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-50%) scale(1.1);
}

.address-clickable:hover .address-text {
    color: var(--white);
}

.address-clickable:hover .copy-btn {
    opacity: 1;
    transform: scale(1);
}

.copy-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
    padding: 5px 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.8);
    border-radius: 3px;
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.footer-location .copy-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* Footer copy button styling */
.footer-location .address-clickable {
    position: relative;
    display: inline-block;
    color: var(--white);
}

.footer-location p.address-clickable {
    color: var(--white);
}

.footer-location .address-clickable strong,
.footer-location p.address-clickable strong,
.footer-location p strong {
    color: var(--white);
    font-weight: 700;
}

.footer-location .copy-btn {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    vertical-align: middle;
    opacity: 0;
}

.footer-location .address-clickable:hover .copy-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.schedule-header {
    display: block !important;
    margin-bottom: 0;
    width: 100%;
}

.schedule-header-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    border-bottom: 2px solid var(--white);
    min-height: 60px;
    align-items: center;
    background: #f5f5f5;
    width: 100%;
}

.schedule-header-row > div {
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-right: 2px solid var(--white);
    background: #f5f5f5;
    color: var(--black);
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    white-space: nowrap;
}

.schedule-header-row > div:last-child {
    border-right: none;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid var(--white);
    min-height: 60px;
    align-items: center;
}

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

.schedule-row > div {
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-right: 2px solid var(--white);
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-row > div:last-child {
    border-right: none;
}

.schedule-row:nth-child(even) > div {
    background: var(--black);
}

.schedule-row.empty > div {
    color: transparent;
    pointer-events: none;
}

.schedule-row.closed-message {
    background: var(--primary);
    color: var(--white);
    grid-template-columns: 1fr 3fr 1fr;
}

.schedule-row.closed-message > div {
    background: var(--primary);
    color: var(--white);
    border-right: 2px solid var(--primary);
}

.schedule-row.closed-message > div:last-child {
    border-right: none;
}

.closed-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    min-width: 0;
    word-break: break-word;
}

/* Responsive adjustments for mobile - make content smaller to fit */
@media (max-width: 820px) {
    .schedule-header-row {
        grid-template-columns: 0.7fr 1.15fr 1.15fr !important; /* Match row column proportions */
    }
}

@media (max-width: 768px) {
    .schedule-table {
        border-width: 2px; /* Thinner border on mobile */
    }
    
    .schedule-header-row {
        min-height: 45px;
        border-bottom-width: 1px;
        grid-template-columns: 0.7fr 1.15fr 1.15fr !important; /* Match row column proportions */
    }
    
    .schedule-header-row > div {
        padding: 8px 4px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        min-height: 45px;
        font-weight: 600;
    }
    
    .schedule-row.closed-message {
        grid-template-columns: 1fr 4fr 1fr;
    }
    
    .closed-text {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    /* Schedule mobile fixes - compact layout */
    .schedule-row {
        grid-template-columns: 0.7fr 1.15fr 1.15fr; /* Slightly narrower time column */
        min-height: 45px;
        border-bottom-width: 1px;
    }
    
    .schedule-row > div {
        padding: 6px 4px;
        font-size: 0.6rem;
        min-height: 45px;
        word-break: break-word;
        white-space: normal !important;
        line-height: 1.1;
        overflow: visible !important;
        text-overflow: unset !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        letter-spacing: 0.2px;
    }
    
    .schedule-row > div:nth-child(1) {
        font-size: 0.55rem; /* Time column - smallest */
        font-weight: 600;
    }
    
    .schedule-row > div:nth-child(2),
    .schedule-row > div:nth-child(3) {
        font-size: 0.55rem; /* Class columns - compact */
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
}

/* Extra small devices (iPhone SE - 375px and below) - even more compact */
@media (max-width: 375px) {
    .schedule-header-row {
        grid-template-columns: 0.7fr 1.15fr 1.15fr !important; /* Match row column proportions */
    }
    
    .schedule-header-row > div {
        padding: 6px 3px;
        font-size: 0.6rem;
        letter-spacing: 0.3px;
        min-height: 40px;
    }
    
    .schedule-row {
        min-height: 40px;
    }
    
    .schedule-row > div {
        padding: 5px 3px;
        font-size: 0.5rem;
        min-height: 40px;
        line-height: 1.0;
    }
    
    .schedule-row > div:nth-child(1) {
        font-size: 0.5rem;
    }
    
    .schedule-row > div:nth-child(2),
    .schedule-row > div:nth-child(3) {
        font-size: 0.5rem;
    }
}

/* Handle long class names in schedule */
.schedule-row > div:nth-child(2),
.schedule-row > div:nth-child(3) {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--black);
}

.pricing-iframe {
    border: 4px solid var(--white);
    background: var(--white);
    box-shadow: 20px 20px 0 var(--accent);
    position: relative;
}

.pricing-iframe::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: var(--primary);
    z-index: -1;
}

.pricing-iframe iframe {
    display: block;
    border: none;
}

/* Locations Section */
.locations {
    padding: 4rem 0;
    background: var(--black);
}

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

.location-card {
    border: 1px solid #333;
    background: var(--black);
    padding: 3rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.location-card:hover {
    border-color: #666;
}

.location-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.location-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.info-item span,
.info-item div {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--white);
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    min-height: 2rem;
    align-items: center;
    flex-shrink: 0;
    margin: 0.5rem 0;
}

/* Location card highlights - prevent bleeding */
.info-item .highlights {
    margin-top: 0;
    min-height: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    word-wrap: break-word;
}

.highlights span {
    background: var(--black);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid var(--black);
    position: relative;
}


.highlights span:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black) !important;
}

/* Merch Section */
.merch {
    padding: 4rem 0;
    background: var(--black);
}

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

.merch-item {
    border: 2px solid var(--white);
    background: var(--black);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.merch-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid var(--white);
    margin-bottom: 1rem;
}

.merch-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.merch-price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.merch-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.merch-cta {
    text-align: center;
}

.merch-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile App Section */
.mobile-app {
    padding: 3rem 0;
    background: var(--black);
    color: var(--white);
}

.app-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
}

.app-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    border: 2px solid var(--white);
    padding: 1.5rem 2rem;
    background: var(--black);
    position: relative;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.app-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: normal;
}

.app-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.app-link {
    display: inline-block;
    height: 60px;
}

.app-link img {
    height: 60px;
    width: 200px;
    object-fit: contain;
    transition: transform 0.2s ease;
    border-radius: 8px;
    display: block;
}


.app-link:hover img {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}


@media (max-width: 768px) {
    .classes-slider {
        height: 60vh;
    }

    .class-content {
        height: auto;
        min-height: 45vh;
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .class-content h3 {
        font-size: 1.8rem;
        margin: 0.25rem 0;
    }

    .class-content p {
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 100%;
        width: 100%;
    }

    .class-icon {
        display: none; /* Hide icons on mobile */
    }

    .class-features {
        display: none; /* Hide highlights on mobile */
    }

}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-section {
    border: 2px solid var(--white);
    background: var(--black);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.contact-info-section {
    border: 2px solid var(--white);
    background: var(--black);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.contact-form-section .contact-form {
    width: 100%;
    max-width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 4px solid var(--white);
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white);
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    background: var(--accent);
    color: var(--black);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #f44336;
    border-width: 4px;
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #4CAF50;
}

.field-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

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

.contact-details {
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.contact-item span:not(.address-clickable) {
    text-align: center;
    display: inline-block;
    width: auto;
}

/* For contact label items (without icons), ensure they're centered */
.contact-item.contact-label {
    justify-content: center;
}

.contact-item.contact-label::before {
    content: '';
    display: block;
    width: 20px;
    flex-shrink: 0;
}

.contact-item.contact-label span {
    text-align: center;
    flex: 1;
}

.contact-item .address-clickable {
    color: var(--white);
}

.contact-item .address-clickable strong,
.contact-item span.address-clickable strong,
.contact-item span strong {
    color: var(--white);
    font-weight: 700;
}

.social-links h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    border: 4px solid var(--white);
}

.social-link:hover {
    background: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--primary);
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Team Grid - Simple vertical stack */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Team Member - Clean layout without cards */
.team-member {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

/* Even team members - image on left */
.team-member:nth-child(even) {
    flex-direction: row;
}

/* Odd team members - image on right */
.team-member:nth-child(odd) {
    flex-direction: row-reverse;
}

.team-member-image {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 8px 8px 0 var(--accent);
}

.team-member-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.team-member .title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-member .bio {
    color: var(--white);
    line-height: 1.7;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    font-size: 1rem;
}

.bio-section {
    margin-bottom: 2rem;
}

.bio-section h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.bio-section p {
    margin-bottom: 1rem;
}

.bio-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bio-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.bio-section li::marker {
    color: var(--primary);
}

.bio-section:last-child {
    margin-bottom: 0;
}

.bio-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-section p {
    margin-bottom: 0.5rem;
}

.bio-section ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.bio-section li {
    margin-bottom: 0.25rem;
}

/* Sign Up Section */
.signup {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    border: 4px solid var(--white);
    padding: 1.5rem 2rem;
    background: var(--black);
    position: relative;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 8px 8px 0 var(--primary);
}

.signup-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: normal;
}

.signup .btn-primary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.signup .btn-primary::before {
    background: var(--white);
}

.signup .btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo,
.footer-locations,
.footer-contact,
.footer-app {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .footer-logo,
    .footer-locations,
    .footer-contact,
    .footer-app {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .footer-locations {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-app {
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

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

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-location h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-location p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-location p strong {
    color: var(--white);
    font-weight: 700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary);
    width: 16px;
}

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

.footer-app h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-app .app-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-app .app-links a {
    display: inline-block;
    height: 40px;
}

.footer-app .app-links img {
    height: 40px;
    width: 120px;
    object-fit: contain;
    transition: transform 0.2s ease;
    border-radius: 8px;
    display: block;
}

.footer-app .app-links img:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.footer-bottom {
    border-top: 2px solid var(--white);
    padding-top: 1rem;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Team Hero Section */
.team-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
}

.team-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.team-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--white);
}

.team-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

.team-hero-description p {
    margin-bottom: 1rem;
}

/* Team Members Section */
.team-members {
    padding: 5rem 0;
    background: var(--black);
}

/* Location Pages */
.location-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-details {
    padding: 5rem 0;
    background: var(--black);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid var(--white);
    padding: 20px;
    background: var(--black);
    position: relative;
}

.location-info h2::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: var(--primary);
    z-index: -1;
}

.location-highlights {
    margin-top: 2rem;
}

.location-highlights h3,
.location-hours h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.highlight-tag {
    background: var(--black);
    color: var(--white);
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid var(--black);
    position: relative;
    transition: all 0.2s ease;
}


.highlight-tag:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black) !important;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--black);
    border: 3px solid var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 8px 8px 0 var(--accent);
    transition: all 0.2s ease;
}

.hours-day:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 var(--primary);
}

.hours-day span:first-child {
    color: var(--white);
}

.hours-day span:last-child {
    color: var(--white);
    text-align: right;
}

.location-map h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.map-container {
    border: 4px solid var(--white);
    box-shadow: 15px 15px 0 var(--accent);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
    
    .hours-day {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    /* Fix location card alignment on mobile */
    .location-card {
        padding: 1.5rem 1rem;
    }
    
    .location-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .location-info {
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-item .info-label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .info-item .info-content {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .location-highlights {
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .location-highlights h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .highlight-tags {
        gap: 0.5rem;
    }
    
    .highlight-tag {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

/* Promo Page */
.promo-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 80px;
}

.promo-hero-image {
    width: 100%;
    height: 100%;
}

.promo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.promo-hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.promo-hero-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-content-section {
    padding: 5rem 0;
    background: var(--black);
}

.promo-main-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-description {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: left;
}

.promo-description p {
    margin-bottom: 1.5rem;
}

.promo-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.promo-description a:hover {
    text-decoration: underline;
}

.promo-image-section {
    margin-bottom: 3rem;
    border: 4px solid var(--white);
    box-shadow: 15px 15px 0 var(--accent);
    position: relative;
}

.promo-image-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: var(--primary);
    z-index: -1;
}

.promo-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-cta {
    margin-top: 2rem;
}

/* Signup Page */
.signup-page {
    padding: 5rem 0;
    background: var(--black);
    min-height: calc(100vh - 80px);
}

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

.signup-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.signup-header p {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-iframe {
    border: 4px solid var(--white);
    background: var(--white);
    box-shadow: 20px 20px 0 var(--accent);
    position: relative;
}

.signup-iframe::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: var(--primary);
    z-index: -1;
}

.signup-iframe iframe {
    display: block;
    border: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: 4px solid var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 8px 8px 0 var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 var(--primary);
}



/* Responsive Design */
@media (max-width: 768px) {
    
    .hamburger {
        display: flex !important;
        z-index: 10001 !important;
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important; /* Vertically center */
        flex-direction: column !important;
        cursor: pointer !important;
        gap: 4px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* CLEAN MOBILE NAV - REBUILT FROM SCRATCH */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--black);
        z-index: 10000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 4rem 2rem 2rem 2rem;
        box-sizing: border-box;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        margin: 0.25rem 0;
        padding: 0.25rem;
        color: var(--white);
        text-decoration: underline;
        text-decoration-color: var(--white);
        text-underline-offset: 0.5rem;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }

    .nav-menu .nav-link.cta-button {
        background: var(--white);
        color: var(--black);
        border: 2px solid var(--black);
        text-decoration: none;
        padding: 1rem;
        margin: 1rem 0 0 0;
        border-radius: 0;
        order: 999;
    }

    .nav-menu .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-dropdown .dropdown-toggle {
        margin: 0.25rem 0;
        padding: 0.25rem;
        color: var(--white);
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .nav-menu .nav-dropdown .dropdown-toggle {
        text-decoration: none !important;
    }
    
    .nav-menu .nav-dropdown .dropdown-toggle:hover {
        text-decoration: none !important;
    }
    
    .nav-menu .nav-dropdown .dropdown-toggle span {
        text-decoration: none;
    }
    
    .nav-menu .nav-dropdown .dropdown-toggle:hover span {
        text-decoration: underline;
        text-decoration-color: var(--white);
        text-underline-offset: 0.5rem;
    }

    .nav-menu .nav-dropdown .dropdown-toggle i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        text-decoration: none !important;
        cursor: pointer;
        display: inline-block;
    }
    
    .nav-menu .nav-dropdown .dropdown-toggle:hover i,
    .nav-menu .nav-dropdown .dropdown-toggle:active i,
    .nav-menu .nav-dropdown.active .dropdown-toggle i {
        text-decoration: none !important;
    }

    .nav-menu .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
        cursor: pointer;
    }

    .nav-menu .nav-dropdown .dropdown-menu {
        display: none;
        width: 100%;
        text-align: center;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        position: static !important;
    }

    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .nav-menu .nav-dropdown .dropdown-link {
        margin: 0.25rem 0;
        padding: 0.25rem;
        color: var(--white);
        text-decoration: underline;
        text-decoration-color: var(--white);
        text-underline-offset: 0.5rem;
        font-weight: 600;
        text-transform: uppercase;
        display: block;
        width: 100%;
        background: none;
        border: none;
        text-align: center;
        align-self: center;
    }

    /* Removed conflicting dropdown styles */


    .nav-dropdown .dropdown-toggle {
        text-decoration: none !important;
    }
    
    .nav-dropdown .dropdown-toggle:hover {
        text-decoration: none !important;
    }
    
    .nav-dropdown .dropdown-toggle span {
        text-decoration: none;
    }
    
    .nav-dropdown .dropdown-toggle:hover span {
        text-decoration: underline;
    }
    
    .nav-dropdown .dropdown-toggle i {
        transition: transform 0.3s ease;
        text-decoration: none !important;
        display: inline-block;
    }
    
    .nav-dropdown .dropdown-toggle:hover i,
    .nav-dropdown .dropdown-toggle:active i,
    .nav-dropdown.active .dropdown-toggle i {
        text-decoration: none !important;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .logo-3d {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

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

    .app-content-centered {
        min-height: 300px;
        padding: 2rem 0;
    }

    .app-text h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .schedule-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-group {
        flex-direction: row;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .team-hero {
        height: 50vh;
    }
    
    .team-hero-text {
        padding: 1.5rem;
    }
    
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-hero-description {
        font-size: 0.9rem;
    }

    /* Mobile: All team members stack vertically */
    .team-member {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .team-member-image {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .team-member h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .team-member {
        gap: 2rem;
    }
    
    .team-member-image {
        width: 250px;
        height: 350px;
    }
    
    .team-member h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .team-hero-text {
        padding: 1rem;
    }
    
    .team-hero-title {
        font-size: 2rem;
    }
    
    .team-hero-subtitle {
        font-size: 1rem;
    }
    
    .team-hero-description {
        font-size: 0.85rem;
    }

    .admin-panel {
        width: 250px;
        right: -250px;
    }

/* Admin Panel Styles */
.admin-body {
    background: var(--white) !important;
    color: var(--black) !important;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Override global animations for admin elements - but not sections */
.admin-body *:not(.admin-section) {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
}

/* Force admin sections to be hidden by default */
.admin-body .admin-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.admin-body .admin-section.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    color: var(--black) !important;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--black);
    padding: 20px;
    box-sizing: border-box;
}

.admin-login-form {
    background: var(--white);
    color: var(--black);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.admin-logo {
    margin-bottom: 30px;
}

.admin-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    max-width: 60px;
    max-height: 60px;
}

.admin-logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--black);
}

.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--black);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    max-width: 100%;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.login-error {
    color: var(--primary);
    margin-top: 15px;
    font-weight: 600;
    display: none;
}

.admin-setup-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.admin-dashboard {
    display: none;
    min-height: 100vh;
    background: var(--white);
    color: var(--black);
}

.admin-nav {
    background: var(--black);
    border-bottom: 4px solid var(--primary);
    padding: 15px 0;
}

.admin-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.admin-nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.admin-nav-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.admin-nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 80px);
}

/* Rich Text Editor Styling */
.rich-text-editor {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.editor-toolbar {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.format-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.format-btn:hover {
    background: #e9ecef;
}

.format-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.editor-content {
    min-height: 120px;
    padding: 15px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    border: none;
    outline: none;
    resize: vertical;
}

.editor-content:empty:before {
    content: attr(placeholder);
    color: #999;
    font-style: italic;
}

/* Location Tab Switching */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.admin-tab {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-tab:hover {
    background: #e9ecef;
}

.admin-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.schedule-location {
    display: none;
}

.schedule-location.active {
    display: block;
}

.admin-sidebar {
    width: 250px;
    background: var(--white);
    color: var(--black);
    border-radius: 10px;
    padding: 20px;
    margin-right: 20px;
    height: fit-content;
}

.admin-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-menu-item {
    display: block;
    padding: 15px 20px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    background: var(--primary);
    color: var(--white);
}

.admin-main {
    flex: 1;
    background: var(--white) !important;
    color: var(--black) !important;
    border-radius: 10px;
    padding: 30px;
    min-height: 500px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.admin-section {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.admin-section.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    color: var(--black) !important;
}

.admin-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
}

.admin-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
    color: var(--black);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--black);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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


.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 10000;
    font-weight: 600;
}


    /* App store buttons centering in mobile app section */
    .mobile-app .app-links {
        justify-content: center;
        display: flex;
        gap: 1rem;
    }

    /* Footer contact centering */
    .footer-contact .contact-info {
        text-align: center;
    }

    .footer-contact .contact-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Mobile nav - keep dropdown functionality - REMOVED DUPLICATE RULE */
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem; /* Consistent with earlier rule, prevents overflow */
    }

    .section-title {
        font-size: 2rem;
        padding: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .class-slide {
        padding: 0.2rem 2rem 1rem 2rem;
    }

    .classes-slider {
        height: 55vh;
    }

    .class-content {
        height: auto;
        min-height: 40vh;
        padding: 1.25rem 0.75rem;
        max-width: 100%;
    }

    .class-content h3 {
        font-size: 1.6rem;
        height: auto;
        margin: 0.25rem 0;
    }

    .class-content p {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: 100%;
        width: 100%;
    }

    .highlights {
        min-height: 1.5rem;
    }

    .location-card,
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }

    .app-text h2 {
        font-size: 1.5rem;
    }

    .signup-content h2 {
        font-size: 2rem;
    }
}

/* Class Page Styles */
.class-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.class-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.class-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.class-hero-overlay .container {
    text-align: center;
    color: var(--white);
}

.class-hero-overlay h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.class-hero-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.class-content-section {
    padding: 4rem 0;
    background: var(--black);
}


/* Class Page Specific Styles */
.class-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.class-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem 3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 95%;
    width: 85%;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.class-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.class-hero-text p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--white);
}

.class-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.class-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-description {
    padding: 4rem 0;
    background: var(--black);
}

.class-description-content {
    max-width: 800px;
    margin: 0 auto;
}

.class-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

.class-description-text h2,
.class-description-text h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.class-description-text p {
    margin-bottom: 1.5rem;
}

.class-gallery {
    padding: 4rem 0;
    background: var(--black);
}

.class-gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.class-schedule {
    padding: 5rem 0;
    background: var(--black);
}

.class-schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    border: 4px solid var(--white);
    padding: 1.5rem 2rem;
    background: var(--black);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.class-schedule .schedule-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--black);
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--white);
    color: var(--black);
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.schedule-day {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.schedule-day h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary);
}

.schedule-item .time {
    display: block;
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
}

.schedule-item .location {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.schedule-item .instructor {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.no-schedule {
    text-align: center;
    color: var(--white);
    font-style: italic;
    padding: 2rem;
}

.class-cta {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.class-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.class-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.class-cta .btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.class-cta .btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .class-hero {
        height: 50vh;
    }
    
    .class-hero-text {
        padding: 1.5rem 2rem;
        max-width: 95%;
        min-width: 400px;
        width: 80%;
    }
    
    .class-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .class-hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .class-hero-text {
        padding: 1rem 1.5rem;
        max-width: 98%;
        min-width: 300px;
        width: 90%;
    }
    
    .class-hero-text h1 {
        font-size: 2rem;
    }
    
    .class-hero-text p {
        font-size: 1rem;
    }
    
    .schedule-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.class-description {
    margin-bottom: 3rem;
}

.class-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}



.class-cta {
    margin-top: 3rem;
}

.class-schedule-section {
    padding: 4rem 0;
    background: var(--black);
}

.class-schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Class Link Styles */
.class-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* Smooth Page Transitions */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
}

/* Page transition overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

/* CSS-Only Page Transitions */
body {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Page load animations */
.page-enter {
    animation: pageEnter 0.8s ease-out forwards;
}

@keyframes pageEnter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered content animations */
.content-fade-in {
    animation: contentFadeIn 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section animations - exclude navigation */
section:not(.navbar) {
    animation: sectionSlideIn 0.7s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
    transform: translateY(25px);
}

@keyframes sectionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered section delays */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }

/* Ensure navigation is excluded from animations */
.navbar {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Hide page content until navigation is ready */
body:not(.nav-ready) > *:not(.navbar) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.nav-ready > *:not(.navbar) {
    opacity: 1;
}

/* Logo Loader Animation */
.logo-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.logo-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.logo-loader img {
    width: 80px;
    height: 80px;
    animation: logoGlimmer 2s ease-in-out infinite;
}

@keyframes logoGlimmer {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
        transform: scale(1.05);
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
}

/* Section Transition Effects - Only apply to specific sections, not footer */
section:not(.footer):not(footer) {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Navigation Transitions */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation active state */
nav a.active {
    border-bottom: 2px solid var(--white);
    font-weight: bold;
}

/* Button Hover Effects - Consolidated with main .btn styles above */

/* Typography Animations */

/* Text Reveal Animation - Disabled to prevent visibility issues */
/* .text-reveal:not(.footer *):not(footer *) {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
} */

/* Staggered Animation for Lists */

/* Hero Text Animation - Removed to fix background text duplication */

/* Additional Gradient Effects */
.schedule-section {
    position: relative;
    overflow: hidden;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.05) 0%, 
        rgba(0, 0, 0, 0.02) 50%, 
        rgba(255, 0, 0, 0.05) 100%);
    z-index: -1;
}

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.03) 0%, 
        rgba(255, 0, 0, 0.02) 50%, 
        rgba(0, 0, 0, 0.03) 100%);
    z-index: -1;
}

/* Class tabs styles for admin */
.class-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 1rem;
}

.class-tab {
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.class-tab:hover {
    background: var(--gray);
}

.class-tab.active {
    background: var(--primary);
    color: white;
}

/* Progressive Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* Staggered animations for multiple elements */
.stagger-fade-in > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-fade-in.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-fade-in.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-fade-in.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-fade-in.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-fade-in.animate > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-fade-in.animate > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-fade-in.animate > * {
    opacity: 1;
    transform: translateY(0);
}

/* Event Listing Styles */
.event-listing-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.event-listing-hero .hero-image {
    width: 100%;
    height: 100%;
}

.event-listing-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-listing-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.event-listing-hero .hero-overlay .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.event-listing-hero .section-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--white);
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.event-listing-hero .section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin: 0;
}

.event-listing-description {
    padding: 3rem 0;
    background: var(--white);
}

.section-description-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    text-align: center;
}

.events-listing {
    padding: 5rem 0;
    background: var(--white);
}

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

.event-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.event-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--black);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-card-content {
    padding: 1.5rem;
}

.event-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.no-events {
    text-align: center;
    padding: 3rem 0;
    color: var(--gray);
}

/* Individual Event Page Styles */
.event-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.event-hero .hero-image {
    width: 100%;
    height: 100%;
}

.event-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-hero .hero-overlay .container {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gray);
    text-decoration: none;
}

.event-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--white);
}

.event-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.event-content {
    padding: 5rem 0;
    background: var(--white);
}

.event-description {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

.event-description p {
    margin-bottom: 1.5rem;
}

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

.event-description a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-description a:hover {
    color: var(--black);
}

.event-description u {
    text-decoration: underline;
}

.event-description ul,
.event-description ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.event-description ul {
    list-style-type: disc;
}

.event-description ol {
    list-style-type: decimal;
}

.event-description li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

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

.event-description h1,
.event-description h2,
.event-description h3,
.event-description h4 {
    margin: 2rem 0 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-description h1 {
    font-size: 2rem;
}

.event-description h2 {
    font-size: 1.75rem;
}

.event-description h3 {
    font-size: 1.5rem;
}

.event-description h4 {
    font-size: 1.25rem;
}

.event-description blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary);
    background: rgba(255, 0, 0, 0.05);
    font-style: italic;
}

.event-video-section,
.event-gallery-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--black);
}

.event-video-container {
    margin-top: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border: 2px solid var(--black);
}

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

.event-gallery {
    margin-top: 2rem;
}

.event-gallery .gallery-item {
    width: auto;
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
    border: 3px solid var(--black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--black);
    position: relative;
}

.event-gallery .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.event-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.error-message {
    text-align: center;
    padding: 3rem 0;
    color: var(--gray);
}

.error-message p {
    font-size: 1.2rem;
}

/* Responsive Styles for Events */
@media (max-width: 768px) {
    .event-listing-hero {
        height: 50vh;
    }
    
    .event-listing-hero .section-title {
        font-size: 2.5rem;
    }
    
    .event-listing-hero .section-subtitle {
        font-size: 1.2rem;
    }
    
    .section-description-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-title {
        font-size: 2.5rem;
    }
    
    .event-subtitle {
        font-size: 1.2rem;
    }
    
    .event-description {
        padding: 0 1rem;
    }
    
    .event-gallery .gallery-item {
        margin-bottom: 15px;
    }
}

