﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    color: #333;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/*Header*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: .4s;
}

    .header.scrolled {
        background: #13261b;
        box-shadow: 0 2px 10px rgba(0,0,0,.2);
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: #fff;
    font-weight: 500;
}

.btn-book {
    background: #d6a84f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
}
/*Hero Section*/
.hero {
    height: 100vh;
    background: url('../images/hero.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.sub-title {
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display',serif;
    font-size: 70px;
    margin: 20px 0;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d6a84f;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
}
/*Hero Section*/




.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: #d6a84f;
        font-weight: 600;
    }

    .section-title h2 {
        font-size: 42px;
        margin-top: 10px;
        font-family: 'Playfair Display',serif;
    }



.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.why-grid
 {
    display: grid;
    grid-template-columns: repeat(4,minmax(280px,1fr));
    gap: 30px;
}



.room-grid,
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.testimonial-card {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}


/*Gallery*/
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
    }

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}



.why-card,
.activity-card,
.attraction-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .4s;
}

    .why-card:hover,
    .activity-card:hover,
    .attraction-card:hover {
        transform: translateY(-8px);
    }

    .why-card i,
    .activity-card i {
        font-size: 40px;
        color: #d6a84f;
        margin-bottom: 20px;
    }


.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

    .gallery-grid img:hover {
        transform: scale(1.05);
    }

.stats {
    background: #173123;
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

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

    .stat-box h2 {
        font-size: 55px;
        color: #d6a84f;
    }

/*TREK ROUTE TIMELINE*/
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

    .timeline:before {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ddd;
    }

.timeline-item {
    position: relative;
    text-align: center;
    width: 150px;
}

    .timeline-item:before {
        content: '';
        width: 20px;
        height: 20px;
        background: #d6a84f;
        border-radius: 50%;
        display: block;
        margin: auto auto 20px;
        position: relative;
        z-index: 2;
    }

    .timeline-item.active:before {
        width: 28px;
        height: 28px;
    }

.booking-cta {
    position: relative;
    background: url('../images/cta-bg.jpg') center/cover;
    padding: 140px 20px;
    text-align: center;
    color: #fff;
}

    .booking-cta .overlay {
        background: rgba(0,0,0,.6);
    }

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-top:20px;
}
.cta-buttons a{
    margin-right: 10px;
}

    .cta-content h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}


/* ==========================
   GALLERY
========================== */

.gallery-section {
    background: #f8f8f8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: .5s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }
    .gallery-item::after {
        content: '\f00e';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
        font-size: 30px;
        opacity: 0;
        z-index: 2;
        transition: .4s;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }
    .gallery-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.25);
        opacity: 0;
        transition: .4s;
        z-index: 1;
    }

    .gallery-item:hover::before {
        opacity: 1;
    }
/* ==========================
   GALLERY POPUP
========================== */

.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .gallery-popup.active {
        display: flex;
    }

    .gallery-popup img {
        max-width: 85%;
        max-height: 85vh;
        border-radius: 10px;
    }

.close-popup {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

    .prev-btn:hover,
    .next-btn:hover {
        background: #d6a84f;
    }

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}
/* ==========================
   FOOTER
========================== */

.footer {
    background: #13261b;
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #d6a84f;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: #d6a84f;
}

.footer p {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 12px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 14px;
    }

        .footer ul li a {
            color: #cfcfcf;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer ul li a:hover {
                color: #d6a84f;
                padding-left: 8px;
            }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

    .footer-contact-item i {
        color: #d6a84f;
        margin-top: 5px;
        width: 18px;
    }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        transition: all .3s ease;
    }

        .social-links a:hover {
            background: #d6a84f;
            border-color: #d6a84f;
            transform: translateY(-4px);
        }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
    color: #b5b5b5;
    font-size: 14px;
}

    .copyright a {
        color: #d6a84f;
        text-decoration: none;
    }
