/* Custom Tailwind Configuration and Brand Colors */
:root {
    --bright-red: #ff0000;
    --dark-charcoal: #1a1a1a;
    --dark-steel: #333333;
    --dark-grey: #2d2d2d;
    --blood-red: #cc0000;
    --crimson-fire: #ff3333;
    --warm-off-white: #fafafa;
    --rich-burgundy: #722f37;
    --deep-red: #8b0000;
}

/* Custom Tailwind Classes */
.text-bright-red {
    color: var(--bright-red);
}
.bg-bright-red {
    background-color: var(--bright-red);
}
.text-dark-charcoal {
    color: var(--dark-charcoal);
}
.bg-dark-charcoal {
    background-color: var(--dark-charcoal);
}
.text-dark-steel {
    color: var(--dark-steel);
}
.bg-dark-steel {
    background-color: var(--dark-steel);
}
.text-dark-grey {
    color: var(--dark-grey);
}
.bg-dark-grey {
    background-color: var(--dark-grey);
}
.text-blood-red {
    color: var(--blood-red);
}
.bg-blood-red {
    background-color: var(--blood-red);
}
.text-crimson-fire {
    color: var(--crimson-fire);
}
.bg-crimson-fire {
    background-color: var(--crimson-fire);
}
.bg-warm-off-white {
    background-color: var(--warm-off-white);
}
.text-rich-burgundy {
    color: var(--rich-burgundy);
}
.bg-rich-burgundy {
    background-color: var(--rich-burgundy);
}
.text-deep-red {
    color: var(--deep-red);
}
.bg-deep-red {
    background-color: var(--deep-red);
}

/* Hover states */
.hover\:bg-bright-red:hover {
    background-color: var(--bright-red);
}
.hover\:bg-blood-red:hover {
    background-color: var(--blood-red);
}
.hover\:bg-crimson-fire:hover {
    background-color: var(--crimson-fire);
}
.hover\:text-bright-red:hover {
    color: var(--bright-red);
}
.hover\:bg-rich-burgundy:hover {
    background-color: var(--rich-burgundy);
}
.hover\:text-rich-burgundy:hover {
    color: var(--rich-burgundy);
}
.hover\:bg-deep-red:hover {
    background-color: var(--deep-red);
}
.hover\:text-deep-red:hover {
    color: var(--deep-red);
}

/* Typography - Kuvalda Sparta Gym Style - Bold and Impactful */
.gym-heading {
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: "Arial Black", "Helvetica", sans-serif;
}

.gym-subheading {
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.2;
    font-family: "Arial Black", "Helvetica", sans-serif;
}

.gym-body {
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark-grey);
}

.gym-body-bold {
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark-charcoal);
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* Section Headings */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

/* Card Typography */
.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bright-red);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-grey);
}

/* Button Styles */
.btn-primary {
    background-color: var(--bright-red);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--crimson-fire);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bright-red);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid var(--bright-red);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--bright-red);
    color: white;
}

.btn-cta {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(
        135deg,
        var(--crimson-fire) 0%,
        var(--bright-red) 100%
    );
}

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    padding: 0.75rem 2rem;
    border: 2px solid var(--dark-charcoal);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--dark-charcoal);
    color: white;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--bright-red);
    padding: 0.5rem 1rem;
    border: none;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--crimson-fire);
    text-decoration-thickness: 2px;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--bright-red);
}

.card-trainer {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.card-trainer:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.card-pricing {
    position: relative;
    border: 3px solid #e5e7eb;
}

.card-pricing.featured {
    border-color: var(--bright-red);
    transform: scale(1.05);
    box-shadow: 0 10px 30px -5px rgba(255, 0, 0, 0.2);
}

.card-pricing:hover {
    border-color: var(--blood-red);
}

.card-class {
    border-left: 4px solid var(--bright-red);
}

.card-class:hover {
    border-left-width: 8px;
    border-left-color: var(--crimson-fire);
}

/* Navigation Styles */
.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: var(--bright-red);
    color: white;
}

.nav-link.active {
    background-color: var(--bright-red);
    color: white;
}

/* Responsive Design Utilities */
@media (max-width: 768px) {
    .gym-heading {
        font-size: 2rem;
    }

    .gym-subheading {
        font-size: 1.5rem;
    }

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

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

/* Layout Utilities */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-padding-lg {
    padding: 6rem 0;
}

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

    .section-padding-lg {
        padding: 3rem 0;
    }
}

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

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

@media (min-width: 1200px) {
    .grid-trainer {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Spacing Utilities */
.space-y-custom > * + * {
    margin-top: 1.5rem;
}

.space-y-lg > * + * {
    margin-top: 2rem;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--bright-red);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--bright-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/*
 Visual Effects and Animations */
.text-gradient {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-red {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--blood-red) 100%
    );
}

.bg-gradient-dark {
    background: linear-gradient(
        135deg,
        var(--dark-charcoal) 0%,
        var(--dark-steel) 100%
    );
}

/* Hero Background Effects */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(255, 0, 0, 0.1) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

/* Animations */
@keyframes pulse-red {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

.pulse-red {
    animation: pulse-red 2s infinite;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

.shake:hover {
    animation: shake 0.5s ease-in-out;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(
            135deg,
            var(--bright-red),
            var(--crimson-fire)
        )
        1;
}

/* Focus States */
.focus-red:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: var(--bright-red);
    color: white;
}

::-moz-selection {
    background-color: var(--bright-red);
    color: white;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--warm-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--bright-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blood-red);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    .print-red {
        color: #000 !important;
        background: none !important;
    }
}
/ * Enhanced Navigation Styles */ #navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#navigation.nav-scrolled {
    background-color: rgba(51, 51, 51, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Navigation Links */
.nav-link-enhanced {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.nav-link-enhanced:hover::before {
    left: 100%;
}

.nav-link-enhanced:hover {
    background-color: var(--bright-red);
    color: white;
    transform: translateY(-2px);
}

.nav-link-enhanced.active {
    background-color: var(--bright-red);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Navigation CTA Button */
.btn-nav-cta {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    background: linear-gradient(
        135deg,
        var(--crimson-fire) 0%,
        var(--bright-red) 100%
    );
}

/* Mobile Navigation Links */
.nav-link-mobile {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.25rem 0;
}

.nav-link-mobile:hover {
    background-color: var(--bright-red);
    color: white;
    transform: translateX(8px);
}

.nav-link-mobile.active {
    background-color: var(--bright-red);
    color: white;
}

.nav-link-mobile-cta {
    display: block;
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link-mobile-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Body padding to account for fixed navigation */
body {
    padding-top: 80px;
}

/* Navigation responsive adjustments */
@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    #navigation .container-custom {
        padding: 0 1rem;
    }
}

/* Navigation animation for page load */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#navigation {
    animation: slideDown 0.5s ease-out;
}

/* Active page indicator */
.nav-link-enhanced.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--crimson-fire);
    border-radius: 2px;
}

/* Mobile menu animation improvements */
#mobile-menu {
    background: linear-gradient(
        135deg,
        rgba(51, 51, 51, 0.95) 0%,
        rgba(26, 26, 26, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
} /*
Keyboard Navigation Support */
body.keyboard-navigation *:focus {
    outline: 2px solid var(--bright-red) !important;
    outline-offset: 2px !important;
}

body.keyboard-navigation .nav-link-enhanced:focus,
body.keyboard-navigation .nav-link-mobile:focus,
body.keyboard-navigation .btn-nav-cta:focus {
    outline: 2px solid var(--crimson-fire) !important;
    outline-offset: 2px !important;
    background-color: var(--bright-red) !important;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bright-red);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Navigation loading states */
.nav-loading {
    opacity: 0.7;
    pointer-events: none;
}

.nav-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link-enhanced,
    .nav-link-mobile {
        border: 1px solid currentColor;
    }

    .nav-link-enhanced:hover,
    .nav-link-mobile:hover {
        background-color: var(--bright-red) !important;
        border-color: var(--bright-red) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    #navigation,
    .nav-link-enhanced,
    .nav-link-mobile,
    .btn-nav-cta,
    #mobile-menu {
        transition: none !important;
        animation: none !important;
    }

    .nav-link-enhanced::before {
        display: none;
    }
} /* Her
o Section Enhancements */
#hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Hero Background Video/Image */
#hero video,
#hero #hero-image {
    transition: transform 0.1s ease-out;
}

/* Hero Content Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: heroFadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: heroSlideUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Hero Title Enhancement */
.hero-title {
    position: relative;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red), var(--crimson-fire));
    border-radius: 2px;
}

/* Hero Feature Cards */
#hero .grid > div {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#hero .grid > div:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Button Enhancements */
#hero .btn-cta {
    position: relative;
    overflow: hidden;
}

#hero .btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

#hero .btn-cta:hover::before {
    left: 100%;
}

#hero .animate-bounce:hover {
    transform: translateX(-50%) scale(1.1);
    color: var(--bright-red);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    #hero .hero-title {
        font-size: 3rem;
    }

    #hero .hero-subtitle {
        font-size: 1.2rem;
    }

    #hero .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #hero .btn-cta,
    #hero .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* High Performance Mode */
@media (prefers-reduced-motion: reduce) {
    #hero video {
        display: none !important;
    }

    #hero .animate-fade-in,
    #hero .animate-slide-up,
    #hero .animate-bounce {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Dark Mode Support (future enhancement) */
@media (prefers-color-scheme: dark) {
    #hero .grid > div {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Print Styles */
@media print {
    #hero {
        min-height: 50vh;
        background: var(--dark-charcoal) !important;
    }

    #hero video,
    #hero #hero-image {
        display: none !important;
    }

    #hero .animate-bounce {
        display: none !important;
    }
} /* Ab
out Us Section Enhancements */
#about .card {
    transition: all 0.3s ease;
}

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

/* Stats Section */
.bg-gradient-dark {
    background: linear-gradient(
        135deg,
        var(--dark-charcoal) 0%,
        var(--dark-steel) 100%
    );
    position: relative;
    overflow: hidden;
}

.bg-gradient-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 0, 0, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
}

/* Trainers Section Enhancements */
.grid-trainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .grid-trainer {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile styles for trainer cards to prevent icon overlap */
@media (max-width: 768px) {
    .grid-trainer {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .card-trainer {
        padding: 1.5rem;
    }

    .card-trainer .relative.mb-6 {
        margin-bottom: 2.5rem !important;
    }

    .card-trainer .px-4.pb-6 {
        padding: 0 1rem 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .grid-trainer {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card-trainer {
        padding: 2rem 1rem;
        margin: 0 auto;
        max-width: 300px;
    }

    .card-trainer .relative.mb-6 {
        margin-bottom: 3rem !important;
    }

    .card-trainer .px-4.pb-6 {
        padding: 0 1rem 2rem 1rem;
    }
}

.card-trainer {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-trainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 0, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.card-trainer:hover::before {
    left: 100%;
}

.card-trainer:hover {
    border-color: var(--bright-red);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

/* Trainer Modal Styles */
#trainer-modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
    padding-top: 100px; /* Add top padding to account for fixed header */
}

#trainer-modal .bg-white {
    animation: slideUp 0.3s ease-out;
    max-height: 80vh; /* Reduced from 90vh to 80vh */
    overflow-y: auto;
    margin-top: 0; /* Ensure no additional top margin */
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal close button */
#trainer-modal button {
    transition: all 0.2s ease;
}

#trainer-modal button:hover {
    transform: scale(1.1);
    background-color: var(--bright-red);
    color: white;
}

/* Modal content styling */
#trainer-modal .bg-gradient-dark {
    position: relative;
}

#trainer-modal .bg-gradient-dark::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--bright-red),
        transparent
    );
}

/* Certification items */
#trainer-modal .bg-warm-off-white {
    transition: all 0.2s ease;
}

#trainer-modal .bg-warm-off-white:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

/* Responsive modal */
@media (max-width: 768px) {
    #trainer-modal {
        padding-top: 80px; /* Reduced padding for mobile */
    }

    #trainer-modal .bg-white {
        max-height: 85vh; /* Slightly more height on mobile */
    }

    #trainer-modal .p-8 {
        padding: 1.5rem;
    }

    #trainer-modal .bg-gradient-dark {
        padding: 2rem 1.5rem;
    }

    #trainer-modal .flex-col.md\\:flex-row {
        text-align: center;
    }

    #trainer-modal .text-3xl {
        font-size: 2rem;
    }
}

/* Modal scrollbar */
#trainer-modal .overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

#trainer-modal .overflow-y-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#trainer-modal .overflow-y-auto::-webkit-scrollbar-thumb {
    background: var(--bright-red);
    border-radius: 3px;
}

#trainer-modal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: var(--blood-red);
}

/* Accessibility improvements */
#trainer-modal [role="button"],
#trainer-modal button {
    outline: none;
}

#trainer-modal [role="button"]:focus,
#trainer-modal button:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

/* Animation for trainer cards on load */
.card-trainer {
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.6s ease-out forwards;
}

.card-trainer:nth-child(1) {
    animation-delay: 0.1s;
}
.card-trainer:nth-child(2) {
    animation-delay: 0.2s;
}
.card-trainer:nth-child(3) {
    animation-delay: 0.3s;
}
.card-trainer:nth-child(4) {
    animation-delay: 0.4s;
}
.card-trainer:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .card-trainer {
        animation: none;
        opacity: 1;
        transform: none;
    }

    #trainer-modal,
    #trainer-modal .bg-white {
        animation: none;
    }

    .card-trainer::before {
        display: none;
    }
} /* Sch
edule Component Styles */
.schedule-filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--dark-steel);
    background: white;
    color: var(--dark-steel);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.schedule-filter:hover {
    background: var(--dark-steel);
    color: white;
    transform: translateY(-2px);
}

.schedule-filter.active {
    background: var(--bright-red);
    border-color: var(--bright-red);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Schedule Table */
.schedule-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
}

.schedule-header-cell {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--bright-red);
    position: sticky;
    top: 0;
    z-index: 10;
}

.schedule-time-cell {
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: center;
    background: var(--warm-off-white);
    border-right: 1px solid #e5e7eb;
    color: var(--dark-charcoal);
    min-width: 80px;
}

.schedule-empty-cell {
    padding: 0.75rem;
    border-right: 1px solid #e5e7eb;
    height: 60px;
    background: #fafafa;
    position: relative;
}

.schedule-empty-cell:hover {
    background: #f0f0f0;
}

.schedule-class-cell {
    padding: 0.5rem;
    border-right: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
    min-height: 80px;
    vertical-align: top;
}

.schedule-cell-content {
    padding: 0.5rem;
    border-radius: 0.375rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 70px;
}

/* Schedule cell hover effects */
.schedule-class-cell:not(.cursor-not-allowed):hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

/* Responsive schedule table */
@media (max-width: 1024px) {
    .schedule-table {
        font-size: 0.75rem;
    }

    .schedule-header-cell {
        padding: 0.75rem 0.5rem;
    }

    .schedule-time-cell {
        padding: 0.5rem;
        min-width: 60px;
    }

    .schedule-class-cell {
        padding: 0.25rem;
    }

    .schedule-cell-content {
        padding: 0.25rem;
        min-height: 60px;
    }
}

@media (max-width: 768px) {
    .schedule-table {
        font-size: 0.7rem;
    }

    .schedule-header-cell {
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
    }

    .schedule-time-cell {
        padding: 0.5rem 0.25rem;
        min-width: 50px;
    }

    .schedule-cell-content {
        min-height: 50px;
    }

    /* Hide some details on mobile */
    .schedule-cell-content .text-xs:last-child {
        display: none;
    }
}

/* Schedule filter responsive */
@media (max-width: 768px) {
    .schedule-filter {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Schedule loading state */
.schedule-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: var(--dark-grey);
}

.schedule-loading::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--bright-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 1rem;
}

/* Schedule accessibility */
.schedule-class-cell:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

.schedule-filter:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

/* Schedule animations */
.schedule-table tbody tr {
    opacity: 0;
    animation: scheduleRowFadeIn 0.5s ease-out forwards;
}

.schedule-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
}
.schedule-table tbody tr:nth-child(2) {
    animation-delay: 0.15s;
}
.schedule-table tbody tr:nth-child(3) {
    animation-delay: 0.2s;
}
.schedule-table tbody tr:nth-child(4) {
    animation-delay: 0.25s;
}
.schedule-table tbody tr:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes scheduleRowFadeIn {
    to {
        opacity: 1;
    }
}

/* Schedule cell status indicators */
.schedule-class-cell.bg-bright-red::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.schedule-class-cell.bg-gray-400::before {
    content: "✕";
    position: absolute;
    top: 4px;
    right: 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Print styles for schedule */
@media print {
    .schedule-filter,
    .schedule-filter + div {
        display: none !important;
    }

    .schedule-table {
        font-size: 10px;
    }

    .schedule-class-cell {
        background: #f0f0f0 !important;
        color: black !important;
    }

    .schedule-header-cell {
        background: #333 !important;
        color: white !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .schedule-class-cell,
    .schedule-filter,
    .schedule-table tbody tr {
        animation: none !important;
        transition: none !important;
    }

    .schedule-class-cell:hover {
        transform: none !important;
    }
}
/* Pr
icing Page Specific Styles */
.card-pricing {
    position: relative;
    border: 3px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.card-pricing:hover {
    border-color: #722f37; /* Rich Burgundy color */
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(114, 47, 55, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.card-pricing.featured {
    border-color: var(--bright-red);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.card-pricing.featured:hover {
    border-color: #722f37; /* Rich Burgundy color */
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 30px 60px rgba(114, 47, 55, 0.3);
}

/* Pricing card hover animation effects */
.card-pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(114, 47, 55, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.card-pricing:hover::before {
    left: 100%;
}

/* Pricing card content positioning */
.card-pricing > div {
    position: relative;
    z-index: 2;
}

/* Enhanced pricing button styles */
.card-pricing .btn-primary {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        #8b0000 100%
    ); /* Deep Red gradient */
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-pricing .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.card-pricing .btn-primary:hover::before {
    left: 100%;
}

.card-pricing .btn-primary:hover {
    background: linear-gradient(
        135deg,
        #8b0000 0%,
        var(--bright-red) 100%
    ); /* Deep Red primary */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

/* Featured plan CTA button enhancement */
.card-pricing.featured .btn-cta {
    background: linear-gradient(
        135deg,
        #8b0000 0%,
        var(--crimson-fire) 100%
    ); /* Deep Red primary */
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.card-pricing.featured .btn-cta:hover {
    background: linear-gradient(135deg, var(--crimson-fire) 0%, #8b0000 100%);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

/* Pricing feature list enhancements */
.card-pricing ul li {
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    border-radius: 0.25rem;
}

.card-pricing ul li:hover {
    background-color: rgba(114, 47, 55, 0.05); /* Rich Burgundy hover */
    transform: translateX(5px);
    padding-left: 0.5rem;
}

/* Pricing amount styling */
.card-pricing .text-4xl {
    background: linear-gradient(135deg, var(--bright-red) 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Popular badge styling */
.card-pricing .absolute {
    background: linear-gradient(135deg, var(--bright-red) 0%, #8b0000 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Additional information section styling */
.bg-warm-off-white {
    background: linear-gradient(135deg, var(--warm-off-white) 0%, #f5f5f5 100%);
    border: 1px solid rgba(114, 47, 55, 0.1);
}

/* Feature icons hover effects */
.bg-bright-red {
    transition: all 0.3s ease;
}

.bg-bright-red:hover {
    background-color: #722f37 !important; /* Rich Burgundy */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

/* FAQ section enhancements */
.border-l-4 {
    transition: all 0.3s ease;
}

.border-l-4:hover {
    border-left-color: #722f37; /* Rich Burgundy */
    border-left-width: 8px;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.15);
}

/* Responsive pricing adjustments */
@media (max-width: 1024px) {
    .card-pricing.featured {
        transform: none;
        margin-bottom: 2rem;
    }

    .card-pricing.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .card-pricing {
        margin-bottom: 2rem;
    }

    .card-pricing:hover {
        transform: translateY(-4px);
    }

    .card-pricing.featured {
        transform: none;
    }

    .card-pricing.featured:hover {
        transform: translateY(-4px);
    }
}

/* Pricing animation on page load */
.card-pricing {
    opacity: 0;
    transform: translateY(30px);
    animation: pricingCardFadeIn 0.6s ease-out forwards;
}

.card-pricing:nth-child(1) {
    animation-delay: 0.1s;
}
.card-pricing:nth-child(2) {
    animation-delay: 0.2s;
}
.card-pricing:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes pricingCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility improvements for pricing */
.card-pricing:focus-within {
    outline: 2px solid #722f37; /* Rich Burgundy */
    outline-offset: 4px;
}

.card-pricing button:focus {
    outline: 2px solid #8b0000; /* Deep Red */
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card-pricing {
        border-width: 4px;
        border-color: #000;
    }

    .card-pricing:hover {
        border-color: #722f37;
        background: #fff;
    }

    .card-pricing .btn-primary,
    .card-pricing .btn-cta {
        background: #8b0000 !important;
        color: #fff !important;
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .card-pricing,
    .card-pricing .btn-primary,
    .card-pricing .btn-cta,
    .card-pricing ul li,
    .bg-bright-red,
    .border-l-4 {
        animation: none !important;
        transition: none !important;
    }

    .card-pricing:hover,
    .card-pricing.featured:hover {
        transform: none !important;
    }

    .card-pricing::before {
        display: none;
    }
}

/* Print styles for pricing */
@media print {
    .card-pricing {
        break-inside: avoid;
        border: 2px solid #000 !important;
        background: #fff !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .card-pricing .btn-primary,
    .card-pricing .btn-cta {
        background: #000 !important;
        color: #fff !important;
    }

    .card-pricing .text-4xl {
        color: #000 !important;
    }
}
/* Cl
asses Page Specific Styles */
.class-filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--dark-steel);
    background: white;
    color: var(--dark-steel);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.class-filter:hover {
    background: var(--dark-steel);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.2);
}

.class-filter.active {
    background: var(--bright-red);
    border-color: var(--bright-red);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.class-filter.active:hover {
    background: var(--crimson-fire);
    border-color: var(--crimson-fire);
}

/* Enhanced Class Cards */
.card-class {
    border-left: 4px solid var(--bright-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-class::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 0, 0.05),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.card-class:hover::before {
    left: 100%;
}

.card-class:hover {
    border-left-width: 8px;
    border-left-color: var(--crimson-fire);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.card-class > div {
    position: relative;
    z-index: 2;
}

/* Class Card Badges */
.card-class .bg-bright-red {
    background-color: var(--bright-red) !important;
}

.card-class .bg-dark-steel {
    background-color: var(--dark-steel) !important;
}

.card-class .bg-crimson-fire {
    background-color: var(--crimson-fire) !important;
}

/* Try Training Button Enhancements */
.try-training-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.try-training-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.try-training-btn:hover::before {
    left: 100%;
}

.try-training-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Class Details Lists */
.card-class ul li {
    transition: all 0.2s ease;
}

.card-class ul li:hover {
    transform: translateX(4px);
    color: var(--dark-charcoal);
}

.card-class ul li svg {
    flex-shrink: 0;
}

/* Responsive Design for Classes */
@media (max-width: 768px) {
    .class-filter {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .card-class .p-8 {
        padding: 1.5rem;
    }

    .card-class .text-2xl {
        font-size: 1.5rem;
    }

    .card-class .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-class .flex.flex-col.sm\\:flex-row {
        flex-direction: column;
    }

    .card-class .flex.flex-col.sm\\:flex-row .btn-cta,
    .card-class .flex.flex-col.sm\\:flex-row .btn-secondary {
        width: 100%;
    }
}

/* Class Card Animation States */
.card-class {
    opacity: 0;
    transform: translateY(20px);
}

.card-class.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* Loading State for Classes */
.classes-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: var(--dark-grey);
}

.classes-loading::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--bright-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 1rem;
}

/* Class Type Icons */
.class-type-boxing::before {
    content: "🥊";
    margin-right: 0.5rem;
}

.class-type-karate::before {
    content: "🥋";
    margin-right: 0.5rem;
}

.class-type-mixed::before {
    content: "⚔️";
    margin-right: 0.5rem;
}

/* Difficulty Level Indicators */
.difficulty-beginner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.difficulty-intermediate {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.difficulty-advanced {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Enhanced Focus States */
.class-filter:focus,
.try-training-btn:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

/* Print Styles for Classes */
@media print {
    .class-filter,
    .class-filter + div {
        display: none !important;
    }

    .card-class {
        break-inside: avoid;
        border: 1px solid #ccc !important;
        margin-bottom: 1rem;
    }

    .try-training-btn {
        display: none !important;
    }

    .card-class .bg-gradient-dark {
        background: #f0f0f0 !important;
        color: black !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .card-class,
    .class-filter,
    .try-training-btn {
        transition: none !important;
        animation: none !important;
    }

    .card-class::before,
    .try-training-btn::before {
        display: none !important;
    }

    .card-class:hover {
        transform: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .class-filter,
    .card-class {
        border-width: 3px !important;
    }

    .class-filter:hover,
    .class-filter.active {
        background-color: var(--bright-red) !important;
        border-color: var(--bright-red) !important;
    }
}
/ * Registration Form Styles */ .registration-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.progress-indicator {
    margin-bottom: 2rem;
}

.progress-indicator .flex {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-indicator .w-10 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.progress-indicator .text-bright-red .w-10 {
    background-color: var(--bright-red);
    border-color: var(--bright-red);
    color: white;
}

.progress-indicator .text-gray-400 .w-10 {
    border-color: #d1d5db;
    color: #9ca3af;
}

.form-content {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--bright-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-input:disabled {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Membership selection styles */
.membership-options {
    display: grid;
    gap: 1.5rem;
}

.membership-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-card .p-6 {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.membership-card:hover .p-6 {
    border-color: var(--bright-red);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.membership-card.selected .p-6 {
    border-color: var(--bright-red);
    background-color: #fef2f2;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
}

.membership-card input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--bright-red);
}

/* Form navigation styles */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.form-navigation .btn-primary,
.form-navigation .btn-secondary {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.form-navigation .btn-primary:disabled,
.form-navigation .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-navigation .invisible {
    visibility: hidden;
}

/* Step content animations */
.step-content {
    animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Confirmation step styles */
.step-content .bg-warm-off-white {
    background-color: var(--warm-off-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.step-content .bg-bright-red {
    background-color: var(--bright-red);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.step-content .bg-gray-50 {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

/* Success message styles */
.w-20.h-20 {
    width: 5rem;
    height: 5rem;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-600 {
    color: #16a34a;
}

/* Loading spinner for form submission */
.animate-spin {
    animation: spin 1s linear infinite;
}

/* Responsive form styles */
@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 0 1rem;
    }

    .form-content {
        padding: 1.5rem;
    }

    .progress-indicator .text-sm {
        display: none;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation .btn-primary,
    .form-navigation .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .membership-options {
        gap: 1rem;
    }

    .membership-card .p-6 {
        padding: 1rem;
    }

    .step-content .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Accessibility improvements */
.form-input:focus-visible {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

.membership-card:focus-within {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-input {
        border-width: 3px;
    }

    .membership-card .p-6 {
        border-width: 3px;
    }

    .error-message {
        font-weight: bold;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .step-content {
        animation: none;
    }

    .membership-card,
    .form-input,
    .form-navigation button {
        transition: none;
    }

    .membership-card:hover .p-6 {
        transform: none;
    }
}

/* Print styles for forms */
@media print {
    .form-navigation,
    .progress-indicator {
        display: none !important;
    }

    .form-content {
        box-shadow: none;
        border: 1px solid #000;
    }

    .form-input {
        border: 1px solid #000;
        background: none;
    }
} /*
 Footer Styles */
#footer {
    background: linear-gradient(
        135deg,
        var(--dark-steel) 0%,
        var(--dark-charcoal) 100%
    );
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--bright-red),
        transparent
    );
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--bright-red);
    transform: translateX(4px);
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--bright-red);
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px) scale(1.1);
}

/* Contact Section Enhancements */
#contact .bg-dark-steel {
    background: linear-gradient(135deg, var(--dark-steel) 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .form-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#contact .form-input:focus {
    background: white;
    border-color: var(--bright-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

#contact .form-label {
    color: white;
    font-weight: 600;
}

/* Contact info hover effects */
#contact .flex.items-start.gap-4:hover {
    transform: translateX(8px);
    transition: transform 0.3s ease;
}

#contact .flex.items-start.gap-4:hover .bg-bright-red {
    background-color: var(--crimson-fire);
    transform: scale(1.1);
}

/* Working hours styling */
#contact .bg-dark-steel.p-4 {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(255, 0, 0, 0.1) 100%
    );
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Contact form success/error messages */
.bg-green-100 {
    background-color: #dcfce7;
}

.border-green-400 {
    border-color: #4ade80;
}

.text-green-700 {
    color: #15803d;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.border-red-400 {
    border-color: #f87171;
}

.text-red-700 {
    color: #b91c1c;
}

/* Footer responsive design */
@media (max-width: 768px) {
    #footer .grid.lg\\:grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #footer .flex.flex-col.md\\:flex-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    #footer .flex.flex-wrap.gap-6 {
        justify-content: center;
    }

    .social-link {
        padding: 0.75rem;
    }
}

/* Contact section responsive design */
@media (max-width: 1024px) {
    #contact .grid.lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #contact .lg\\:col-span-1,
    #contact .lg\\:col-span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    #contact .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    #contact .bg-dark-steel {
        padding: 1.5rem;
    }

    #contact .space-y-6 > div {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0.5rem;
    }
}

/* Accessibility improvements */
.footer-link:focus,
.social-link:focus {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

#contact .form-input:focus-visible {
    outline: 2px solid var(--bright-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-link,
    .social-link {
        border: 1px solid currentColor;
    }

    #contact .form-input {
        border-width: 2px;
        border-color: #666;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .footer-link,
    .social-link,
    #contact .flex.items-start.gap-4,
    #contact .form-input {
        transition: none;
    }

    .footer-link:hover,
    .social-link:hover,
    #contact .flex.items-start.gap-4:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    #footer .social-link,
    #contact form {
        display: none !important;
    }

    #footer,
    #contact {
        background: white !important;
        color: black !important;
    }

    .footer-link {
        color: black !important;
    }
} /* E
nhanced Navigation Styles */
#navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(51, 51, 51, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

#navigation.nav-scrolled {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.98) 0%,
        rgba(51, 51, 51, 0.98) 100%
    );
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

/* Logo Styles */
#navigation .flex.items-center img {
    transition: all 0.3s ease;
}

#navigation .flex.items-center:hover img {
    transform: scale(1.05);
}

/* Enhanced Navigation Links */
.nav-link-enhanced {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.nav-link-enhanced:hover::before {
    left: 100%;
}

.nav-link-enhanced:hover {
    background-color: var(--bright-red);
    color: white;
    transform: translateY(-2px);
}

.nav-link-enhanced.active {
    background-color: var(--bright-red);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Navigation CTA Button */
.btn-nav-cta {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    background: linear-gradient(
        135deg,
        var(--crimson-fire) 0%,
        var(--bright-red) 100%
    );
}

/* Mobile Navigation Links */
.nav-link-mobile {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.25rem 0;
}

.nav-link-mobile:hover {
    background-color: var(--bright-red);
    color: white;
    transform: translateX(8px);
}

.nav-link-mobile.active {
    background-color: var(--bright-red);
    color: white;
}

.nav-link-mobile-cta {
    display: block;
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link-mobile-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Mobile Menu */
#mobile-menu {
    background: linear-gradient(
        135deg,
        rgba(51, 51, 51, 0.95) 0%,
        rgba(26, 26, 26, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile Menu Button */
#mobile-menu-btn {
    transition: all 0.3s ease;
}

#mobile-menu-btn:hover {
    background-color: rgba(255, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Body padding to account for fixed navigation */
body {
    padding-top: 80px;
}

/* Navigation responsive adjustments */
@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    #navigation .container-custom {
        padding: 0 1rem;
    }

    #navigation .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* Navigation animation for page load */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#navigation {
    animation: slideDown 0.5s ease-out;
}

/* Active page indicator */
.nav-link-enhanced.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--crimson-fire);
    border-radius: 2px;
}

/* Keyboard Navigation Support */
body.keyboard-navigation *:focus {
    outline: 2px solid var(--bright-red) !important;
    outline-offset: 2px !important;
}

body.keyboard-navigation .nav-link-enhanced:focus,
body.keyboard-navigation .nav-link-mobile:focus,
body.keyboard-navigation .btn-nav-cta:focus {
    outline: 2px solid var(--crimson-fire) !important;
    outline-offset: 2px !important;
    background-color: var(--bright-red) !important;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bright-red);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link-enhanced,
    .nav-link-mobile {
        border: 1px solid currentColor;
    }

    .nav-link-enhanced:hover,
    .nav-link-mobile:hover {
        background-color: var(--bright-red) !important;
        border-color: var(--bright-red) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    #navigation,
    .nav-link-enhanced,
    .nav-link-mobile,
    .btn-nav-cta,
    #mobile-menu {
        transition: none !important;
        animation: none !important;
    }

    .nav-link-enhanced::before {
        display: none;
    }

    .nav-link-enhanced:hover,
    .nav-link-mobile:hover {
        transform: none !important;
    }
} /* Im
age Enhancements */
img {
    max-width: 100%;
    height: auto;
}

.hero-image-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(139, 0, 0, 0.6) 100%
    );
}

/* About Section Image Grid */
#about img {
    transition: all 0.3s ease;
    object-fit: cover;
}

#about img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Logo Enhancements */
.logo-container img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-container:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

/* Hero Section Enhancements */
#hero {
    background-attachment: scroll;
}

#hero .hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Feature Cards in Hero */
#hero .grid > div {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#hero .grid > div:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Improved Button Styles */
.btn-cta {
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    #hero .hero-title {
        font-size: 2.5rem;
    }

    #hero .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #about .grid.grid-cols-2 {
        grid-template-columns: 1fr;
    }

    #about img {
        height: 200px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    #hero {
        background-attachment: scroll;
    }

    img,
    .btn-cta,
    #hero .grid > div {
        transition: none;
    }

    img:hover,
    #hero .grid > div:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    #hero {
        min-height: 50vh;
        background: var(--dark-charcoal) !important;
    }

    #hero img,
    #about img {
        display: none !important;
    }

    .btn-cta,
    .btn-secondary {
        display: none !important;
    }
} /*
 Navigation Layout Improvements */
#navigation .container-custom > div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

#navigation .flex.items-center:first-child {
    justify-self: start;
}

#navigation nav {
    justify-self: center;
}

#navigation .hidden.lg\\:block,
#navigation .lg\\:hidden {
    justify-self: end;
}

/* Logo size adjustments */
#navigation img {
    height: 4rem; /* 64px */
    width: auto;
}

/* Ensure hero background stays fixed */
#hero .absolute.inset-0 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#hero #hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile navigation adjustments */
@media (max-width: 1024px) {
    #navigation .container-custom > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #navigation img {
        height: 3rem; /* 48px on mobile */
    }
} /* Fo
rce hide mobile menu by default */
#mobile-menu.hidden {
    display: none !important;
}

#mobile-menu:not(.hidden) {
    display: block;
}

/* Ensure mobile menu only shows on mobile */
@media (min-width: 1024px) {
    #mobile-menu {
        display: none !important;
    }
}

/* Mobile menu button should only show on mobile */
#mobile-menu-btn {
    display: none;
}

@media (max-width: 1023px) {
    #mobile-menu-btn {
        display: block;
    }
} /* Floati
ng Glass Navigation */
#navigation {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#navigation.nav-scrolled {
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Navigation container adjustments for floating design */
#navigation .container-custom {
    padding: 0 1.5rem;
}

/* Adjust body padding for floating navigation */
body {
    padding-top: 0; /* Remove top padding since nav is floating */
}

/* Mobile adjustments for floating nav */
@media (max-width: 768px) {
    #navigation {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        border-radius: 0.75rem;
    }

    body {
        padding-top: 0;
    }
}

/* Remove any existing animations */
#navigation,
.nav-link-enhanced,
.nav-link-mobile,
.btn-nav-cta {
    animation: none !important;
}

/* Static navigation - no expanding animations */
#navigation .container-custom > div {
    transition: none;
}

#navigation .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
} /* Stand
ardized Navigation Button States */
.nav-link-enhanced {
    background-color: transparent !important;
    color: white !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.nav-link-enhanced:hover {
    background-color: var(--bright-red) !important;
    color: white !important;
    transform: translateY(-2px);
}

.nav-link-enhanced.active {
    background-color: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

.nav-link-enhanced.active:hover {
    background-color: var(--bright-red) !important;
    color: white !important;
}

/* Mobile navigation consistency */
.nav-link-mobile {
    background-color: transparent !important;
    color: white !important;
}

.nav-link-mobile:hover {
    background-color: var(--bright-red) !important;
    color: white !important;
    transform: translateX(8px);
}

.nav-link-mobile.active {
    background-color: transparent !important;
    color: white !important;
}

.nav-link-mobile.active:hover {
    background-color: var(--bright-red) !important;
    color: white !important;
}

/* CTA Button - keep red but standardize hover */
.btn-nav-cta {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    ) !important;
    color: white !important;
}

.btn-nav-cta:hover {
    background: linear-gradient(
        135deg,
        var(--crimson-fire) 0%,
        var(--bright-red) 100%
    ) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Remove active page indicators */
.nav-link-enhanced.active::after {
    display: none !important;
}

/* Ensure hero section starts at top */
#hero {
    margin-top: 0;
    padding-top: 0;
} /* Overrid
e Floating Navigation - Make Static */
#navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(51, 51, 51, 0.95) 100%
    ) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
}

#navigation.nav-scrolled {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.98) 0%,
        rgba(51, 51, 51, 0.98) 100%
    ) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2) !important;
}

/* Reset body padding for static navigation */
body {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
}

/* Simple static background - no movement */
#hero #hero-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    transform: translateZ(0) !important;
    will-change: auto !important;
}

/* Ensure hero section contains the background */
#hero {
    position: relative !important;
    min-height: 100vh !important;
    overflow: hidden !important;
}

/* Keep background container static */
#hero .absolute.inset-0 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Ensure hero content is positioned correctly */
#hero {
    position: relative !important;
    min-height: 100vh !important;
}

#hero .relative.z-20 {
    position: relative !important;
    z-index: 20 !important;
} /* Compact
 Schedule Styles */
.schedule-compact {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.schedule-header {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    background: linear-gradient(
        135deg,
        var(--dark-charcoal) 0%,
        var(--dark-steel) 100%
    );
    color: white;
}

.schedule-header > div {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-row {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    border-bottom: 1px solid #e5e7eb;
}

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

.time-cell {
    padding: 1rem 0.5rem;
    background: var(--warm-off-white);
    font-weight: 600;
    text-align: center;
    color: var(--dark-charcoal);
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cell {
    padding: 1rem 0.5rem;
    border-right: 1px solid #e5e7eb;
    min-height: 80px;
    background: #fafafa;
}

.session-cell {
    padding: 0.5rem;
    border-right: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-cell:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.session-content {
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    color: white;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.session-name {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.session-time {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.session-spots {
    font-size: 0.7rem;
    opacity: 0.8;
}

.session-cell.available .session-content {
    background: linear-gradient(
        135deg,
        var(--bright-red) 0%,
        var(--crimson-fire) 100%
    );
}

.session-cell.limited .session-content {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.session-cell.full .session-content {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    cursor: not-allowed;
}

.session-cell.full:hover {
    transform: none;
    box-shadow: none;
}

/* Schedule Legend */
.schedule-legend {
    margin-top: 2rem;
}

.legend-item {
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .schedule-header {
        grid-template-columns: 80px repeat(7, 1fr);
    }

    .schedule-row {
        grid-template-columns: 80px repeat(7, 1fr);
    }

    .schedule-header > div {
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
    }

    .session-name {
        font-size: 0.75rem;
    }

    .session-time,
    .session-spots {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .schedule-compact {
        overflow-x: auto;
    }

    .schedule-header,
    .schedule-row {
        min-width: 600px;
    }

    .schedule-header > div {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }

    .time-cell {
        padding: 0.5rem 0.25rem;
    }

    .session-content {
        padding: 0.5rem;
        min-height: 60px;
    }

    .session-name {
        font-size: 0.7rem;
    }

    .session-time,
    .session-spots {
        font-size: 0.6rem;
    }
}

/* Color classes for different session types */
.bg-blue-500 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.bg-green-500 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.bg-red-500 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.bg-orange-500 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}
.bg-purple-500 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.bg-yellow-500 {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}
.bg-indigo-500 {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}
.bg-pink-500 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
