/* FONTS */
@font-face {
    font-family: "oswald";
    src: url(../fonts/Oswald-Regular.ttf);
}

@font-face {
    font-family: "norwester";
    src: url(../fonts/norwester.otf);
}

@font-face {
    font-family: "font-light";
    src: url(../fonts/font-light.otf) format('woff');
}

@font-face {
    font-family: "font-regular";
    src: url(../fonts/font-regular.ttf) format('woff');
}

@font-face {
    font-family: "font-bold";
    src: url(../fonts/font-heavy.otf) format('woff');
    font-weight: bold;
}

@font-face {
    font-family: "font-secondary-bold";
    src: url(../fonts/font-secondary-bold.otf);
    font-weight: bold;
}

body {
    font-family: "font-bold";
}

a {
    text-decoration: none;
}

b {
    font-family: "font-bold";
}

.text-ellipsis {
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.section-title {
    font-family: "font-secondary-bold";
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
}

.text-thin {
    font-family: "font-light";
}

/* BRANCHES */
.branch-banner {
    height: 600px;
    background-image: url(../images/branches/Banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0;
    padding: 0;
}

.branch-banner .title{
    font-size: 60px;
    line-height: 57px;
    text-align: left;
}

.branch-banner .detail{
    text-align: justify;
    font-size: 15px;
    line-height: 5px;
}

.branch-carousel .schedule {
    font-family: "font-light";
    text-align: center;
}

.branch-carousel .description {
    font-family: "font-light";
    text-align: justify;
}

/* ABOUT US */
.about-header {
    background-image: url('../images/about-us/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex; 
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.about-header img {
    width: 400px;
}

.about-description {
    font-family: "font-light";
    text-align: center;
    width: 70%;
}

/* HEADER */
header .logo img {
    height: 50px !important;
    max-height: 50px !important;
}

/* FOOTER */
footer {
    padding: 2rem 0;
}

footer .logo {
    text-align: left;
    padding: .5rem 0;
    display: flex;
    align-items: center;
}

footer img {
    max-width: 100px;
}

footer p {
    font-family: 'font-light';
    margin: .5rem 0 .5rem 0;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer .info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .social-network-list {
    display: flex;
    align-items: center;
    justify-content: end;
}

footer .social-network {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 24px;
    display: inline-flex;
}

footer .social-network li{
    padding: 0 4px;
}

/*SCROLL*/
body::-webkit-scrollbar, .scroll::-webkit-scrollbar {
    width: 4px;     /* Tamaño del scroll en vertical */
    height: 8px;    /* Tamaño del scroll en horizontal */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
body::-webkit-scrollbar-thumb, .scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
body::-webkit-scrollbar-track, .scroll::-webkit-scrollbar-track {
    border-radius: 4px;
}

/* RESERVAS */
.bookings {
    background-image: url(../images/bookings/booking-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
} 

.bookings form {
    padding: auto;
    text-align: left;
}

.bookings .form-control, .bookings .form-select {
    background-color: transparent;
    border-color: unset;
    border: unset;
    border-radius: unset;
}

.bookings .form-control:focus, .bookings .form-control:focus-visible,
.bookings .form-select:focus, .bookings .form-select:focus-visible {
    box-shadow: unset;
}

@media screen and (max-width: 992px) {
    .section-title {
        font-size: 3rem;
    }

    /* ABOUT US */
    .about-description {
        width: auto;
    }

    .about-header {
        background-position: center left;
    }

    .about-header img {
        width: 240px;
    }

    /* BRANCHES */
    .branch-banner {
        height: 300px;
        background-image: url(../images/branches/Banner.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .branch-banner .title{
        text-align: center;
        font-size: 40px;
        line-height: 37px;
    }

    /* HEADER */
    .prenavbar {
        display: none;
    }

    li.nav-item {
        display: block;
    }

    footer .logo {
        text-align: center;
        justify-content: center;
    }

    footer .social-network {
        text-align: center;
    }
    
    footer .social-network-list {
        justify-content: center;
    }

    .slick-slider {
        z-index: 0 !important;
        -webkit-user-select: auto !important;
        -moz-user-select: auto !important;
        -ms-user-select: auto !important;
        user-select: auto !important;
    }
}