/* =====================
   CSS Variables & Reset
   ===================== */
:root {
    --primary-teal: #65AFB1;
    --primary-dark: #265B4D;
    --bg-light: #F8FAFA;
    --text-dark: #1A1A1A;
    --text-gray: #5A5A5A;
    --white: #FFFFFF;
    --accent-light: #E8F4F5;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure touch targets are at least 44px */
a,
button,
.btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent text selection on buttons */
button,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

/* =====================
   Hero Section
   ===================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: relative;
    z-index: 100;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-dark);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Reset the ul inside nav-links */
.nav-links ul,
.nav-links .navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

/* Reset the li items */
.nav-links li,
.nav-links .nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Style all nav link text */
.nav-links .nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    min-height: auto;
    min-width: auto;
}

.nav-links .nav-link:hover {
    color: var(--primary-teal);
}

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

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

.nav-links .nav-link.active {
    color: var(--primary-teal);
}

/* The "Nous Soutenir" / "Support Us" button — GREEN bg, WHITE text */
.nav-links .nav-btn,
.nav-links a.btn.nav-btn,
.nav-links a.btn.btn-primary.nav-btn {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-dark) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.nav-links .nav-btn:hover,
.nav-links a.btn.nav-btn:hover,
.nav-links a.btn.btn-primary.nav-btn:hover {
    background: var(--primary-teal) !important;
    color: var(--white) !important;
    border-color: var(--primary-teal) !important;
}

.nav-links .nav-btn::after,
.nav-links a.btn.nav-btn::after {
    display: none !important;
}

.cta-button {
    background: var(--primary-dark);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.cta-button:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 175, 177, 0.3);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-teal);
    font-size: 6.5rem;
    margin-left: -5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(101, 175, 177, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

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

.basketball-icon {
    width: 400px;
    height: 400px;
    animation: float 6s ease-in-out infinite, fadeInRight 1s ease-out;
}

.basketball-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(101, 175, 177, 0.2));
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    animation: fadeIn 1.5s ease-out;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--primary-teal);
    animation: scrollLineMove 2s ease-in-out infinite;
}

/* =====================
   About Section
   ===================== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

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

.about-card {
    background: var(--accent-light);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
    box-shadow: 0 15px 40px rgba(101, 175, 177, 0.15);
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.about-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--primary-dark);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* =====================
   Tournament Section
   ===================== */
.tournament {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.tournament-background {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    opacity: 0.03;
    transform: translateY(-50%) skewY(-3deg);
}

.tournament-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 15px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-detail {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.ticket-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}


.ticket-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #E5E5E5;
    transition: all 0.4s ease;
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ticket-card.featured {
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-teal);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticket-header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.ticket-card.featured .ticket-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ticket-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ticket-card.featured h3 {
    color: var(--white);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-teal);
}

.ticket-card.featured .amount {
    color: var(--white);
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.ticket-card.featured .ticket-features li {
    color: rgba(255, 255, 255, 0.9);
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.ticket-card.featured .ticket-features li::before {
    color: var(--white);
}

.ticket-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.ticket-card.featured .ticket-button {
    background: var(--white);
    color: var(--primary-dark);
}

.ticket-card.featured .ticket-button:hover {
    background: var(--accent-light);
}

/* =====================
   Team Section
   ===================== */
.team {
    padding: 8rem 0;
    background: var(--white);
}

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

.team-member {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.3s;
}

.team-member:nth-child(4) {
    animation-delay: 0.4s;
}

.team-member:nth-child(5) {
    animation-delay: 0.5s;
}

.team-member:nth-child(6) {
    animation-delay: 0.6s;
}

.member-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-teal);
    transition: all 0.4s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
    border-color: var(--primary-dark);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =====================
   Support Section
   ===================== */
.support {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

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

.support-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.support-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.support-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================
   Footer
   ===================== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3,
.footer-links h4,
.footer-contact h4,
.footer-partners h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-brand p,
.footer-contact p,
.footer-partners p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-links ul,
.footer-contact .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a,
.footer-contact .social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a:hover,
.footer-contact .social-links a:hover {
    color: var(--primary-teal);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* =====================
   Animations
   ===================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollLineMove {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .title-line.highlight {
        font-size: 5.5rem;
    }

    .tournament-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 101;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul,
    .nav-links .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li,
    .nav-links .nav-item {
        width: 100%;
    }

    .nav-links .nav-link {
        padding: 1rem 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid #E5E5E5;
        font-size: 1.1rem;
    }

    .nav-links .nav-link::after {
        display: none;
    }

    .nav-links .nav-btn,
    .nav-links a.btn.nav-btn,
    .nav-links a.btn.btn-primary.nav-btn {
        margin-top: 1rem;
        text-align: center;
        display: block;
        width: 100%;
    }

    .nav-links a.cta-button {
        margin-top: 1rem;
        text-align: center;
        border-bottom: none;
    }

    .hero-content {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }

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

    .title-line.highlight {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .basketball-icon {
        width: 250px;
        height: 250px;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 2rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .tournament-info-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ticket-cards {
        grid-template-columns: 1fr;
    }

    .ticket-card.featured {
        transform: scale(1);
    }

    .ticket-card {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
    }

    .support-content h2 {
        font-size: 2.5rem;
    }

    .support-content p {
        font-size: 1.1rem;
    }

    .support-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .title-line.highlight {
        font-size: 5rem;
    }

    .basketball-icon {
        width: 350px;
        height: 350px;
    }

    .tournament-info-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .ticket-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

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

    .title-line.highlight {
        font-size: 2.8rem;
    }

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

    .basketball-icon {
        width: 200px;
        height: 200px;
    }

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

    .section-label {
        font-size: 0.8rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .card-number {
        font-size: 2.5rem;
    }

    .about-card h3 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .info-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .info-text h4 {
        font-size: 1.1rem;
    }

    .ticket-card {
        padding: 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .member-photo {
        width: 130px;
        height: 130px;
    }

    .photo-placeholder {
        font-size: 2.5rem;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .support-content h2 {
        font-size: 2rem;
    }

    .support-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .title-line.highlight {
        font-size: 2.3rem;
    }

    .basketball-icon {
        width: 180px;
        height: 180px;
    }

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

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem 2rem;
    }

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

    .title-line.highlight {
        font-size: 3rem;
    }

    .basketball-icon {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Language Toggle */
.language-toggle {
    margin-left: 1rem;
    font-weight: 500;
}

.lang-link {
    text-decoration: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--primary-teal);
}

.lang-link.active {
    color: var(--primary-teal);
    border-bottom: 2px solid var(--primary-teal);
    pointer-events: none;
}

.lang-separator {
    color: var(--text-gray);
    margin: 0 5px;
}

.navbar-light {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* =====================
   Ticket Purchase Page
   ===================== */
.tickets-page {
    min-height: 100vh;
    background: var(--bg-light);
}

.tickets-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    padding: 7rem 0 5rem;
    text-align: center;
    color: var(--white);
}

.tickets-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 2px;
    margin: 0.75rem 0;
    color: var(--white);
}

.tickets-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.tickets-body {
    padding: 4rem 2rem 6rem;
}

/* Price chips */
.prices-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.price-chip {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 20px;
    padding: 2rem 3rem;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(38, 91, 77, 0.25);
    transition: transform 0.3s ease;
}

.price-chip:hover {
    transform: translateY(-5px);
}

.price-chip-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 8px 30px rgba(101, 175, 177, 0.2);
}

.price-chip-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-chip-label em {
    font-style: normal;
    font-size: 0.85rem;
}

.price-chip-amount {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 1px;
    color: var(--primary-teal);
}

.price-chip-secondary .price-chip-amount {
    color: var(--primary-dark);
}

/* Included activities grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.included-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(101, 175, 177, 0.15);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.included-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* eTickets widget box */
.etickets-section {
    max-width: 800px;
    margin: 0 auto;
}

.etickets-box {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--accent-light);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .tickets-title {
        font-size: 3rem;
    }

    .prices-row {
        gap: 1rem;
    }

    .price-chip {
        padding: 1.5rem 2rem;
        min-width: 140px;
    }

    .etickets-box {
        padding: 2rem 1rem;
    }
}