/*---------------------NOTES
 
COLOR HEX CODES
dark burgundy - #47141D
burgundy - #711927
orange - #F15A29
grey - #EEF8FA

FONTS
Giga Sans

 */

/* Import the Mulish font from a CDN */
@import url('https://fonts.googleapis.com/css2?family=Giga+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Giga Sans', sans-serif;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
}
/* 
.nav1, .nav2, ul, li, .logo, img{
    overflow-x: visible !important;
}
section,
div,
article,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow: hidden !important;
} */
.fa-brands {
    color: #f7ab1c;
    font-size: 36px;
    margin-right: 25px;
}

/*navarea.js*/
/* .nav-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    transition: top .6s;
    overflow: hidden;
    background-color: #711927;
}

.nav-area.animate {
    top: -101px;
    transition: 0.6s ease;
}

.nav-area.sticky {
    top: 0;
    z-index: 99;
    transition: 0.6s ease;
} */

/* 
---------------------------------------------
NAVIGATION
--------------------------------------------- 
*/
.nav1 {
    height: 50px;
    background-color: #47141D;
}

.nav1 ul {
    float: right;
    list-style-type: none;
    margin-top: 10px;
    margin-right: 50px;
}

.nav1 ul li {
    display: inline-block;
}

.nav1 ul li a {
    text-decoration: none;
    transition: 0.4s ease;
    padding: 0 20px;
    color: #EEF8FA;
    cursor: pointer;
}

/* .nav1 ul li img {
    width: 40px;
    height: 40px;
} */
.logo img {
    float: left;
    width: 220px;
    height: 110px;
    margin-top: -20px;
    /* margin-bottom: -20px; */
    margin-left: 30px;
}
.nav2 {
    height: 75px;
    background-color: #711927;
}
.nav2 ul {
    float: right;
    /* left: 0; */
    list-style-type: none;
    margin-top: 20px;
    margin-right: 50px;
    color: #EEF8FA;
}
.nav2 ul li {
    display: inline-block;

}
.nav2 ul li a {
    text-decoration: none;
    padding: 5px 20px;
    transition: 0.4s ease;
    color: #EEF8FA;
    cursor: pointer;
}
.destinations{
    border: 1px #F15A29 solid;
    padding: 5px 15px;
    border-radius: 35px;
}

/*navigation aid MEDIA QUERY*/
@media screen and (max-width: 930px) {
    .nav2 ul{
        display: none;
    }
    /* .nav2 ul li .destinations{
        display: inline-block;
    } */
}
@media screen and (max-width: 580px) {
   .nav1{
        display: none;
    }
}

/*-------------landing page---------------------*/

section.landing-page {
    background-image: url('images/moran-long.png');
    background-size: cover;
    background-position: bottom;
    height: 101vh;
}

/*landing page MEDIA QUERY*/
@media screen and (max-width: 500px) {
    section.landing-page {
        background-image: url('images/mobile-sunsetclean.PNG');
        background-size: cover;
        background-position: bottom;
        height: 111vh;
    }
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 300;
    color: #fff;

}
section.coming-soon-area{
    top: 60%;
}
.timer-item h3 {
    font-size: 60px;
    font-weight: 600;
}

.title2 {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: gotham;
    font-size: 18px;
    color: #fff;
}

.textfield {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 35px;
    padding: 5px;
}

.textfield input {
    width: 500px;
    border: none;
    /* background-color: #eee; */
    background-color: rgba(255, 255, 255, 0.2);
    height: 45px;
    color: #fff;
    font-size: 16px;
    border-radius: 35px;
    padding: 10px;
}
.textfield input:focus {
    border: 1px solid #fff;
    /* Add the line below to remove the default black outline */
    outline: none;
}
.email-text::placeholder {
    color: #fff;
    text-align: center;
}
.email-text:focus {
    border: 2px solid #fff;
}
.button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.button input {
    padding: 10px 30px;
    color: #fff;
    background-color: #F15A29;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: none;
    border-radius: 35px;
    font-weight: 700;
}

.button input:hover {
    background-color: #fff;
    color: #F15A29;
}


/* COUNTDOWN! */

.coming-soon-area {
    position: absolute;
    top: 55%;
    left: 50%;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
}
.countdown-timer {
    margin: 35px 0px;

}
.timer-item {
    display: inline-block;
    background: transparent;
    margin: 5px 3px;
    padding: 2px;
    min-width: 110px;
    font-size: 50px;
    font-weight: 700;
    border-radius: 5px;
    /* font-family: 'Bahnschrift', Regular; */
}
.timer-item span {
    display: block;
    font-size: 18px;
    font-weight: 250;
}
.seconds h3 {
    color: #F15A29;
}

/*COMING SOON MEDIA QUERY*/
@media screen and (max-width: 970px) {
    section.landing-page {
    height: 111vh;
}
    /* section.coming-soon-area {
            top: 60%;
        } */
    .timer-item h3 {
        font-size: 50px;
        font-weight: 600;
    }
    .timer-item span{
        font-weight: 400;
    }
    .title {
        width: 100%;
        font-size: 40px;
        font-weight: 400;
        padding-bottom: 30px;
        top: 45%;
    }

    .title p {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
    }
    .title2{
        top: 80%;
    }
    .textfield{
        top: 85%;
    }
    .button{
        top: 95%;
    }
    .button {
        top: 90%;
    }
}
@media screen and (max-width: 570px) {
.title2 {
    width: 100%;
    }

.title2 p {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
}
}

@media screen and (max-width: 500px) {
    .textfield input {
        width: auto;
        height: 45px;
    }
     
    

}

@media screen and (max-width: 490px) {
    section.coming-soon-area{
        display: none;
        
    }
    .title {
        width: 100%;
        font-size: 40px;
        font-weight: 400;
        padding-bottom: 30px;
        top: 65%;
    }
    .title2{
        top: 75%;
    }
    .textfield{
        top: 80%;
    }
    .button{
        top: 90%;
    }
    /* .button {
        top: 90%;
    } */

    /* .title2 {
        top: 75%;
    }
    .textfield {
        top: 80%;
    } */
    .countdown-timer {
        margin: 10px 0px;

    }
    .timer-item {
        display: inline-block;
        background: transparent;
        margin: 2px 1px;
        padding: 1px;
        min-width: 30px;
        font-size: 20px;
        font-weight: 400;
        border-radius: 5px;
    }
}
@media screen and (max-width: 425px) {

    .title {
        /* color: #F15A29; */
        width: 100%;
        font-size: 40px;
        /* top: 35%; */
        }

    /* section.coming-soon-area{
            top:55%;
      } */
}


/* SIDEBAR POPUP*/

.popup-container {
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    right: 0;
    transition: transform 0.3s ease-in-out;
    /* Add transition for smooth movement */
}

.popup-button {
    background-color: #F15A29;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    transform: rotate(-90deg);
    /* Rotate the button -90 degrees */
    transition: transform 0.3s ease-in-out;
    /* Add transition for smooth movement */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-right: -40px;
}

.popup-content {
    display: none;
    position: absolute;
    min-width: 500px;
    min-height: 200px;
    background-color: #E3DEE1;
    color: #F15A29;
    padding: 30px;
    padding-left: 35px;
    font-size: 14px;
    border-bottom-left-radius: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    left: 100%;
    /* Position to the right of the button */
    top: 0;
    margin-left: -480px;
    margin-top: -45px;
    /* Add a negative margin to remove space between button and content */
}

.popup-container:hover .popup-button {
    transform: translateX(-380%) rotate(-90deg);
    /* Move the button further to the left on hover */
}

.popup-button:hover+.popup-content,
.popup-content:hover {
    display: block;
}

/*sidebar popup MEDIA QUERY*/
@media screen and (max-width: 500px) {
    .popup-container {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            transition: transform 0.3s ease-in-out;
            /* Add transition for smooth movement */
        }
    .popup-content {
        display: none;
        position: absolute;
        min-width: 300px;
        min-height: 200px;
        background-color: #fff;
        color: #F15A29;
        padding: 30px;
        padding-left: 35px;
        font-size: 14px;
        border-bottom-left-radius: 20px;
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
        left: 100%;
        top: 0;
        margin-left: -280px;
        margin-top: -45px;
    }

    .popup-container:hover .popup-button {
        transform: translateX(-225%) rotate(-90deg);
        /* Move the button further to the left on hover */
    }
}

/*--------------FOOTER SECTION-----------------*/

.footer {
    /* width: 100%; */
    top: 98%;
    text-align: center;
    position: absolute;
    background-color: transparent;
    color: #fff;
    /* font-family: 'Aller Light', Regular; */
}

.footer-list {
    float: left;
    margin-left: 50px;
}

.footer ul {
    /* float: right; */
    list-style-type: none;
}

.footer ul li {
    display: inline-block;
}

.footer ul li a {
    text-decoration: none;
    color: #fff;
}

.word1 {
    color: #F15A29;
    margin-left: -30px;
}

.word2 {
    margin-left: 60px;
}

/* .word3{
    float: right!important;
} */

/*Footer MEDIA QUERY*/
@media screen and (max-width: 970px) {
    .footer{
        top: 103%;
    }
}
@media screen and (max-width: 500px) {
    .footer {
        top: 108%;
    }
}