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

/* Language Switcher */
.language-switcher {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    display: flex;
    gap: 5px;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 6px;
    box-shadow: none;
    border: 1px solid #ececec;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.lang-btn {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.lang-btn:hover {
    color: #1a1a1a;
    background: #ffffff;
}

.lang-btn.active {
    background: #1a1a1a;
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 1.25rem 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    border-color: #1a1a1a;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.nav-logo a:hover {
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown {
    /* Extend hover area so the cursor can reach the menu */
    padding: 1.1rem 0;
    margin: -1.1rem 0;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button.nav-link.dropdown-toggle,
a.nav-link.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #1a1a1a;
}

button.nav-link.dropdown-toggle::after,
a.nav-link.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.15rem;
    transition: transform 0.2s ease;
    position: static;
    background: none;
}

.nav-item.has-dropdown.open > .dropdown-toggle::after,
.nav-item.has-dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-link:hover, .nav-link.active {
    color: #666;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

a.nav-link:hover::after,
a.nav-link.active::after,
button.nav-link.dropdown-toggle.active::before {
    width: 100%;
}

button.nav-link.dropdown-toggle::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

button.nav-link.dropdown-toggle:hover::before,
button.nav-link.dropdown-toggle.active::before {
    width: calc(100% - 12px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 1001;
}

/* Invisible bridge so the cursor can cross into the menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.2rem;
    left: 0;
    width: 100%;
    height: 1.2rem;
}

.nav-item.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 0.7rem 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #f8f8f8;
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: #ffffff;
    background-image: url('./site-abstract-bg.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        background-attachment: scroll;
        background-position: right top;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
}

.hero-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero .btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.hero .btn-primary:hover {
    background: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero .btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.hero .btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.hero-meta {
    color: #666;
}

.hero-meta span:not(:last-child)::after {
    opacity: 0.5;
}

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

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 40px 70px -25px rgba(0, 0, 0, 0.3), 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual:hover img {
    transform: translateY(-6px);
}

/* Hero entrance animation */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons,
.hero-meta,
.hero-visual {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title { animation-delay: 0.05s; }
.hero-subtitle { animation-delay: 0.15s; }
.hero-description { animation-delay: 0.25s; }
.hero-buttons { animation-delay: 0.35s; }
.hero-meta { animation-delay: 0.45s; }
.hero-visual { animation-delay: 0.25s; }

@media (max-width: 900px) {
    .hero-visual { animation-delay: 0.05s; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-buttons,
    .hero-meta,
    .hero-visual {
        animation: none;
    }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0;
    align-items: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.hero-meta span:not(:last-child)::after {
    content: '\2022';
    margin: 0 0.75rem;
    opacity: 0.6;
}

/* Proof / Stats Strip */
.stats-strip {
    background: #1a1a1a;
    padding: 3rem 0;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:first-child {
    border-left: none;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a8a8a8;
}

@media (max-width: 900px) {
    .stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 1.5rem;
    }
    .stat-item:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* Asymmetric split section (story / partnership teasers) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.split-section.reverse .split-media {
    order: 2;
}

.split-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: grayscale(0.15);
}

.split-copy-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.split-copy h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.split-copy p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.split-copy .btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.split-copy .btn-primary:hover {
    background: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .split-section.reverse .split-media {
        order: 0;
    }
}

/* Partnership CTA band */
.cta-band {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-band-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a8a8a8;
    margin-bottom: 1rem;
}

.cta-band h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    line-height: 1.2;
}

.cta-band p {
    max-width: 620px;
    margin: 0 auto 2.25rem;
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
}

.cta-band .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-band .btn-primary:hover {
    background: #f0f0f0;
}

/* Partner logo cloud (social proof) */
.logo-cloud-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 2.5rem;
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}

.logo-cloud img {
    max-height: 48px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-cloud img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Recruit CTA banner (athletes page) */
.recruit-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 4px;
    padding: 2.25rem 2.5rem;
    margin-bottom: 4rem;
}

.recruit-banner p {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    max-width: 520px;
}

.recruit-banner .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    flex-shrink: 0;
}

.recruit-banner .btn-primary:hover {
    background: #f0f0f0;
}

/* Homepage opening intro */
html.home-intro {
    overflow: hidden;
}

html.home-intro .navbar {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

html.home-intro .section,
html.home-intro .footer {
    opacity: 0;
    pointer-events: none;
}

html.home-intro .hero-subtitle,
html.home-intro .hero-description,
html.home-intro .hero-buttons {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.home-intro .hero-title {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 30;
    margin: 0;
    width: max-content;
    max-width: 92vw;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 56px));
    transition: opacity 0.72s ease, transform 0.72s ease;
    will-change: transform, opacity;
}

html.home-intro.home-intro-phase-title .hero-title,
html.home-intro.home-intro-phase-logo .hero-title {
    opacity: 1;
    transform: translate(-50%, -65%);
}

html.home-intro .hero-image {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 29;
    margin: 0;
    opacity: 0;
    transform: translate(-50%, -10%) scale(0.82);
    transition: opacity 0.68s ease, transform 0.68s ease;
    will-change: transform, opacity;
}

html.home-intro.home-intro-phase-logo .hero-image {
    opacity: 1;
    transform: translate(-50%, 8%) scale(1);
}

html.home-intro .hero-image .hero-placeholder {
    transition: none;
}

html.home-intro.home-intro-settle .navbar {
    opacity: 1;
    pointer-events: auto;
}

html.home-intro.home-intro-settle .hero-title,
html.home-intro.home-intro-settle .hero-image {
    opacity: 1;
}

html.home-intro.home-intro-settle .hero-subtitle,
html.home-intro.home-intro-settle .hero-description,
html.home-intro.home-intro-settle .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

html.home-intro.home-intro-settle .section,
html.home-intro.home-intro-settle .footer {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.6s ease 0.13s;
}

html.home-intro .hero-title.is-flipping,
html.home-intro .hero-image.is-flipping {
    position: fixed;
    transition: transform 0.77s cubic-bezier(0.22, 1, 0.36, 1);
}

html.home-intro-done .hero-title,
html.home-intro-done .hero-image {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    html.home-intro .navbar,
    html.home-intro .hero-title,
    html.home-intro .hero-image,
    html.home-intro .hero-subtitle,
    html.home-intro .hero-description,
    html.home-intro .hero-buttons,
    html.home-intro .section,
    html.home-intro .footer {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: static !important;
    }

    html.home-intro {
        overflow: auto;
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.page-section {
    padding-top: 140px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 900px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 2rem;
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 0.35rem;
        padding: 4px;
    }
    
    .navbar {
        z-index: 1001;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-logo a h2 {
        font-size: 1.3rem;
    }
}

/* About page */
.about-hero {
    padding-top: 140px;
    padding-bottom: 2.5rem;
    text-align: center;
    scroll-margin-top: 100px;
}

.about-hero .section-title {
    margin-bottom: 1rem;
}

/* Light fade-up entrance for page intros (About, Sponsors, Events) */
.about-hero .section-title,
.about-hero .about-page-intro,
.about-hero .about-jump-nav {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .section-title { animation-delay: 0.05s; }
.about-hero .about-page-intro { animation-delay: 0.15s; }
.about-hero .about-jump-nav { animation-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
    .about-hero .section-title,
    .about-hero .about-page-intro,
    .about-hero .about-jump-nav {
        animation: none;
    }
}

.about-page-intro {
    max-width: 640px;
    margin: 0 auto 1.75rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-jump-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.about-jump-link {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-jump-link:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

.about-section {
    scroll-margin-top: 100px;
}

.about-section-alt {
    background: #f8f9fa;
}

/* Events page map background */
.events-page {
    background-color: #ffffff;
    background-image: url('./events-map-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.events-page .about-hero,
.events-page .about-section {
    background: transparent;
}

.events-page .about-section-alt {
    background: rgba(255, 255, 255, 0.45);
}

.events-page .footer {
    background: rgba(26, 26, 26, 0.95);
}

@media (max-width: 900px) {
    .events-page {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* Shared abstract background: About, Our Team, Athletes, Contact */
.abstract-bg-page {
    background-color: #ffffff;
    background-image: url('./site-abstract-bg.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.abstract-bg-page .about-hero,
.abstract-bg-page .about-section,
.abstract-bg-page .page-section,
.abstract-bg-page .section {
    background: transparent;
}

.abstract-bg-page .about-section-alt {
    background: rgba(255, 255, 255, 0.4);
}

.abstract-bg-page .footer {
    background: rgba(26, 26, 26, 0.95);
}

@media (max-width: 900px) {
    .abstract-bg-page {
        background-attachment: scroll;
        background-position: right top;
    }
}

.about-prose {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-prose p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-subsection {
    margin-top: 3rem;
}

.about-subsection:first-of-type {
    margin-top: 1.5rem;
}

.about-subsection .section-subtitle {
    margin-bottom: 1.5rem;
}

.about-story-photo {
    margin: 3.25rem auto 0;
    max-width: 920px;
    text-align: center;
}

.about-story-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.about-story-photo figcaption {
    margin-top: 0.9rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.values-list span {
    display: inline-block;
    padding: 0.65rem 1.15rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
}

.about-section-alt .values-list span {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-section .objectives-grid {
    margin-top: 2.5rem;
}

.about-section .objectives-intro,
.about-section .about-prose + .objectives-grid {
    margin-top: 2.5rem;
}

/* Events page */
#upcoming,
#past,
#budget {
    scroll-margin-top: 100px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.event-date {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
}

.event-card h3 {
    color: #1a1a1a;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.event-card p {
    color: #4a4a4a;
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.event-tag {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: #f0f0f0;
    color: #1a1a1a;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.past-events-list {
    max-width: 860px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.past-event {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.past-event-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.past-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.past-event-date {
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.past-event-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
}

.past-event-chevron {
    color: #1a1a1a;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.past-event.is-open .past-event-chevron {
    transform: rotate(180deg);
}

.past-event-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    padding: 0 1.35rem;
}

.past-event.is-open .past-event-body {
    max-height: 1200px;
    opacity: 1;
    padding: 0 1.35rem 1.25rem;
}

.past-event-body p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.past-event-detail {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.past-event-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.past-event-detail:first-child {
    padding-top: 0;
}

.past-event-detail h4 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

@media (max-width: 640px) {
    .past-event-toggle {
        padding: 1rem;
    }

    .past-event.is-open .past-event-body {
        padding: 0 1rem 1rem;
    }
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.story-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Who Are We Section */
.who-are-we-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.who-are-we-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.who-are-we-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #1a1a1a;
}

.who-are-we-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.who-are-we-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: justify;
    text-align-last: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

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

.value-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Objectives Section */
.objectives-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.objectives-intro p {
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 1.15rem;
}

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

.objective-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.objective-card i {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.objective-card p {
    color: #666;
    line-height: 1.6;
}

/* Founders Section */
.founders-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.founder-card {
    background: white;
    border-radius: 4px;
    text-align: left;
    box-shadow: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #f0f0f0;
    flex: 0 1 300px;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-card > *:not(.founder-image) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.founder-card > *:last-child {
    padding-bottom: 1.75rem;
}

.founder-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #1a1a1a;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    font-size: 2.5rem;
    color: white;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: grayscale(1) contrast(1.05);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.03);
}

/* Placeholder logo used where a real photo isn't available yet */
.founder-image img[src$="team-logo.png"] {
    object-fit: contain;
    object-position: center;
    padding: 2.5rem;
    background: #f5f5f5;
    filter: none;
}

.founder-card:hover .founder-image img[src$="team-logo.png"] {
    transform: none;
}

.founder-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: #1a1a1a;
}

.founder-card .founder-role {
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.founder-card.athlete-card .athlete-description {
    margin-bottom: 0.75rem;
}

.founder-card p {
    color: #666;
    font-weight: 500;
}

.founder-resume {
    display: inline-block;
    margin-top: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.founder-resume:hover {
    color: #666;
}

.athlete-card .athlete-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.athlete-card .athlete-description {
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.athlete-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-bottom: 0;
    font-family: inherit;
    text-decoration: none;
}

.athlete-bio-toggle:hover {
    color: #666;
}

.athlete-bio-toggle .bio-toggle-label {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.athlete-bio-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.athlete-card.is-expanded .athlete-bio-toggle::after {
    transform: rotate(180deg);
}

.athlete-bio {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
    margin-top: 0;
}

.athlete-card.is-expanded .athlete-bio {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.athlete-bio-text {
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.athlete-resume {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.athlete-resume:hover {
    color: #666;
}

/* Featured Athletes Section */
.players-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.player-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
    padding: 2rem;
    text-align: center;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.player-image {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.player-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.player-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.player-resume {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-resume:hover {
    color: #666;
    border-bottom-color: #666;
}

/* Sponsorship Section */
.sponsors-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sponsorship-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sponsorship-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    cursor: pointer;
    flex: 1 1 280px;
    max-width: 340px;
}

.sponsorship-card.featured {
    border-color: #1a1a1a;
    transform: scale(1.05);
}

.sponsorship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.sponsorship-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.sponsorship-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.sponsorship-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.sponsorship-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.sponsorship-card li:last-child {
    border-bottom: none;
}

.package-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Current Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partner-logo {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.partner-logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-logo i {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #666;
}

.partner-logo span {
    color: #666;
    font-weight: 500;
}

/* Partner Card Styling */
.partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.partner-category {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partnership-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.partnership-type {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partnership-level {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-website {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-website:hover {
    background: #666;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

.form-group label {
    position: absolute;
    top: 14px;
    left: 18px;
    color: #999;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.8rem;
    color: #1a1a1a;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 900px) {
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        margin-left: 0;
        z-index: 1003;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > .nav-link,
    .nav-menu > li > a.nav-link {
        display: block;
        padding: 0.9rem 1.5rem;
    }

    .nav-item.has-dropdown {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f8f8;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.has-dropdown:hover > .dropdown-menu {
        max-height: 0;
        transform: none;
        pointer-events: none;
    }

    .nav-item.has-dropdown.open > .dropdown-menu {
        max-height: 240px;
        transform: none;
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-link {
        padding: 0.85rem 1.5rem;
    }

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

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

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

    .hero-buttons {
        justify-content: center;
    }

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 0.85rem 0 0.5rem;
    }
}

/* Budget Section */
.budget-grid {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.budget-item:hover {
    background-color: #f8f9fa;
}

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

.budget-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #1a1a1a;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.budget-category {
    font-weight: 500;
    color: #1a1a1a;
}

.budget-total .budget-category {
    color: white;
}

.budget-amount {
    font-weight: 600;
    color: #666;
}

.budget-total .budget-amount {
    color: white;
    font-size: 1.2rem;
}

.budget-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.budget-note p {
    color: #666;
    font-style: italic;
    margin: 0;
}

.budget-subtitle {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 3rem auto 1.5rem;
}

.budget-dream {
    margin-top: 0;
}

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

.value-card,
.athlete-card,
.partner-card,
.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
}

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