/* -------------------- RESET -------------------- */
*{
    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;
}

:root{
    --text-color: #fff;
    --bg-color: #000;
    --main-color: #ffa343;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

body{
    color: var(--text-color);
    background: var(--bg-color);
}

/* -------------------- HEADER -------------------- */
header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    padding: 27px 12%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    backdrop-filter: blur(4px);
}

header.scroll{
    padding: 10px 12%;
    backdrop-filter: blur(20px);
}

.logo{
    font-size: 30px;
    color: var(--text-color);
    font-weight: 700;
}

span{
    color: var(--main-color);
}

.navbar{
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
}

.navbar a{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 400;
    transition: all .50s ease;
}

.navbar a:hover{
    color: var(--main-color);
}

/* Mobile Menu Styling */
#menu-icon{
    color: var(--text-color);
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}

/* Slide-down menu */
.navbar.active{
    top: 100%;
    opacity: 1;
    pointer-events: auto;
}

/* -------------------- HEADER RIGHT -------------------- */
.h-right{
    display: flex;
    align-items: center;
}

.h-right a{
    font-size: 15px;
    color: var(--text-color);
    margin: 0 10px;
    transition: all .50s ease;
}

.h-right a:hover{
    color: var(--main-color);
    transform: translateY(-3px);
}

/* -------------------- SECTIONS -------------------- */
section{
    padding: 90px 12% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('Background.png') no-repeat;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    
}

.home-text h5{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}

.home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
}

.home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
}

.btn{
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all .50s ease;
}

.btn:hover{
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

/* -------------------- FEATURE -------------------- */
.feature-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px, auto));
    text-align: center;
    gap: 1rem;
}

.row-img{
    overflow: hidden;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    cursor: pointer;
}

.row-img img{
    width: 100%;
    transition: 0.7s;
}

.row-img img:hover{
    transform: scale(1.2);
}

.feature-content h4{
    transition: 0.3s;
    cursor: pointer;
}

.feature-content h4:hover{
    color: var(--main-color);
}

/* -------------------- HOLIDAY -------------------- */
.holiday{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.holiday-img img{
    width: 100%;
    border-radius: 10px;
}

.holiday-text h5{
    font-size: 22px;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
}

.holiday-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
}

/* -------------------- TOUR -------------------- */
.tour-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, auto));
    gap: 1.5rem;
    margin-top: 5rem;
}

.box{
    position: relative;
}

.box img{
    width: 100%;
    border-radius: 10px;
    filter: brightness(70%);
    transition: 0.3s;
}

.box img:hover{
    filter: brightness(90%) hue-rotate(50deg);
    transform: scale(1.04);
}

/* -------------------- CULTURE -------------------- */
.Culture{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.Culture-img img{
    width: 100%;
    border-radius: 10px;
}

/* -------------------- NEWSLETTER -------------------- */
.newsletter-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.newsletter-content form{
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 0.5rem;
}

.newsletter-content form input:first-child{
    padding: 15px;
    background: #202020;
    color: var(--text-color);
    border-radius: 5px;
}

/* -------------------- FOOTER -------------------- */
.footer{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, auto));
    gap: 2rem;
}

.footer-box a{
    color: #979797;
    margin-bottom: 0.8rem;
    transition: 0.5s;
}

.footer-box a:hover{
    color: var(--text-color);
    transform: translateX(-5px);
}

.social a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    background: #202020;
    color: var(--text-color);
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.6s;
}

.social a:hover{
    background: var(--main-color);
    color: var(--bg-color);
}

/* -------------------- RESPONSIVE -------------------- */

/* ---------- Tablets ---------- */
@media (max-width: 991px){
    header{
        padding: 20px 5%;
    }

    section{
        padding: 80px 5%;
    }

    :root{
        --h1-font: 4rem;
        --h2-font: 2.3rem;
        --p-font: 0.9rem;
    }

    .home{
        height: 85vh;
    }
}

/* ---------- Mobile: Menu ---------- */
@media (max-width: 768px){

    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        background: rgba(20,20,20,0.96);
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
        gap: 20px;
        opacity: 0;
        pointer-events: none;
    }

    .navbar.active{
        top: 100%;
        opacity: 1;
        pointer-events: auto;
    }

    .h-right a:first-child{
        display: none;
    }

    .holiday,
    .Culture,
    .newsletter-content{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .holiday-img,
    .Culture-img{
        order: -1;
    }
}

/* ---------- Mobile Small ---------- */
@media (max-width: 480px){

    :root{
        --h1-font: 3rem;
        --h2-font: 1.8rem;
        --p-font: 0.85rem;
    }

    .btn{
        padding: 10px 25px;
    }

    .row-img{
        width: 90px;
        height: 90px;
    }
}
