/* ============================================================
   SPORTS FACILITIES – FINGARA CLUB
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #f8f6f2;
    color: #1a2a3a;
    line-height: 1.6;
}

.sports-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.sports-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 3rem 3.5rem;
}

/* ── Header ── */
.sports-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.8rem;
    border-bottom: 4px solid #c9a86c;
}

.sports-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f1c2b;
    letter-spacing: -0.5px;
}

.sports-header h1 span {
    color: #c9a86c;
}

.sports-sub {
    color: #5a6f7e;
    font-size: 1.1rem;
    margin-top: 6px;
}

/* ── Grid ── */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-card {
    background: #faf9f6;
    border-radius: 16px;
    padding: 2rem 1.8rem;
    text-align: center;
    border: 1px solid #edeae3;
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #c9a86c;
}

.facility-icon {
    font-size: 2.8rem;
    color: #c9a86c;
    margin-bottom: 1rem;
}

.facility-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1c2b;
    margin-bottom: 0.6rem;
}

.facility-card p {
    color: #3d4f60;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.facility-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.facility-card ul li {
    color: #2c3e50;
    font-size: 0.88rem;
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-card ul li i {
    color: #c9a86c;
    font-size: 0.75rem;
}

/* ── CTA ── */
.sports-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #edeae3;
    text-align: center;
}

.sports-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1c2b;
    margin-bottom: 1.2rem;
}

.btn-sports-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c9a86c;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(201, 168, 108, 0.35);
}

.btn-sports-cta:hover {
    background: #b8975a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 168, 108, 0.45);
}

/* ── Responsive ── */
@media screen and (max-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 820px) {
    .sports-container {
        padding: 2rem 1.8rem;
    }
    .sports-header h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 640px) {
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sports-section {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    .sports-container {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }
    .sports-header h1 {
        font-size: 1.8rem;
    }
    .facility-card {
        padding: 1.5rem 1.2rem;
    }
    .btn-sports-cta {
        width: 100%;
        justify-content: center;
    }
}