
/* =========================
   GENERAL STYLES
========================= */
:root {
    --primary-green: #a3e635;
    --dark-bg: #000000;
    --card-bg: #111111;
    --text-light: #cccccc;
}

/* =========================
   SPORTS OVERVIEW SECTION
========================= */
.sports-overview {
    background: #ffffff;
    padding: 80px 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.sports-overview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000;
}

.sports-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sport-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sport-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
}

.sport-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.sport-card:hover .sport-icon {
    transform: rotate(10deg) scale(1.1);
}

.sport-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

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

/* =========================
   FACILITIES SECTION
========================= */
.facilities-section {
    background: var(--dark-bg);
    padding: 80px 0;
    color: #fff;
}

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

.facilities-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

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

.facility-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(163, 230, 53, 0.2);
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
}

.facility-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.facility-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* =========================
   PROGRAMS SECTION
========================= */
.programs-section {
    background: #f9fafb;
    padding: 80px 0;
}

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

.programs-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.program-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #000;
}

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

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.program-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.program-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li i {
    color: var(--primary-green);
}

.enroll-btn {
    background: #000;
    color: var(--primary-green);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background: var(--primary-green);
    color: #000;
}

/* =========================
   UPCOMING EVENTS SECTION
========================= */
.upcoming-events {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.view-all-btn {
    border: 2px solid var(--primary-green);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-green);
    color: #000;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: linear-gradient(180deg, #111, #050505);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 2px solid gray;
}

.event-card:hover {
    transform: translateY(-10px);
    border: 2px solid #a3e635;
}

.event-image {
    position: relative;
    height: 220px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: #000;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
}

.type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-content p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 18px;
}

.event-meta {
    list-style: none;
    padding: 0;
    margin: 0 5px 20px 10px;
}

.event-meta li {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
    margin-right: 10px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register-btn {
    background: var(--primary-green);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.register-btn:hover {
    background: #bef264;
}

.participants {
    font-size: 14px;
    color: #aaa;
}

.no-events {
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-top: 40px;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-section {
    background: #ffffff;
    padding: 80px 0;
}

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

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #000;
    color: var(--primary-green);
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

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

.benefit-card:hover h4,
.benefit-card:hover p {
    color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .sports-overview h2,
    .facilities-section h2,
    .programs-section h2,
    .why-choose-section h2 {
        font-size: 2rem;
    }

    .sports-grid,
    .facilities-grid,
    .programs-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .sports-overview h2,
    .facilities-section h2,
    .programs-section h2,
    .why-choose-section h2 {
        font-size: 1.8rem;
    }

    .sports-grid,
    .event-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-tabs {
        justify-content: flex-start;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .sports-overview,
    .facilities-section,
    .programs-section,
    .upcoming-events,
    .why-choose-section {
        padding: 60px 0;
    }

    .sports-overview h2,
    .facilities-section h2,
    .programs-section h2,
    .section-header h2,
    .why-choose-section h2 {
        font-size: 1.5rem;
    }

    .sport-card,
    .facility-item,
    .benefit-card {
        padding: 20px;
    }

    .facilities-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


