@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}
html{
    font-size: 62.5%;
}
:root{
    --text-color: #fff;
    --bg-color: #000;
    --main-color: #ffa343;

    --h1-font: 9rem;
    --h2-font: 5rem;
    --p-font: 1.6rem;
}
body{
    background-color: var(--bg-color);
}
.container{
    max-width: 120rem;
    width: 100%;
    position: relative;
    margin: auto;
}

/* header */
header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: transparent;
    transition: box-shadow .4s, background-color .4s;
}
.logo{
    font-size: 3.3rem;
    color: var(--text-color);
    font-weight: 700;
}
.logo span{
    color: var(--main-color);
    font-weight: 700;
}
.header-container{
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s ease;
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 1.5rem 2.2rem;
    transition: all .5s ease;
}
.navbar a:hover{
    color: var(--main-color);
}
.header-right{
    display: flex;
    align-items: center;
}
.header-right a:first-child{
    color: var(--text-color);
    font-size: var(--p-font);
    margin-right: 2rem;
}
.header-right a{
    vertical-align: middle;
    font-size: 2rem;
    color: var(--text-color);
    margin-right: 1.8rem;
    margin-left: .5rem;
    transition: all .5s ease;
}
.header-right a:hover{
    color: var(--main-color);
    transform: translateY(-3px);
}
#menu-icon{
    color: var(--text-color);
    font-size: 3rem;
    cursor: pointer;
    z-index: 101;
    display: none;
}

/* home section */
section{
    padding: 7rem 0;
}
.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0,0,0,0.3)), url(../img/Background.png);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home-text h5{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .6rem;
    color: var(--main-color);
}
.home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 2rem;
}
.home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 3rem;
    color: #ffffffab;
    margin-bottom: 3.5rem;
}
.btn{
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1.5rem;
    font-weight: 600;
    border: .2rem solid transparent;
    border-radius: .5rem;
    transition: all .5s ease;
    cursor: pointer;
}
.btn:hover{
    transform: translateX(1rem);
    border: .2rem solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}
.shadow-header{
    box-shadow: 0 4px 15px rgba(41, 0, 5, 0.1);
    background: transparent;
    backdrop-filter: blur(35px);
}



/* features section */
.feature-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center;
    gap: 5rem;
}
.row-img{
    overflow: hidden;
    width: 10rem;
    height: 10rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    border-radius: 50%;
    cursor: pointer;
}
.row-img img{
    width: 100%;
    display: block;
    transition: transform .7s;
}
.row-img:hover img{
    transform: scale(1.2);
}
.row h4{
    color: var(--text-color);
    font-size: 1.7rem;
    cursor: pointer;
    transition: all .5s ease;
}
.row h4:hover{
    color: var(--main-color);
}

/* holiday */
.holiday-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 12rem;
}
.holiday-img img{
    width: 100%;
    height: auto;
    border-radius: 1rem;
}
.holiday-text{
    color: var(--text-color);
}
.holiday-text h5{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: .6rem;
    margin-bottom: 2rem;
}
.holiday-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}
.holiday-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 3rem;
    color: #ffffffab;
    margin-bottom: 3.5rem;
}

/* tours */
.center-text{
    text-align: center;
}
.center-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
}
.tour{
    color: var(--text-color);
}
.tour-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 5rem;
    margin-top: 5rem;
}
.box{
    position: relative;
}
.box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    filter: brightness(70%);
    transition: all .4s cubic-bezier(.499, .05, .55, .95);
    will-change: filter;
    display: block;
}
.box h6{
    position: absolute;
    left: 2.5rem;
    bottom: 9.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}
.box h4{
    position: absolute;
    left: 2.5rem;
    bottom: 6.5rem;
    font-size: 2rem;
    font-weight: 700;
}
.box img:hover{
    filter: brightness(90%) hue-rotate(50deg);
    transform: scale(1.04);
    cursor: pointer;
}
.center-btn{
    text-align: center;
    margin-top: 6rem;
}

/* newsletter */
.newsletter-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
}
.newsletter-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}
.newsletter-text p{
    font-size: var(--p-font);
    font-weight: 500;
    color: #ffffffab;
}
.newsletter-content form{
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 2rem;
}
.newsletter-content form input:first-child{
    padding: 1.5rem;
    background: #202020;
    font-size: var(--p-font);
    color: var(--text-color);
    border-radius: 5px;
}

/* footer */
.footer{
    color: #fff;
}
.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 3rem;
}
.footer-box{
    display: flex;
    flex-direction: column;
}
.footer-box h3{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-box a{
    color: #979797;
    margin-bottom: 1.4rem;
    transition: all .5s ease;
    font-size: var(--p-font);
}
.footer-box a:hover{
    transform: translateX(-5px);
    color: var(--text-color);
}
.footer-box .social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4.5rem;
    width: 4.5rem;
    background: #202020;
    color: var(--text-color);
    font-size: 2rem;
    border-radius: 50%;
    margin-right: .8rem;
    transition: transform .6s;
}
.footer-box .social a:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transform: translateX(-4px);
}

/* responsive */
@media (max-width: 1700px){
    section{
        padding: 5rem 0;
    }
}

@media (max-width: 1300px){
    .container{
        width: 95%;
        position: relative;
        margin: auto;
    }
    :root{
        --h1-font: 7rem;
        --h2-font: 4rem;
        --p-font: 1.4rem;
    }
    .home{
        height: 90vh;
    }
}

@media (max-width: 1080px){
    .feature-content{
        gap: 2rem;
    }
    .holiday-container{
        gap: 4rem;
    }
    #menu-icon{
        display: block;
    }
    .navbar{
        position: fixed;
        width: 100%;
        height: 100vh;
        padding: 4rem 6rem;
        top: 0;
        bottom: 0;
        left: 100%;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--bg-color);
        transition: all .5s ease;
    }
    .navbar a{
        display: block;
        color: #979797;
        padding: 0;
        margin: 0 0 4rem 0;
        font-size: 3.2rem;
        font-weight: 400;
    }
    .navbar.open{
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 800px){
    .holiday-container{
        grid-template-columns: 1fr;
    }
    .newsletter-content{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px){
    .container{
        width: 92%;
    }
    :root{
        --h1-font: 5.4rem;
        --h2-font: 3.2rem;
    }
    .home{
        height: 85vh;
    }
}

@media (max-width: 450px){
    section{
        padding: 4rem 0;
    }  
}