*{
    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: #000;
    --bg-color: #fff;
    --main-color: #0d89f7;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;

}

body{
    color: var(--text-color);
    background: var(--bg-color);

}
header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    padding: 27px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;

}

.logo{
    font-size: 33px;
    color: #FFf;
    font-weight: 700;
    transition: font-size 0.3s ease;
    text-shadow: 
    -1px -1px 0 rgba(0,0,0,0.5),
     1px -1px 0 rgba(0,0,0,0.5),
    -1px  1px 0 rgba(0,0,0,0.5),
     1px  1px 0 rgba(0,0,0,0.5),
     2px 2px 4px rgba(0,0,0,0.5);
}

span{
    color: var(--main-color);
    text-shadow: 
    -1px -1px 0 rgb(255, 255, 255),
     1px -1px 0 rgb(255, 255, 255),
    -1px  1px 0 rgb(255, 255, 255),
     1px  1px 0 rgb(255, 255, 255),
     2px 2px 4px #ffffff;
}

.navbar{
    display: flex;
}

.navbar a{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 15px 22px;
    transition: all .50s ease; 
    text-shadow: 
    -1px -1px 0 rgb(255, 255, 255),
     1px -1px 0 rgb(255, 255, 255),
    -1px  1px 0 rgb(255, 255, 255),
     1px  1px 0 rgb(255, 255, 255),
     2px 2px 4px #ffffff;
}
.navbar a:hover{
    color: #fff;

}
.h-right{
    display: flex;
    align-items: center;

}
.h-right a:first-child{
    color: #000;
    font-size: 18px;
    margin-right: 20px;
    text-shadow: 
    -1px -1px 0 rgb(255, 255, 255),
     1px -1px 0 rgb(255, 255, 255),
    -1px  1px 0 rgb(255, 255, 255),
     1px  1px 0 rgb(255, 255, 255),
     2px 2px 4px #ffffff;

}
.h-right a{
    vertical-align: middle;
    font-size: px;
    color: #000;
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;
    text-shadow: 
    -1px -1px 0 rgb(255, 255, 255),
     1px -1px 0 rgb(255, 255, 255),
    -1px  1px 0 rgb(255, 255, 255),
     1px  1px 0 rgb(255, 255, 255),
     2px 2px 4px #ffffff;

}

.h-right a:hover{
    color: #fff;
    transform: translateY(-3px);

}
#menu-ico{
    color: var(--text-color);
    font-size: 35px;
    cursor: pointer;
    z-index: 10001;
    display: none;

}

section{
    padding: 70px 17% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    
    background-image: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.5) , transparent 100%), url(/images/fourthex.jpeg);
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.home-text h5{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    
    letter-spacing: 6px;
    color: #fff;
    padding-left: 10px;
    text-shadow: 
    -2px -2px 0 rgba(0,0,0,0.5),
     2px -2px 0 rgba(0,0,0,0.5),
    -2px  2px 0 rgba(0,0,0,0.5),
     2px  2px 0 rgba(0,0,0,0.5),
     3px 3px 5px rgba(0,0,0,0.5);
}

.home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 
    -2px -2px 0 rgba(0,0,0,0.5),
     2px -2px 0 rgba(0,0,0,0.5),
    -2px  2px 0 rgba(0,0,0,0.5),
     2px  2px 0 rgba(0,0,0,0.5),
     3px 3px 5px rgba(0,0,0,0.5);
}
.home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
    font-style: italic;
    
}
.btn{
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all .50s ease;
    cursor: pointer;

}

.btn:hover{
    transform: translateX(10px);
    border: 2px solid var (--text-color);
    background: transparent;
    color: var(--text-color);
}

header.sticky{
    padding: 8px 17%;
    background: transparent;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.feature-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center; 
    gap: 3rem;
}



.feature-content h4{
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all .50s ease;
    
}

.feature-content h4:hover{
    color: var(--main-color);
}

.holiday{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;

}

.holiday-img img{
    width: 100%;
    height: 650px;
    border-radius: 10px;
}

.holiday-text h5{
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-shadow: 
    -1px -1px 0 rgba(0,0,0,0.5),
     1px -1px 0 rgba(0,0,0,0.5),
    -1px  1px 0 rgba(0,0,0,0.5),
     1px  1px 0 rgba(0,0,0,0.5),
     ;
     text-align: center;
}

.holiday-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: center;

}

.holiday-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 35px;
    text-align: center;

}

.holiday-text .btn{
    width: fit-content;
    margin: 0 auto;
    display: block;
}

.center-text{
    text-align: center;
}

.center-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
}

.tour-content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items:center;
    gap: 3rem;
    margin-top: 5rem;
}

.tour-text {
    text-align: center;
    padding-top: 20px;
}

.tour-content h3{
    font-size: var(--h2-font);
}

span1 {
    color: var(--main-color);
    font-size: var(--h2-font);
}

.box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    filter: brightness(70%);
    transition: all .3s cubic-bezier(.499,.05,.55,.95);
    will-change: filter;
    display: block;
    aspect-ratio: 0.5/0.5;
}

.box h6{
    position: absolute;
    left: 25px;
    bottom: 95px;
    font-size: 18px;
    font-weight: 500;
}

.box h4{
    position: absolute;
    left: 25px;
    bottom: 65px;
    font-size: 20px;
    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: 4rem;
}

.Culture{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.Culture-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}
.Culture-img img{
    width: 100%;
    height: 400px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
    
    
}

.Culture-text h5{
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.Culture-text h2{
    font-size: var(--h2-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: center;

}

.Culture-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #000;
    margin-bottom: 35px;
    text-align: center;

}

.Culture-text .btn{
    width: fit-content;
    display: block;
    margin: 0 auto;
}

.newsletter-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;

}

.newsletter-text h2{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
    
}

.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: 1rem;

}

.newsletter-content form input:first-child{
    padding: 15px;
    background: #202020;
    font-size: var(--p-font);
    color: var(--text-color);
    border-radius: 5px;
}


.calendly{
    padding: 80px 10% 70px;
    background-color: var(--bg-color)
}
.calendly-header{
    text-align: center;
    margin-bottom: 40px;
}
.calendly-header h2{
    font-size: var(--h2-font);
    color: var(--text-color);
    margin-bottom: 40px;
}

.calendly-header p {
    color:  var(--text-color);
    font-size: 1.1rem;
}
.calendly-inline-widget{
    min-width: 320px;
    height: 700px;
    margin: 0 auto;
}

.schedule-btn{
    
    color: var(--bg-color);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.schedule-btn:hover{
    background-color: var(--text-color);
    transform: translateY(-2px);
}





.footer{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(200px, auto));
    gap: 2rem;
}

.footer-box{
    display:flex;
    flex-direction: column;

}

.footer-box h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-box a{
    color: #979797;
    margin-bottom: 0.8rem;
    transition: all .50s ease;
    
}

.footer-box a:hover{
    transform: translateX(-5px);
    color: var(--text-color);
}

.social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background: #fff;
    color: var(--text-color);
    font-size: 20px;
    border-radius: 50%;
    margin-right: 8px;
    transition: transform 0.6s;

}

.social a:hover{
    background: #ffffff;
    color: #000;
    transform: translateX(-4px);

}

.copyright p{
    text-align: center;
    padding: 20px;
    color: #979797;
    font-size: 15px;

}

@media (max-width:1700px ){
    header{
        padding: 18px 8%;
    }
    header.sticky{
        padding: 7px 8%;
    }
    section{
        padding: 50px 8% 40px;
    }
}

@media (max-width:1366px){
    header{
        padding: 14px 5%;
    }
    header.sticky{
        padding: 7px 5%;
    }
    section{
        padding:45px 5% 35px;
    }
    :root{
        --h1-font: 4.6rem;
        --h2-font: 2.8rem;
        --p-font: 15px;
    }
    .home{
        height:90vh;  
    }
    
   
}

@media (max-width: 1103px){
    .feature-content{
        gap: 1.5rem;
    }
    .holiday{
        gap: 3rem;
    }
    .Culture{
        gap: 3rem;
    }
    #menu-ico{
        display: block;
        z-index: 1001;
    }
    .navbar{
        position: fixed;
        width: 100%;
        height: 100vh;
        padding: 40px 60px;
        top: 0;
        bottom: 0;
        left: auto;
        right: -100%;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);

        transition: all .50s ease;
        z-index: 1000;

    }

    .navbar a{
        display: block;
        color: #979797;
        padding: 0;
        margin: 0px 0px 40px 0px;
        font-size: 2.2rem;
        font-weight: 400;
    }
    .navbar.open{
        right: 0;
    }

    .logo {
        font-size: 28px;
    }

    .holiday {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 6rem
    }

    .holiday-img {
        max-height: 500px;
        overflow: hidden;
    }

    .holiday-img img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
    }
    .testimonials-container{
        grid-template-columns: 1fr;
    }
   

}
   

@media (max-width: 800px){
    .holiday{
        grid-template-columns: 1fr;
    }
    .Culture{
        grid-template-columns: 1fr;
    }
    .newsletter-content{
        grid-template-columns: 1fr;
    }
    .h-right a:first-child{
        display: none;
    }
    .h-right {
        margin-right: 50px;
    }
    header {
        padding: 14px 5%;
    }
    .logo {
        font-size: 24px;
    }
    .Culture-img{
        grid-template-columns: 1fr;
    }
    .Culture-img img{
        max-height: 400px;
    }
    
    
    
    
}

@media (max-width: 600px){
    :root{
        --h1-font: 3.5rem;
        --h2-font: 2.1rem;
    }
    .home{
        height: 85vh;
    }

    .newsletter {
        padding: 30px 5% 20px;
    }
    .newsletter-text h2{
        font-size: 1.5rem;
    }
    .newsletter-text p {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 20px;
    }
    
}

@media (max-width: 450px){
    header{
        padding: 12px 3%;
    }
    header.sticky{
        padding: 7px 3%;
    }
    section{
        padding: 60px 3% 50px;
    }
    .logo {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    
    .home-text h5{
        font-size: 16px;
        letter-spacing: 4px;
    }
    .home-text p{
        font-size: 0.9rem;
    }
    .btn {
        padding: 8px 25px;
        font-size: 13px;
    }
    .navbar {
        padding: 20px 30px;
    }
    .navbar a{
        font-size: 1.5rem;
        margin: 0 0 25px 0;
    }
    .holiday, .Culture {
        gap: 2rem;
    }
    .footer {
        gap: 1.5rem;
    }

}




