@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --gold: #FFB800;
    --gold-light: #FFC933;
    --gold-dark: #CC9300;
    --orange: #FF6B00;
    --orange-dark: #CC5500;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-gold: #FFB800;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Animated Background */
.fire-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(204, 85, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 184, 0, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #0f0f0f 100%);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    /* Better framing for athletes */
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease;
    transform: scale(1);
    z-index: 1;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    /* Cinematic B&W */
}

.slide.active {
    opacity: 1;
    transform: scale(1.15);
    z-index: 2;
}

/* Gold Tint Overlay for Slider */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(255, 184, 0, 0.3) 0%, transparent 80%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, var(--bg-dark) 98%);
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 0 20px;
    max-width: 1000px;
    width: 100%;
}

.logo-hero {
    width: 400px;
    /* Strong focus on logo */
    max-width: 70%;
    margin-bottom: 0;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 184, 0, 0.3));
    animation: pro-pulse 4s ease-in-out infinite;
    user-select: none;
}

@keyframes pro-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 184, 0, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 184, 0, 0.9)) drop-shadow(0 0 100px rgba(255, 184, 0, 0.5));
        transform: scale(1.03);
    }
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 8vw, 4rem);
    /* Slightly reduced size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
    background: linear-gradient(180deg, #FFB800 0%, #FFD700 50%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1)) drop-shadow(0 0 10px rgba(255, 184, 0, 0.4));
    line-height: 1;
    /* More standard line height */
    position: relative;
    z-index: 5;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #eee;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
    transition: all 0.3s ease;
    font-family: 'Teko', sans-serif;
    letter-spacing: 2px;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 184, 0, 0.6);
}

/* Availability Banner */
.availability-banner {
    display: inline-block;
    margin-bottom: 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 107, 0, 0.2) 100%);
    border: 3px solid var(--gold);
    border-radius: 50px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: var(--gold);
        box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
    }

    50% {
        border-color: var(--gold-light);
        box-shadow: 0 0 40px rgba(255, 184, 0, 0.8);
    }
}

.availability-text {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.availability-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Section Container */
.section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    text-transform: uppercase;
    color: var(--text-gold);
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.3);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.program-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--text-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.program-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.2);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--text-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--gold);
    padding: 30px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: var(--text-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.3);
    border-color: var(--gold-light);
}

.price-card-title {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: var(--text-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.price-period {
    color: #999;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.price-features {
    list-style: none;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    font-size: 1rem;
}



/* Gallery Section */
/* Integrated Visual Sections (Parallax) */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
    filter: grayscale(1);
    /* Initial grayscale for section */
    transition: filter 0.5s ease;
}

.parallax-section:hover {
    filter: grayscale(0.5);
    /* Subtle color on hover */
}

.parallax-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.5)),
        rgba(255, 184, 0, 0.1);
    mix-blend-mode: multiply;
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.parallax-title {
    font-family: 'Teko', sans-serif;
    font-size: 4rem;
    color: var(--text-gold);
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 0, 0, 1);
    letter-spacing: 5px;
}

.parallax-motto {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Schedule Section */
.schedule-container {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.day-schedule {
    margin-bottom: 40px;
}

.day-schedule:last-child {
    margin-bottom: 0;
}

.day-header {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--text-gold);
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 184, 0, 0.2) 50%, transparent 100%);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255, 184, 0, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(255, 184, 0, 0.15);
    transform: translateX(10px);
}

.time {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    color: var(--text-gold);
    font-weight: 600;
    min-width: 150px;
}

.class-name {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.footer-tagline {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: var(--text-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-motto {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--text-gold);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-light);
    transform: scale(1.2);
}

.intranet-link {
    display: inline-block;
    margin-top: 20px;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.intranet-link:hover {
    color: var(--text-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .time-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .time {
        min-width: auto;
    }

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