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

:root {
    --gold: #FFD100;
    --gold-light: #FFE04D;
    --gold-bg: #FFFBEA;
    --blue: #002868;
    --blue-light: #003A8C;
    --dark: #1A1A1A;
    --text: #333333;
    --text-light: #666666;
    --bg: #FFFFFF;
    --bg-alt: #F7F7F7;
    --bg-card: #FFFFFF;
    --border: #E5E5E5;
}

html {
    scroll-behavior: smooth;
}

/* Scroll reveal animations */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--blue);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--blue);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

.btn-gold {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: var(--blue);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: none;
    box-shadow: 0 2px 12px rgba(0, 40, 104, 0.3);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #FFFFFF;
}

.nav-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0.7;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('Logos and pics/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 104, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--gold);
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--bg);
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-header h2 {
    margin-bottom: 0;
}

/* ===== TRAINING BANNER ===== */
.training-banner {
    background: var(--blue);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 40, 104, 0.25);
    transition: box-shadow 0.3s ease;
}

.training-banner:hover {
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.6), 0 0 40px rgba(255, 209, 0, 0.3);
}

.training-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 209, 0, 0.08);
    border-radius: 50%;
}

.training-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 209, 0, 0.06);
    border-radius: 50%;
}

.training-banner-inner {
    position: relative;
    z-index: 1;
}

.training-line-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.training-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.training-highlight {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.training-line-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.training-venue-link {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.training-venue-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.training-pin {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.training-line-ages {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .training-highlight {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .training-banner {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .training-line-ages {
        font-size: 0.9rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--blue);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== QUOTE ===== */
.quote-section {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.club-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 30px;
}

.club-quote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -30px;
    left: 0px;
    font-family: Georgia, serif;
    line-height: 1;
}

.club-quote p {
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    line-height: 1.9;
    letter-spacing: 0.2px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.about-text-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.about-text-link:hover {
    opacity: 0.7;
}

.about-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
}

.highlight-item h3 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 70px 0;
    background: var(--blue);
    text-align: center;
}

.cta-banner h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
}

.cta-banner .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ===== ROSTER ===== */
.roster {
    padding: 100px 0;
    background: var(--bg);
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 15px;
}

.player-card {
    background: var(--bg-card);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.player-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.player-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    min-width: 45px;
    text-align: center;
}

.player-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.position {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SCHEDULE ===== */
.schedule {
    padding: 100px 0;
    background: var(--bg-alt);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-card {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 20px 25px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.match-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-color: var(--gold);
}

.match-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    margin-right: 25px;
}

.match-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.match-date .month {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.match-details {
    flex: 1;
}

.match-details h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.match-details .vs {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.85rem;
}

.match-details p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.match-status {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.match-status.upcoming {
    background: rgba(0, 40, 104, 0.1);
    color: var(--blue);
    border: 1px solid rgba(0, 40, 104, 0.25);
}

.match-status.win {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.match-status.loss {
    background: rgba(244, 67, 54, 0.1);
    color: #C62828;
    border: 1px solid rgba(244, 67, 54, 0.25);
}

/* ===== SPONSORS ===== */
.sponsors {
    padding: 60px 0;
    background: var(--bg);
    text-align: center;
}

.sponsors h2 {
    margin-bottom: 16px;
}

.sponsors > .container > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-logos .sponsor-card-link {
    width: calc(25% - 15px);
}

.sponsor-card {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.sponsor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-card img.sponsor-img-lg {
    transform: scale(1.2);
}

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

@media (max-width: 768px) {
    .sponsor-logos .sponsor-card-link {
        width: calc(50% - 10px);
    }
}

/* ===== FIND US / MAP ===== */
.find-us {
    padding: 80px 0;
    background: var(--bg);
    text-align: center;
}

.find-us-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.social-facebook:hover {
    background: #0d65d9;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFFFFF;
}

.social-instagram:hover {
    opacity: 0.9;
}

.social-email {
    background: var(--blue);
    color: #FFFFFF;
}

.social-email:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .social-link {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-alt);
}

.contact > .container {
    text-align: center;
}

.contact p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form .btn {
    width: 100%;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0;
    background: var(--dark);
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

footer .footer-links {
    margin-bottom: 16px;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: var(--gold-light);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--gold);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
}

/* ===== SPONSORS PAGE ===== */
.sponsors-hero {
    padding: 140px 0 80px;
    background: #FFFFFF;
    text-align: center;
}

.sponsors-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.sponsors-hero h1 span {
    color: var(--blue);
}

.sponsors-hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.sponsors-page-section {
    padding: 80px 0;
    background: var(--bg);
}

a.sponsor-detail-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    outline: none;
}

a.sponsor-detail-card:focus,
a.sponsor-detail-card:focus-visible {
    outline: none;
}

a.sponsor-detail-card:focus:not(.sponsor-highlight),
a.sponsor-detail-card:focus-visible:not(.sponsor-highlight) {
    box-shadow: none;
}

.sponsor-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sponsor-detail-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.sponsor-detail-card.sponsor-highlight {
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.6), 0 0 40px rgba(255, 209, 0, 0.3);
    border-color: var(--gold);
    outline: none;
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.sponsor-detail-logo {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sponsor-detail-logo.logo-lg {
    height: 170px;
    padding: 5px;
}

.sponsor-detail-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-text-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.sponsor-detail-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sponsor-tag {
    display: inline-block;
    background: rgba(0, 40, 104, 0.08);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.sponsor-detail-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.sponsors-cta {
    padding: 70px 0;
    background: var(--blue);
    text-align: center;
}

.sponsors-cta h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.sponsors-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.sponsors-cta .btn {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
}

.sponsors-cta .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.nav-active {
    color: var(--gold) !important;
}

@media (max-width: 768px) {
    .sponsors-hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .sponsor-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .sponsor-detail-logo {
        width: 160px;
        height: 110px;
    }

    .sponsor-detail-logo.logo-lg {
        height: 120px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: #FFFFFF;
    padding: 140px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 16px;
}

.about-hero h1 span {
    color: var(--blue);
}

.about-hero-tagline {
    font-size: 1.4rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Split layout: image + text side by side */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-split-reverse {
    direction: rtl;
}

.about-split-reverse > * {
    direction: ltr;
}

.about-split-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.about-split-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.6), 0 0 40px rgba(255, 209, 0, 0.3);
}

.about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
    transition: transform 0.5s ease;
}

.about-split-img:hover img {
    transform: scale(1.08);
}


.about-split-text h2 {
    text-align: left;
    margin-bottom: 24px;
    font-size: 2rem;
}

.about-split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.about-split-text p:last-child {
    margin-bottom: 0;
}

.about-intro {
    padding: 80px 0;
    background: #FFFFFF;
}

/* Mission banner: full-width photo background with overlay */
.about-mission-banner {
    position: relative;
    background: url('hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 360px;
}

.about-mission-overlay {
    background: var(--blue);
    padding: 100px 0;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.about-mission-overlay .container {
    text-align: center;
    max-width: 750px;
}

.about-mission-overlay h2 {
    color: var(--gold);
    margin-bottom: 24px;
    font-size: 2.2rem;
}

.about-mission-overlay p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

/* Values */
.about-values {
    padding: 80px 0;
    background: var(--bg);
}

.about-values h2 {
    margin-bottom: 50px;
}

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

.value-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-card-photo {
    padding: 0;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.value-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.value-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.value-card:nth-child(1) .value-photo img {
    object-position: center 30%;
}

.value-card:nth-child(2) .value-photo img {
    object-position: center 10%;
}

.value-card:hover .value-photo img {
    transform: scale(1.05);
}

.value-body {
    padding: 28px 24px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Community section */
.about-community-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

/* Training */
.about-training {
    padding: 80px 0;
    background: var(--bg);
}

.training-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.training-text h2 {
    text-align: left;
    margin-bottom: 24px;
    font-size: 2rem;
}

.training-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.training-text strong {
    color: var(--blue);
}

.training-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.training-detail-item svg {
    flex-shrink: 0;
}

.training-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.training-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Join CTA */
.about-join {
    padding: 80px 0;
    background: var(--blue);
    text-align: center;
}

.about-join h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.about-join p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .about-hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-split-reverse {
        direction: ltr;
    }

    .about-split-text h2 {
        text-align: center;
    }

    .about-split-img img {
        min-height: 240px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training-split {
        grid-template-columns: 1fr;
    }

    .training-text h2 {
        text-align: center;
    }

    .training-map {
        min-height: 300px;
    }

    .about-mission-banner {
        background-attachment: scroll;
    }

    .about-mission-overlay {
        padding: 60px 0;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .navbar {
        padding: 8px 12px;
    }

    .nav-brand {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        gap: 5px;
    }

    .nav-logo {
        width: 25px;
        height: 25px;
    }

    .nav-toggle {
        display: block;
        font-size: 1.2rem;
        padding: 4px 8px;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blue);
        flex-direction: column;
        padding: 20px 40px;
        gap: 15px;
        border-bottom: none;
        box-shadow: 0 8px 20px rgba(0, 40, 104, 0.3);
    }

    .nav-icons {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .about-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .about-grid .stat-card {
        width: calc(50% - 6px);
    }

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

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

    .match-card {
        flex-wrap: wrap;
        gap: 10px;
    }

    .match-status {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* ===== AUTH PAGES ===== */
.auth-hero {
    padding: 140px 0 60px;
    background: var(--blue);
    text-align: center;
}

.auth-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
}

.auth-hero h1 span {
    color: var(--gold);
}

.auth-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.auth-section {
    padding: 60px 20px 80px;
    background: var(--bg-alt);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-card-wide {
    max-width: 800px;
    text-align: left;
}

.auth-card-wide h2,
.auth-card-wide > p {
    text-align: left;
}

.auth-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: #FFFFFF;
    margin-bottom: 20px;
}

.auth-card h2 {
    font-size: 1.8rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.auth-card > p {
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
}

.auth-form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-form .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.auth-form .form-group input,
.auth-form .form-group select,
.auth-form .form-group textarea {
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.1);
}

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

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--blue);
}

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

.auth-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 4px;
}

.auth-switch {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.auth-switch a {
    color: var(--blue);
    font-weight: 600;
}

.auth-switch a:hover {
    color: var(--gold);
}

.form-section {
    margin-bottom: 8px;
}

.form-section-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--blue);
    flex-shrink: 0;
}

.consent-group label {
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1.5;
}

.consent-group label a {
    color: var(--blue);
    font-weight: 600;
}

.nav-register {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 6px 16px !important;
    border-radius: 20px;
    font-weight: 700 !important;
    transition: background 0.3s ease !important;
}

.nav-register:hover {
    background: var(--gold-light) !important;
    color: var(--dark) !important;
}

.nav-register::after {
    display: none !important;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 32px 24px;
    }

    .auth-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== WHATSAPP BUBBLE ===== */
.whatsapp-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 40, 104, 0.6), 0 0 30px rgba(0, 40, 104, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 40, 104, 0.8), 0 0 40px rgba(0, 40, 104, 0.4);
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-bubble svg {
        width: 26px;
        height: 26px;
    }
}
