/*------ Global Variables ------*/

:root {
    --accent-color: #ffbd23;
    --primary-dark: #1c1c1c;
    --secondary-dark: #2b2b2b;
    --secondary-darker: #151515;
    --primary-text: #ffffff;
}

/*------ Base styles ------*/
a {
    text-decoration: none;
    color: var(--primary-text);  /* leave this there for email tag */
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    background: var(--primary-dark);
    font-family: 'Hind', sans-serif;
    color: var(--primary-text);
}

html {
    scroll-behavior: smooth;
}

h1{
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
    font-family: 'AZADLIQ', sans-serif;
}


/*----- Generic class Styles ------*/
.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hide-responsive{
    display: block;
}

.hide-responsive-bento{
    display: flex;
}


.section {
    width: 100vw;
    height: 100vh;
}

.show-responsive{
    display: none;
}

.show-responsive-bento{
    display: none;
}

/*----- Hr Styles ------*/
hr.division {
    width: 100vw;
    height: 1px;
    background-color: var(--secondary-dark);
    border: none;
    margin: 1px 0;
}

/*-------- Navbar styles --------*/
.logo {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.navbar {
    position: fixed;
    width: 100vw;
    height: 10vh;
    min-height: 4rem;
    background-color: var(--accent-color);
    -webkit-box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.37);
    box-shadow: 0 1px 6px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    z-index: 1;
}

.navbar a {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 25px;
    color: var(--primary-dark);
}

.navbar a:hover {
    color: var(--primary-text);
    box-shadow: 0 2px 0 0 currentColor;
}

.navbar-links {
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 30vw;
    max-width: 70vw;
}
.navbar-links-lang{
    display: flex;
    justify-content: center;
    width: fit-content;
    padding: 0 18px;
    background: var(--primary-dark);
    border-radius: 50px;
    -webkit-box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0.24), 1px 1px 5px 2px rgba(0,0,0,0);
    box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0.19), 1px 1px 5px 2px rgba(0,0,0,0);
}

.navbar-links-lang:hover{
    background: var(--primary-text);
}

.navbar-links-lang a{
    margin-right: 0;
    color: var(--primary-text);
}

.navbar-links-lang a:hover{
    color: var(--accent-color);
    box-shadow: 0 0 0 0 currentColor;
}

#navbar-logo{
    width: 150px;
    position: absolute;
}

.navbar-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
}

.navbar-x{
    display: none;
}

/*-------- Home page styles --------*/
#home-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

#home-page video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    min-height: 600px;
    max-width: 100vw;
    height: 100vh;
    object-fit: fill;
    z-index: -1;
    opacity: 50%;
    -webkit-box-shadow: inset 0 -8px 8px 2px #000000;
    box-shadow: inset 0 -8px 8px 2px #000000;
}

#home-page-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
}

#home-page h1{
    font-size: 5rem;
}


#home-page h2{
    box-shadow: 0 -2px 0 0 currentColor;
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
    font-family: 'AZADLIQ', sans-serif;
    text-align: center;
}


#home-page-button{
    width: fit-content;
    background: var(--accent-color);
    border-radius: 50px;
    margin-top: 10vh;
    -webkit-box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0.24), 1px 1px 5px 2px rgba(0,0,0,0);
    box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0.19), 1px 1px 5px 2px rgba(0,0,0,0);
}

#home-page-button:hover{
    background: var(--primary-dark);
}

#home-page-button a{
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2px 15px;
}

#home-page-button a:hover{
    color: var(--accent-color);
}


/*-------- Info styles --------*/
/*-------- Info Weather --------*/
#info-weather {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
}

#info-weather-title{
    margin-top: 15vh;
}

#info-weather h1{
    width: fit-content;
    text-align: center;
}

#info-weather-bg{
    position: absolute;
    height: 100vh;
    width: 100vw;
    min-height: 600px;
    object-fit: cover;
    z-index: -1;
}

.info-weather-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 5vh;
    width: 90vw;
}

.info-weather-card{
    min-height: 200px;
    width: 20vw;
    background: var(--secondary-dark);
    border-radius: 10px;
    padding: 0 2px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 20px 20px 60px #252525,
    inset -20px -20px 60px #313131;
}

.info-weather-card h3 {
    text-align: center;
}

.info-weather-card img {
    margin-top: 25px;
    max-width: 7vw;
    height: auto;
}

/*-------- Info protection --------*/
.info-protection {
    margin-top: 15vh;
    margin-bottom: 3vh;
    min-height: fit-content;
}

.info-protection-text {
    margin-top: 50px;
}

/*-------- info section specs styles --------*/
.info-specs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--secondary-darker);
}

.info-specs p{
    font-size: 1.4rem;
    text-align: center;
    max-width: 70vw;
}

.info-specs-bento {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    width: 90vw;
    margin-bottom: 10vh;
    border: var(--primary-text) solid 1px;
    background: var(--primary-dark);
}

.info-specs-bento-border {
    height: fit-content;
    width: fit-content;
    padding: 10px;
    margin-top: 15vh;
    background: linear-gradient(221deg, var(--accent-color) -14.96%, rgba(255, 199, 68, 0.00) 41.53%);
}

.info-specs-bento-vertical {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-specs-bento-vertical p{
    margin-bottom: 90px;
    padding: 0 15px;
}

.info-specs-bento img {
    width: 28vw;
    object-fit: cover;
    padding: 10px;
}

.info-specs-bento-container img {
    width: 28vw;
    height: 35vw;
}

.info-specs-responsive{
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--secondary-darker);
}

/*-------- Info Video--------*/
.info-video{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-video h1{
    margin-top: 15vh;
}

.info-video p{
    font-size: 1.4rem;
    text-align: center;
    width: 70vw;
    margin-top: 10px;
}

.info-video iframe{
    margin: 2vh 0 10vh 0;
    min-width: 65vw;
    height: 40vw;
}


/*-------- info section footer styles --------*/

.footer {
    height: 50vh;
    background: var(--secondary-darker);
    padding-left: 20px;
    min-height: 300px;
}

.footer h1{
    padding-top: 5vh;
    box-shadow: 0 2px 0 0 currentColor;
    width: fit-content;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90vw;
    margin-top: 5vh;
}

.footer-column{
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 40vw;
}

.footer p{
    margin-bottom:10px;
    margin-top: 0;
}

.footer img{
    width: 150px;
    height: 50px;
}


/*-------- Aboout page styles --------*/

.about-title{
    padding-top: 15vh;
    margin-left: 5vw;
    box-shadow: 0 2px 0 0 currentColor;
    width: fit-content;
}

.about-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: var(--secondary-darker);
    border: var(--primary-text) solid 1px;
}

.info-card-border-right.about-border{
    margin: 30px 2.5vw 10vh;
}

.about-container img{
    width: 25vw;
    object-fit: cover;
}

.about-container p{
    margin: 20px;
}


/*-------- Gallery page styles --------*/

.gallery{
    padding-top: 11vh;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery img {
    width: 90vw;
    height: 80vh;
    min-height: 300px;
    object-fit: contain;
    background: var(--secondary-dark);
    border: var(--primary-text) solid 1px;
}

.gallery-img.info-card-border-right{
    margin-top: 12px;
    margin-bottom: 0;
}

.gallery-img.info-card-border-left{
    margin-top: 12px;
    margin-bottom: 0;
}

/*-------- Construction page styles --------*/

.section-construction{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.section-construction h3{
    font-size: 1.5rem;
    font-weight: bold;
    width: 80vw;
    min-width: 300px;
    text-align: center;
    margin-bottom: 0;
}

.section-construction p{
    font-size: 1rem;
    width: 80vw;
    min-width: 300px;
    text-align: center;
}

/*-------- info section general styles --------*/
.info-card-1 {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 89vw;
    height: 25vw;
    border: rgba(255, 255, 255, 0.91) solid 1px;
    padding: 0;
    background: var(--secondary-dark);
    min-height: 300px;
}

.info-card-1 img {
    margin: 0;
    width: 40vw;
    height: 25vw;
    object-fit: cover;
    min-height: 300px;
}

.info-text-card-1-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 20px;
}

.info-text-card-1-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    text-align: end;
    padding-right: 20px;
}

.info-card-1 h2 {
    font-family: 'AZADLIQ', sans-serif;
    font-size: 3rem;
}

.info-card-1 p {
    width: 40vw;
    font-size: 1.3rem;
    text-align: justify;
}

.info-card-2{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    width: fit-content;
    border: rgba(255, 255, 255, 0.91) solid 1px;
    padding: 0;
    background: var(--secondary-dark);
    min-height: fit-content;
    height: auto;
    border-radius: 10px;
}

.info-text-card-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85vw;
}


.info-text-card-2 h2{
    font-family: 'AZADLIQ', sans-serif;
    text-align: center;
    font-size: 3rem;
    max-width: 84vw;
    margin-bottom: 10px;
}

.info-text-card-2 p {
    width: 70vw;
    font-size: 1.2rem;
    text-align: justify;
    margin-bottom: 5vh;
}

.info-card-2-carousel{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 85vw;
    height: 320px;
    overflow-x: scroll;
    background: var(--primary-dark);
    border-radius: 10px;
}

.info-card-2-carousel img {
    margin-left: 10px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.info-card-border-left {
    height: fit-content;
    width: fit-content;
    padding: 10px;
    margin: 5vh 0;
    background: linear-gradient(131deg, var(--accent-color) -14.96%, rgba(255, 199, 68, 0.00) 41.53%);
}

.info-card-border-right {
    height: fit-content;
    width: fit-content;
    padding: 10px;
    margin: 5vh 0;
    background: linear-gradient(221deg, var(--accent-color) -14.96%, rgba(255, 199, 68, 0.00) 41.53%);
}



/*-------- CSS Animations --------*/
.info-weather-card.animation-show {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1.5s, transform 1.5s;
}


.info-weather-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card-1 img.animation-show {
    opacity: 0;
    transition: opacity 1.5s;
}

.info-card-1 img.visible{
    opacity: 1;
}

.info-card-2-carousel img.animation-show {
    opacity: 0;
    transition: opacity 1.5s;
}

.info-card-2-carousel img.visible{
    opacity: 1;
}

.delay0.animation-show {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1.5s, transform 1.5s;
}

.delay1.animation-show {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 1.5s, transform 1.5s;
    transition-delay: 0.2s;
}

.delay2.animation-show {
    opacity: 0;
    transform: translatex(70px);
    transition: opacity 1.5s, transform 1.5s;
    transition-delay: 0.4s;
}

.delay3.animation-show {
    opacity: 0;
    transform: translatex(70px);
    transition: opacity 1.5s, transform 1.5s;
    transition-delay: 0.6s;
}

.info-specs img.visible {
    opacity: 1;
    transform: translateY(0);
}

/*-------- Responsive design - Media Queries --------*/
@media (min-aspect-ratio: 18/9) {
    #home-page video {
        object-fit: cover;
        height: 100vh;
        width: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (min-aspect-ratio: 14/9) and (max-aspect-ratio: 16/9) {
    #home-page video {
        width: 100vw;
        height: 100vh;
        object-fit: fill;
    }
}

@media (max-aspect-ratio: 14/9) and (min-aspect-ratio: 11/16) {
    #home-page video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
}

@media (max-aspect-ratio: 11/16) {
    #home-page video {
        position: absolute;
        top: 15vh;
        width: 100vw;
        height: 85vh;
        object-fit: cover;
    }
}

@media only screen and (max-width: 600px) {
    h1{
        font-size: 1.8rem;
        font-weight: 500;
    }

    h2{
        font-size: 1.5rem;
        font-weight: 400;
    }

    h3{
        font-size: 1rem;
        font-weight: 400;
    }

    body{
        font-size: 0.4rem;
    }

    .navbar {
        height: 15vh;
        min-height: 4rem;
    }

    .navbar-links {
        max-width: 100vw;
        display: none;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-dark);
        position: fixed;
        top:0;
        left: 0;
        justify-content: start;
        z-index: 2;
        overscroll-behavior: none;
    }

    .navbar a {
        margin-top: 15px ;
        font-size: 1.8rem;
        color: var(--primary-text);
        margin-right: 0;
    }

    #navbar-logo{
        height: 7vh;
    }

    .navbar-links-lang{
        margin-top: 15px;
        padding: 0;
        background: rgba(0, 0, 0, 0);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0), 1px 1px 5px 2px rgba(0,0,0,0);
    box-shadow: 0 10px 13px -7px rgba(0, 0, 0, 0), 1px 1px 5px 2px rgba(0,0,0,0);
    }

    .navbar-links-lang:hover {
        background: rgba(0, 0, 0, 0);
    }

    .navbar-toggle {
        display: block;
        margin-right: 0;
        font-size: 2.5rem;
    }

     .navbar-links-lang a{
         text-align: center;
         margin: 0;
     }

    .navbar-links-lang a:hover{
        box-shadow: 0 2px 0 0 currentColor;
        color: var(--primary-text);
    }

    .navbar-x{
        align-items: center;
        margin-top: 4vh;
        padding-right: 45px;
        width: 100vw;
        display:flex;
        flex-direction: row;
        justify-content: end;
        font-size: 1rem;
    }


    #navbar-close:hover{
        box-shadow: 0 0 0 0 currentColor;
        color: var(--accent-color);
    }

    #home-page-title h1{
        font-size: 3.5rem;
        max-width: 90vw;
    }

    #home-page-title h2{
        font-size: 2.5rem;
        max-width: 90vw;
        text-align: center;
    }

    #home-page-button{
        margin-top: 20vh;
    }

    #home-page-button a{
        font-size: 1.2rem;
    }

    #info-weather{
        height: 95vh;
    }

    #info-weather-bg{
        height: 95vh;
        width: 100vw;
    }

    #info-weather-title{
        margin-top: 8vh;
        max-width: 90vw;
    }

    .info-weather-container {
        flex-wrap: wrap;
    }

    .info-weather-card{
        width: 38vw;
        height: 20vh;
        margin: 0 1rem 1rem 0;
    }

    .info-weather-card img {
        margin-top: 5vh;
        max-width: 12vw;
        height: auto;
    }

    .info-weather-card h3 {
        font-size: 1.2rem;
    }

    .info-protection {
        margin-top: 8vh;
    }

    .info-card-1 {
        flex-direction: column;
        align-items: center;
        justify-content: stretch;
        width: fit-content;
        height: auto;
        border-radius: 10px;
    }

    .info-card-1 img {
        margin: 0;
        width: 85vw;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    .info-card-border-left {
        border-radius: 10px;
    }

    .info-card-border-right {
        border-radius: 10px;
    }

    .info-text-card-1-left {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .info-text-card-1-right {
        align-items: center;
        padding-right: 0;
        text-align: center;
    }

    .info-card-1 p {
        width: 70vw;
        font-size: 1.2rem;
        text-align: justify;
        margin-bottom: 5vh;
    }

    .info-card-1 h2 {
        max-width: 84vw;
        font-size: 1.8rem;
        margin: 30px 2px 0;
    }

    .info-video h1{
        margin-top: 8vh;
    }

    .info-video p{
        font-size: 1.2rem;
        width: 90vw;
    }

    .info-video iframe{
        margin: 2vh 0 10vh 0;
        width: 85vw;
        height: 50vw;
    }

    .about-title{
        padding-top: 20vh;
        margin-left: 2.5vw;
        font-size: 2.5rem;
    }

    .about-container{
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 88vw;
    }

    .info-card-border-right.about-border{
        margin: 30px 2.5vw 8vh;
    }

    .about-container img{
        max-height: 75vh;
        width: 88vw;
        border-radius: 10px;
    }

    .about-container p{
        margin: 20px;
        font-size: 1rem;
    }

    .footer {
        height: 35vh;
        background: var(--secondary-darker);
        padding-left: 20px;
        min-height: 300px;
        font-size: 0.75rem;
    }

    .footer-column{
        width: 60vw;
        align-items: end;
    }

    .footer-row{
        justify-content: flex-start;
        align-items: center;
        width: 30vw;
    }

    .footer-row p {
        margin-left: 5px;
        margin-bottom: 0;
    }

    .footer img{
        width: 89px;
        height: 38px;
    }

    .hide-responsive{
        display: none;
    }

    .show-responsive{
        display: block;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 600px) and (max-width: 992px){

    .navbar a {
        font-size: 0.9rem;
        font-weight: 500;
        margin-right: 18px;
    }

    .navbar-links-lang a{
        margin-right: 0;
    }
}

@media (min-width: 600px) and (max-width: 800px) {
    .info-text-card-1-left p, .info-text-card-1-right p {
        font-size: 1.2rem;
        margin: 0;
        padding: 2px;
    }

    .info-text-card-1-left h2, .info-text-card-1-right h2 {
        font-size: 1.9rem;
        padding: 2px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

     .footer-column{
        width: 42vw;
    }

    .footer-row{
        align-items: center;
        width: 48vw;
    }

    .footer-row p, .footer-column p, .footer-column a{
        font-size: 1rem;
    }
}


@media (min-width: 800px) and (max-width: 1250px) {
    .info-text-card-1-left p, .info-text-card-1-right p {
        font-size: 1.2rem;
        padding: 5px;
    }

    .info-text-card-1-left h2, .info-text-card-1-right h2 {
        font-size: 2.5rem;
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 5px;
    }

    .footer-column{
        width: 40vw;
    }

    .footer-row{
        align-items: center;
        width: 50vw;
    }

    .footer-row p, .footer-column p, .footer-column a{
        font-size: 1.2rem;
    }

}

@media (max-width: 1070px) {
    .hide-responsive-bento{
        display: none;
    }

    .show-responsive-bento{
        display: flex;
    }
}
