/* Estilos para la página de campos de golf */

b{
    color: rgb(4,106,56);
    font-weight: bold;
}
#courses{
    min-height: 800px;
    background-color: var(--maincolor);
}
.main_photo_courses{
    height: 350px;
    background-image: url(../images/mainphotocourses.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}
h2{
    color: var(--secondarycolor);
    text-transform: uppercase;
    margin: 1.8em auto;
    width: 75%;
    text-align: center;
    font-size: 2em;
}
#map{
    width: 90%;
    height: auto;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}
    #map > img{
    width: 80%;
    height: auto;
    }
#golfclubs_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr ;
    background-color: white;
    width: 80%;
    margin: 50px auto;
    gap: 15px;
    padding: 15px;
    overflow: hidden;
}
.golfclubs_subdivision{
    border: 1px solid black;
    transition: all .4s;
    box-shadow: 0px 0px 4px 3px #cecece;
}
.golfclubs_subdivision > a{
    text-decoration: none;
}
.golfclubs_subdivision:hover{
    box-shadow: 0px 0px 4px 3px var(--secondarycolor);
}
.golfclubs_subdivision:active{
    transform: scale(.9);
}
.golfclubs_item{
    display: flex;
    justify-content: center;
}
    .golfclubs_item > img{
        width: 60%;
    }
    .golfclubs_item > span{
        text-transform: uppercase;
        font-weight: bold;
        margin: 10px auto;
        color: var(--secondarycolor);
        text-align: center;
    }
#location{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}
    #location > div{
        width: 380px;
        margin: 0 0 10px 10px;
    }
    #location  h3{
        text-transform: uppercase;
        color: var(--secondarycolor);
    }
    #location a{
        display: block;
        width: max-content;
        text-decoration: none;
        padding: 3px 0 3px 20px;
        color: #0054B4;
        transition: all .3s;
    }
    #location a:hover{
        color: #00A1EB;
    }
#location_secondchild{
    margin-top: 20px;
}
#separador{
    height: 100px;
}

/* RESPONSIVE */

@media only screen and (max-width: 756px){
    #golfclubs_container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        background-color: white;
        width: 85%;
        margin: 40px auto;
        gap: 15px;
        padding: 15px;
        overflow: hidden;
    }
    .main_photo_courses{
        height: 200px;
        margin-bottom: 10px;
    }
    header{
        border-bottom: 5px solid var(--secondarycolor);
        max-height: 50px;
    }
    h2{
        margin: 1.5em auto;
        width: 90%;
        font-size: 1.6em;
    }
    #map > img{
    width: 90%;
    }
}