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

:root {
    --color-primary: #000000;
    --color-accent: #d4af37;
    --color-gold: #d4af37;
    --color-gold-light: #e5c158;
    --color-text: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-light: #cccccc;
    --color-bg: #2a2a2a;
    --color-bg-dark: #1a1a1a;
    --color-bg-light: #3a3a3a;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: loading-rotate 20s linear infinite;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    width: 100%;
    max-width: 500px;
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
    animation: loading-fade-in 0.8s ease-out;
}

.loading-text {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.loading-congrats {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: loading-slide-down 0.8s ease-out 0.2s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loading-school {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
    line-height: 1.2;
    opacity: 0;
    animation: loading-slide-down 0.8s ease-out 0.4s forwards;
    position: relative;
}

.loading-school::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: loading-line-expand 0.6s ease-out 0.8s forwards;
}

.loading-rank {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.03em;
    line-height: 1.4;
    opacity: 0;
    animation: loading-slide-up 0.8s ease-out 0.6s forwards;
}

.loading-awards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    perspective: 1000px;
}

.loading-award-large {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px) rotateX(15deg);
    animation: loading-award-reveal 1s ease-out 0.8s forwards;
    position: relative;
    overflow: hidden;
}

.loading-award-large .award-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.loading-award-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: loading-shine 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.loading-progress {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.loading-progress-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    border-radius: 10px;
    animation: loading-progress-fill 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.loading-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loading-shimmer 1.5s ease-in-out infinite;
}

.loading-percentage {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--spacing-xs);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: loading-percentage-fade 0.5s ease-out 0.5s forwards;
}

.loading-indicator {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-md);
    position: relative;
    opacity: 0;
    animation: loading-fade-in 0.5s ease-out 2s forwards;
}

.loading-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: loading-pulse 2s ease-in-out infinite;
    animation-delay: 2s;
}

.loading-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: loading-bounce-advanced 1.4s infinite ease-in-out;
    position: relative;
}

.loading-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    animation: loading-glow 1.4s infinite ease-in-out;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

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

@keyframes loading-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes loading-slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading-line-expand {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

@keyframes loading-award-reveal {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes loading-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

@keyframes loading-bounce-advanced {
    0%, 80%, 100% {
        transform: scale(0) translateY(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1.2) translateY(-10px);
        opacity: 1;
    }
}

@keyframes loading-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes loading-pulse {
    0%, 100% {
        opacity: 0.3;
        width: 40px;
    }
    50% {
        opacity: 1;
        width: 80px;
    }
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: loading-particle-float 4s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0.5s;
    animation-duration: 5s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 4.5s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 0.8s;
    animation-duration: 4s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 1.2s;
    animation-duration: 5s;
}

@keyframes loading-progress-fill {
    0% {
        width: 0%;
    }
    50% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

@keyframes loading-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes loading-percentage-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes loading-particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1.5);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation */
.navbar {
    background-color: var(--color-bg);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-menu li a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .nav-brand {
        gap: var(--spacing-xs);
    }

    .nav-brand .logo {
        height: 28px;
    }

    .nav-brand h1 {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .hero-image {
        height: 30vh;
        min-height: 250px;
    }

    .hero-headline {
        font-size: 1.25rem;
        margin-bottom: 0;
        padding: 0 var(--spacing-sm);
    }

    .hero-content {
        padding: var(--spacing-sm);
    }

    .registration {
        padding: var(--spacing-xs) 0 var(--spacing-sm);
        min-height: auto;
    }

    .registration-bg-image {
        background-position: center center;
    }

    .registration-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }

    .registration-intro {
        order: 0;
        padding: var(--spacing-xs) 0;
    }

    .registration-form-container {
        order: 1;
        margin: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        animation: none;
        opacity: 1;
        transform: none;
    }

    .registration-form-container::before {
        display: none;
    }

    .registration-headline {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0;
    }

    .registration-headline .highlight-gold {
        display: inline;
        word-break: keep-all;
    }

    .registration-intro-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-sm);
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
    }

    .registration-results {
        font-size: 0.875rem;
        line-height: 1.5;
        padding: 0;
        margin: 0;
    }

    .registration-offer-header {
        background: var(--color-gold);
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 12px 12px 0 0;
        animation: none;
        position: relative;
    }

    .registration-offer-header::before {
        display: none;
    }

    .offer-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        color: var(--color-primary);
        text-shadow: none;
        animation: none;
        margin-bottom: var(--spacing-xs);
    }

    .offer-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        color: rgba(0, 0, 0, 0.8);
        text-shadow: none;
        margin-bottom: var(--spacing-xs);
    }

    .offer-trial {
        font-size: 0.875rem;
        padding: 0;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        color: rgba(0, 0, 0, 0.7);
        text-shadow: none;
    }

    .registration-form {
        padding: var(--spacing-md) var(--spacing-sm);
        background-color: transparent;
    }

    .form-particles {
        display: none;
    }

    .registration-form .form-group {
        animation: none;
        opacity: 1;
        margin-bottom: var(--spacing-sm);
    }

    .registration-form input,
    .registration-form select {
        background-color: white;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 0.875rem;
        font-size: 1rem;
        box-shadow: none;
        transition: border-color 0.2s ease;
    }

    .registration-form input:focus,
    .registration-form select:focus {
        border-color: var(--color-gold);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        transform: none;
        background-color: white;
    }

    .btn-registration-cta {
        background: var(--color-gold);
        border-radius: 8px;
        padding: 1rem;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        animation: none;
        opacity: 1;
        transform: none;
        margin-top: var(--spacing-sm);
    }

    .btn-registration-cta::before,
    .btn-registration-cta::after {
        display: none;
    }

    .btn-registration-cta:hover {
        background: var(--color-gold-light);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    }

    .registration-disclaimer {
        font-size: 0.75rem;
        color: rgba(0, 0, 0, 0.6);
        line-height: 1.4;
        margin-top: var(--spacing-sm);
    }

    .registration-disclaimer a {
        color: var(--color-gold);
        text-decoration: underline;
    }

    /* New Member Guide - Mobile */
    .new-member {
        padding: var(--spacing-lg) 0;
    }

    .new-member-title {
        font-size: 1.6rem;
        letter-spacing: 0.06em;
        margin-bottom: var(--spacing-xs);
    }

    .new-member-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .new-member-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .new-member-card {
        padding: var(--spacing-sm);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        max-width: 420px;
        margin: 0 auto;
    }

    .new-member-heading {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
    }

    .new-member-card p,
    .new-member-intro {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .new-member-list {
        padding-left: 1rem;
        margin-bottom: var(--spacing-sm);
        font-size: 0.9rem;
    }

    .new-member-list li {
        margin-bottom: 0.25rem;
    }

    .loading-content {
        padding: var(--spacing-sm);
    }

    .loading-congrats {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }

    .loading-school {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
    }

    .loading-rank {
        font-size: 1rem;
    }

    .loading-award-large {
        max-width: 250px;
    }

    /* Global mobile text tweaks */
    .section .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .section p,
    .section li {
        text-align: left;
    }

    .schedule-title,
    .new-member-title,
    .contact-title {
        font-size: 1.6rem;
        letter-spacing: 0.04em;
    }

    .academy-intro-content,
    .youth-programs-content,
    .new-member-card,
    .schedule-grid,
    .contact-info-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-tagline {
        text-align: center;
        margin: 0 auto var(--spacing-md);
        padding: 0 var(--spacing-sm);
        display: block;
    }

    .contact-info-grid {
        text-align: center;
    }

    .info-item {
        text-align: center;
    }

    .academy-intro-image,
    .youth-programs-image {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .academy-headline {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .academy-features {
        padding: 0 var(--spacing-sm);
    }

    .academy-feature {
        font-size: 0.95rem;
        padding-left: 0;
    }

    .academy-closing {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }

    .youth-headline {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }

    .youth-intro {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }

    .youth-subheading {
        font-size: 1.25rem;
        padding: 0 var(--spacing-sm);
    }

    .youth-features {
        padding: 0 var(--spacing-sm);
    }

    .youth-feature {
        font-size: 0.95rem;
        padding-left: 0;
    }

    .youth-results,
    .youth-trial {
        padding: 0 var(--spacing-sm);
    }

    .program-image {
        height: auto;
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .program-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .program-content h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
        word-wrap: break-word;
    }

    .program-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .program-content .program-subtitle {
        font-size: 1.1rem;
    }

    .program-content .program-description,
    .program-content .program-highlight,
    .program-content .program-closing {
        font-size: 0.9rem;
    }

    .schedule-title {
        font-size: 1.75rem;
        padding: 0 var(--spacing-sm);
    }

    .schedule-day {
        padding: var(--spacing-sm);
    }

    .schedule-day h3 {
        font-size: 1.25rem;
    }

    .time-slot {
        font-size: 0.9rem;
        padding: var(--spacing-xs);
    }

    .registration-form-container {
        margin: 0 var(--spacing-sm);
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .offer-subtitle {
        font-size: 0.9rem;
    }

    .registration-form {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .registration-disclaimer {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .contact-title {
        font-size: 1.75rem;
        padding: 0 var(--spacing-sm);
    }

    .value-word {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-bg-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm) 0;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section {
    padding: 0;
}


/* Academy Intro Section */
.academy-intro {
    width: 100%;
    position: relative;
}

.academy-intro-image {
    width: 100%;
    min-height: 60vh;
    background-image: url('programs-teens-adults-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) 0;
}

.academy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.academy-intro-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.academy-headline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}

.academy-features {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.academy-feature {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: var(--spacing-sm);
}

.academy-feature strong {
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.academy-closing {
    text-align: center;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Children & Youth Programs Section */
.youth-programs {
    width: 100%;
    position: relative;
}

.youth-programs-image {
    width: 100%;
    min-height: 70vh;
    background-image: url('program-kids-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) 0;
}

.youth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.youth-programs-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.youth-headline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.youth-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.youth-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.youth-features {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.youth-feature {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: var(--spacing-sm);
}

.youth-feature strong {
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.youth-results {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.youth-trial {
    text-align: center;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.youth-action {
    text-align: center;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-gold);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}

.btn-signup {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: 2px solid var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-signup:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    width: 100%;
    position: relative;
}

.about-image {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-image: url('about-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
}

.about-line {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

/* Programs Section */
.programs {
    display: flex;
    flex-direction: column;
}

.program-item {
    width: 100%;
}

.program-image {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Individual program backgrounds */
.program-item:nth-child(1) .program-image {
    background-image: url('program-kids-bg.jpg');
}

.program-item:nth-child(2) .program-image {
    background-image: url('programs-teens-adults-bg.jpg');
}

.program-item:nth-child(3) .program-image {
    background-image: url('program-competition-bg.jpg');
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.program-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.program-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.program-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.program-content .program-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.program-content .program-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.program-content .program-highlight {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.program-content .program-closing {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Values Section */
.values {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.value-item:last-child {
    border-bottom: none;
}

.value-word {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Gallery Section */
.gallery {
    background-color: var(--color-bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

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

/* Schedule Section */
.schedule {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
}

.schedule-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

/* New Member Guide */
.new-member {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
}

.new-member-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.new-member-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.new-member-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.new-member-card {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: var(--spacing-md);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    max-width: 620px;
    margin: 0 auto;
}

.new-member-heading {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.new-member-intro {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.new-member-card p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    text-align: left;
}

.new-member-list {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.new-member-list.numbered {
    list-style: decimal;
}

.new-member-list li {
    margin-bottom: 0.35rem;
}

.new-member-list li strong {
    color: var(--color-gold);
}

.schedule-day {
    background-color: var(--color-bg-light);
    padding: var(--spacing-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.schedule-day h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.time-slot {
    padding: var(--spacing-sm);
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--color-text);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Registration Section */
.registration {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    overflow: hidden;
}

.registration-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('about-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.registration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.registration .container {
    position: relative;
    z-index: 2;
}

.registration-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.registration-intro {
    color: white;
    padding: var(--spacing-md) 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.registration-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.registration-headline .highlight-gold {
    color: var(--color-gold);
}

.registration-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.registration-results {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.registration-form-container {
    max-width: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    animation: form-entrance 0.8s ease-out, form-glow 3s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

@keyframes form-entrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes form-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    }
}

.registration-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-gold-light));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(5px);
    }
    50% {
        opacity: 0.6;
        filter: blur(8px);
    }
}

.registration-offer-header {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
    animation: header-pulse 2s ease-in-out infinite;
}

@keyframes header-pulse {
    0%, 100% {
        background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    }
    50% {
        background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    }
}

.registration-offer-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading-shine 3s ease-in-out infinite;
}


.offer-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 var(--spacing-xs);
    line-height: 1.2;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    animation: title-glow 2s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.offer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 var(--spacing-sm);
    opacity: 0.95;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.offer-trial {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    padding: 0 var(--spacing-sm);
}

.registration-form {
    padding: var(--spacing-lg) var(--spacing-md);
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.form-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.form-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: form-particle-float 4s ease-in-out infinite;
}

.form-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.form-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.form-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes form-particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(1.5);
    }
}

.registration-form .form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    animation: input-fade-in 0.6s ease-out forwards;
    opacity: 0;
}

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

@keyframes input-fade-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.registration-form .form-group:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3), 0 4px 12px rgba(212, 175, 55, 0.2);
    background-color: white;
    transform: translateY(-1px);
}

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

.registration-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c41e3a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    cursor: pointer;
    position: relative;
}

.registration-form select::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 700;
}

.registration-form select option {
    padding: 0.75rem;
    background-color: white;
    color: var(--color-primary);
    font-size: 1rem;
}

.btn-registration-cta {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: button-pulse 2s ease-in-out infinite, button-entrance 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes button-entrance {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6), 0 0 0 2px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    }
}

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

.btn-registration-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

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

.btn-registration-cta:hover::after {
    width: 300px;
    height: 300px;
}

.btn-registration-cta:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.cta-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.registration-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.registration-disclaimer a {
    color: var(--color-gold);
    text-decoration: underline;
}

.registration-footer-link {
    text-align: center;
    margin-top: var(--spacing-md);
}

.registration-footer-link a {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: #2a2a2a;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

/* Contact Section */
.contact {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-tagline {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 0 auto var(--spacing-md);
    max-width: 600px;
}

.info-item {
    padding: var(--spacing-md);
    text-align: center;
}

.info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gold);
    letter-spacing: 0.02em;
    font-size: 1.1rem;
    text-align: center;
}

.info-item p {
    color: var(--color-text-light);
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    background-color: white;
    color: var(--color-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.2s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-headline {
        font-size: 4rem;
    }

    .about-line {
        font-size: 4rem;
    }

    .program-content h3 {
        font-size: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item {
        border-bottom: none;
        border-right: 1px solid rgba(212, 175, 55, 0.2);
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }

    .value-item:nth-child(1),
    .value-item:nth-child(2) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .registration-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .info-item {
        text-align: center;
    }

    .info-item strong {
        text-align: center;
    }

    .info-item p {
        text-align: center;
    }

    .award-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .award-text {
        text-align: left;
    }

    .academy-feature strong {
        display: inline;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    .youth-feature strong {
        display: inline;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: var(--spacing-lg);
        align-items: start;
    }

    .contact-info {
        text-align: left;
        margin-bottom: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-headline {
        font-size: 5rem;
    }

    .hero-image {
        height: 90vh;
    }

    .about-line {
        font-size: 5rem;
    }

    .program-content h3 {
        font-size: 3.5rem;
    }

    .value-word {
        font-size: 5.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-item {
        border-right: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: none;
    }

    .value-item:last-child {
        border-right: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

