/*==================================================
            REAL HIMALAYA WEBSITE
==================================================*/

/* ===========================
        GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
        ROOT VARIABLES
=========================== */

:root{

    --primary:#0A4D68;
    --secondary:#088395;
    --accent:#FFD166;
    --white:#ffffff;
    --black:#222222;
    --gray:#777777;
    --light:#f5f8fb;

    --radius:12px;

    --transition:.4s ease;

}

/* ===========================
        RESET CSS
=========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--black);

    line-height:1.7;

}

/* ===========================
        CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

/* ===========================
        LINKS
=========================== */

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

img{

    width:100%;

    display:block;

}

/* ===========================
        HEADER
=========================== */

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;
    background: rgb(0, 0, 0);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

}

.logo img{

    width: 90px;
    height: auto;
    display: block;
    
}

.navbar ul{

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.navbar a{

    color:var(--white);

    font-size:16px;

    font-weight:500;

}

.navbar a:hover{

    color:var(--accent);

}

.header-btn a{

    background:var(--accent);

    color:var(--black);

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

}

.header-btn a:hover{

    background:var(--white);

}

/* ===========================
        HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero video{

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index: 1;

}

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    z-index: 2;

    text-align:center;

    color:white;

    width:90%;

}

.hero-content span{

    color:var(--accent);

    letter-spacing:3px;

    font-size:15px;

}

.hero-content h1{

    font-size:65px;

    margin:25px 0;

    font-weight:700;

}

.hero-content p{

    max-width:750px;

    margin:auto;

    font-size:18px;

}

.hero-buttons{

    margin-top:40px;

}

.hero-buttons a{

    display:inline-block;

    margin:10px;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

}

.hero-buttons a:first-child{

    background:var(--accent);

    color:black;

}

.hero-buttons a:last-child{

    border:2px solid white;

    color:white;

}

.hero-buttons a:hover{

    transform:translateY(-5px);

}

/* ===========================
      SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;

    margin:15px 0;

}

.section-title p{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}
/*==================================================
        BOOKING SECTION
==================================================*/

.booking{

    padding:100px 0;

    background:#f8fbff;

}

.booking-form{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;

}

.input-box{

    display:flex;

    flex-direction:column;

}

.input-box label{

    margin-bottom:10px;

    font-weight:600;

    color:var(--black);

}

.input-box input,
.input-box select,
.input-box textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #d9e3ec;

    border-radius:var(--radius);

    font-size:16px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:var(--transition);

    background:#fff;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

    border-color:var(--secondary);

    box-shadow:0 0 12px rgba(8,131,149,.15);

}

.full-width{

    grid-column:1/3;

}

.booking-form button{

    grid-column:1/3;

    padding:18px;

    background:var(--primary);

    color:#fff;

    border:none;

    border-radius:40px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.booking-form button:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

/*==================================================
        DESTINATIONS
==================================================*/

.destinations{

    padding:100px 0;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.destination-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:var(--transition);

}

.destination-card:hover{

    transform:translateY(-10px);

}

.destination-card img{

    height:260px;

    object-fit:cover;

}

.destination-content{

    padding:25px;

}

.destination-content h3{

    margin-bottom:12px;

    font-size:24px;

}

.destination-content p{

    color:var(--gray);

    margin-bottom:18px;

}

.destination-content a{

    color:var(--secondary);

    font-weight:600;

}

/*==================================================
        WHY CHOOSE US
==================================================*/

.why-us{

    padding:100px 0;

    background:var(--light);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card img{

    width:70px;

    margin:0 auto 20px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

}

/*==================================================
        FEATURED PACKAGES
==================================================*/

.featured-packages{

    padding:100px 0;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.package-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:var(--transition);

}

.package-card:hover{

    transform:translateY(-10px);

}

.package-card img{

    height:260px;

    object-fit:cover;

}

.package-content{

    padding:25px;

}

.package-content h3{

    margin-bottom:12px;

}

.package-content p{

    color:var(--gray);

    margin-bottom:12px;

}

.package-content h4{

    color:var(--primary);

    margin-bottom:20px;

}

.package-content a{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:12px 24px;

    border-radius:30px;

    transition:var(--transition);

}

.package-content a:hover{

    background:var(--secondary);

}

/*==================================================
        STATISTICS
==================================================*/

.statistics{

    padding:90px 0;

    background:linear-gradient(rgba(10,77,104,.9),rgba(10,77,104,.9)),
    url("../images/bg-counter.jpg") center/cover;

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.stat-box h2{

    font-size:50px;

    color:var(--accent);

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

}
/*==================================================
                GALLERY SECTION
==================================================*/

.gallery{

    padding:100px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:0.4s;

    cursor:pointer;

    box-shadow:0 15px 30px rgba(0,0,0,.10);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*==================================================
            TESTIMONIAL SECTION
==================================================*/

.testimonials{

    padding:100px 0;

    background:#f8fbff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card h3{

    color:#FFD700;

    margin-bottom:15px;

}

.testimonial-card p{

    color:#666;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:var(--primary);

}

/*==================================================
                    FAQ
==================================================*/

.faq{

    padding:100px 0;

}

.faq-box{

    max-width:900px;

    margin:auto;

}

.faq details{

    margin-bottom:18px;

    background:#ffffff;

    border-radius:12px;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.faq summary{

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq p{

    margin-top:15px;

    color:#666;

}

/*==================================================
                VIDEO SECTION
==================================================*/

.promo-video{

    padding:100px 0;

    background:#f5f8fb;

    text-align:center;

}

.promo-video video{

    width:100%;

    max-width:1000px;

    border-radius:20px;

}

/*==================================================
            NEWSLETTER
==================================================*/

.newsletter{

    padding:80px 0;

    background:var(--primary);

    color:#fff;

    text-align:center;

}

.newsletter form{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

    flex-wrap:wrap;

}

.newsletter input{

    width:400px;

    padding:16px;

    border:none;

    border-radius:50px;

}

.newsletter button{

    padding:16px 35px;

    border:none;

    border-radius:50px;

    background:var(--accent);

    cursor:pointer;

    font-weight:600;

}

/*==================================================
                CONTACT
==================================================*/

.contact{

    padding:100px 0;

}

.contact-info{

    text-align:center;

}

.contact-info p{

    font-size:18px;

    margin:15px 0;

}

/*==================================================
                MAP
==================================================*/

.map iframe{

    width:100%;

    display:block;

}

/*==================================================
                FOOTER
==================================================*/

.footer{

    background:#0a2338;

    color:#fff;

    padding:70px 0 20px;

}

.footer .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer h2,
.footer h3{

    margin-bottom:20px;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:var(--accent);

}

.footer-social p{

    line-height:2;

}

.copyright{

    margin-top:50px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    font-size:15px;

}

/*==================================================
            RESPONSIVE DESIGN
==================================================*/

@media(max-width:992px){

.hero-content h1{

font-size:48px;

}

.booking-form{

grid-template-columns:1fr;

}

.full-width{

grid-column:auto;

}

.booking-form button{

grid-column:auto;

}

}

@media(max-width:768px){

.header .container{

flex-direction:column;

}

.navbar ul{

flex-direction:column;

gap:15px;

text-align:center;

}

.hero-content h1{

font-size:36px;

}

.hero-buttons a{

display:block;

margin:15px auto;

}

.newsletter input{

width:100%;

}

}

/* Sticky Header */

header.sticky{

    background:#0a2342;

    box-shadow:0 5px 20px rgba(0,0,0,.2);

    padding:12px 0;

    transition:.4s;

}

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}