/* ==================================
   HERO
================================== */

.clubs-hero{
    background:#0b4a92;
    color:#fff;
    padding:100px 0;
    text-align:center;
}

.clubs-hero .section-subtitle{
    color:#e30613;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.clubs-hero h1{
    font-size:48px;
    margin:15px 0;
}

.clubs-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

/* ==================================
   SEARCH
================================== */

.clubs-search{
    padding:50px 0;
    text-align:center;
}

.clubs-search input{
    width:100%;
    max-width:600px;
    padding:16px 25px;
    border:none;
    border-radius:50px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-size:15px;
}

.clubs-search input:focus{
    outline:none;
}

/* ==================================
   CLUBS GRID
================================== */

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

.club-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.club-card:hover{
    transform:translateY(-5px);
}

.club-card-content{
    padding:30px;
    text-align:center;
}

.club-card h3{
    font-size:24px;
    margin-bottom:10px;
    color:#1d1d1d;
}

.club-card p{
    color:#666;
    margin-bottom:25px;
}

/* ==================================
   BUTTON
================================== */

.club-card .btn{
    display:inline-block;
    background:#e30613;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.club-card .btn:hover{
    background:#c50010;
}

/* ==================================
   MAP
================================== */

.clubs-map-section{
    padding:80px 0;
}

#clubs-map{
    width:100%;
    height:650px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
}

.section-title .section-subtitle{
    color:#e30613;
    font-weight:700;
    text-transform:uppercase;
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:992px){

    .clubs-hero h1{
        font-size:38px;
    }

    #clubs-map{
        height:500px;
    }

}

@media(max-width:768px){

    .clubs-hero{
        padding:80px 0;
    }

    .clubs-hero h1{
        font-size:32px;
    }

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

    #clubs-map{
        height:400px;
    }

}