.club-hero{

    background:linear-gradient(
        135deg,
        #003E7E,
        #002d5c
    );

    color:white;

    text-align:center;

    padding:120px 0;
}

.club-hero h1{

    font-size:56px;

    margin-bottom:15px;
}

.club-hero p{

    opacity:.8;
}

.club-content-section{

    background:#f8fbff;

    padding:40px 0;

    display:flex;

    align-items:center;

    flex:1;

}

.club-content-section .container{

    width:100%;
}

.club-grid{

    display:grid;

    grid-template-columns:3fr 1fr;

    gap:40px;
}


.club-main{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#club-map{

    width:100%;

    height:650px;
}

.club-sidebar{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.club-sidebar h3{

    color:#003E7E;

    margin-bottom:25px;
}

.club-sidebar ul{

    list-style:none;
}

.club-sidebar li{

    margin-bottom:15px;

    line-height:1.5;
}

.club-itineraire{

    width:100%;

    margin-top:25px;

    text-align:center;
}

main{

    flex:1;

    display:flex;

    flex-direction:column;
}

.club-content-section{

    flex:1;

    display:flex;

    align-items:center;
}

.club-content-section{

    flex:1;

    display:flex;

    align-items:center;

    padding:20px 0;
}
@media(max-width:992px){

    .club-grid{

        grid-template-columns:1fr;
    }

    #club-map{

        height:450px;
    }
}

@media(max-width:768px){

    .club-hero{

        padding:80px 20px;
    }

    .club-hero h1{

        font-size:38px;
    }

    #club-map{

        height:350px;
    }
}

.club-details{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
}

.club-details h2{
    color:#003b7a;
    margin-bottom:30px;
}

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

.club-infos-grid div{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.club-no-map{
    height:650px;
    background:#fff;
    border-radius:15px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.club-no-map h3{
    color:#003b7a;
    margin-bottom:15px;
}

.clubs-search{
    max-width:700px;
    margin:0 auto;
}

.clubs-search input{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    padding:0 20px;
    font-size:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.clubs-count{
    text-align:center;
    margin:25px 0 40px;
    color:#666;
    font-size:15px;
}

#clubs-results{
    max-width:900px;
    margin:0 auto;
}

.club-result{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;
    padding:18px 24px;

    margin-bottom:12px;

    border-radius:12px;

    text-decoration:none;
    color:#222;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

    transition:.2s;
}

.club-result:hover{
    transform:translateY(-2px);
}

.club-result strong{
    color:#003b7a;
}

.club-result span{
    color:#666;
}

.no-results{
    text-align:center;
    padding:30px;
}