/* ANIMACION */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BANNER */
.banner {
    background-image: url("../img/adaptaciones/destinofuerteventura/hotel_corralejo_beach_destino_head.jpg");
}

.banner.club{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    height: 72vh;
    overflow: hidden;
    position: relative;
}

.banner-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.section {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}

.section h2 {
    color: #508bb6;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    padding-bottom: 30px;
}

.section-half h2 {
    width: 100%;
}

.section p {
    padding-bottom: 50px;
    color: #878787;
    text-align: justify;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.5;
}

.section-half p {
    width: 50%;
}

/* EXPLORANDO EL CONTINENTE */
.section-full .images {
    display: block;
    text-align: center;
}

.section-full img {
    width: 160px;
    height: 160px;
    margin: 0 0.5px;
}

.section-full .slogan {
    font-size: 30px;
    padding: 70px 0;
    line-height: 50px;
    text-align: center;
}

/* MOGAN */
.section-half {
    display: flex;
    flex-wrap: wrap;
}

.section-half .images-content {
    width: 50%;
    margin: 10px 0 50px;
}

.section-half:nth-of-type(2n) .images-content {
    text-align: right;
}

.section-half img {
    width: 160px;
    height: 160px;
    margin: 0;
}

/* Ajustes para animaciones de imagenes */
.section-full a,
.section-half a {
    display: inline-block;
    overflow-y: hidden;
}

.section-half a{
    height: 160px;
}

.section-full img,
.section-half img {
    opacity: 0;
}

/* GASTRONOMY */
.gastronomy {
    background-color: #f9f9f9;
    padding: 70px 0;
}

.gastronomy-title {
    text-align: center;
    margin: 30px 0;
}

.gastronomy-title p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #a3a3a3;
}

.gastronomy-title h2 {
    font-size: 48px;
    line-height: 64px;
    margin: 30px 0;
}

.gastronomy-title hr {
    width: 30px;
    margin: auto;
    margin-top: 15px;
}
.gastronomy-text{
    font-size: 12px;
    padding: 0% 10%;
}


/* PARTES GASTRONOMY */
.gastronomy-parts {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gastronomy-part {
    width: 400px;
    margin: 50px 20px;
    margin-bottom: 0;
    text-align: center;
}

.gastronomy-part h3 {
    color: #508bb6;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: 5px;
    padding: 20px 0 10px;
}

.gastronomy-part img {    
    animation: 0.8s ease-out 0s 1 slideUp;
    animation-fill-mode: forwards;
    opacity: 0;
    width: 100%;
}

.gastronomy-part .button-more {
    padding-bottom: 30px;
}

.gastronomy-part .button-more a {
    padding: 10px 30px;
}

.gastronomy-part .button-text {
    padding: 0px 90px;
}

.introduccion {
    max-width: 1200px;
    padding: 0 15px;
    margin: 120px auto;
}

.introduccion h1 {
    text-align: center;
    color: #508bb6;
    font-size: 40px;
    margin-bottom: 60px;
}

.introduccion p {
    color: #A3A3A3;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
}

/* MOVIL */
@media screen and (min-width: 340px) and (max-width: 740px) {
    #restaurants {
        flex-wrap: wrap;
    }

    #restaurants .section {
        width: 100%;
    }
    
    .section {
        padding: 0 7%;
    }

    .section-half .images-content,
    .section-half p {
        width: 100%;
    }

    .images-content,
    .section-half:nth-of-type(2n) .images-content {
        text-align: center;
    }
}
