/* GLOBAL FIX — Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}




/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: "Segoe UI", sans-serif;
    background: #fdf5e6; /* warm autumn beige */
    color: #444;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #4a2c19; /* deep autumn brown */
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.btn-book {
    background: #d35400;
    padding: 8px 15px;
    border-radius: 6px;
}

/* MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: absolute;
        top: 65px;
        right: -200px;
        flex-direction: column;
        background: #4a2c19;
        width: 160px;
        padding: 15px;
        border-radius: 10px;
        transition: 0.3s ease;
    }

    .nav-menu.active {
        right: 10px;
    }
}

/* HERO SLIDER */
.hero-slider {
    width: 100%;
    height: 420px;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
    opacity: 0;
    transition: 0.8s ease;
}

.slide.active {
    left: 0;
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 30px;
    color: white;
    text-shadow: 0 3px 10px black;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: #e6c29f;
    border-radius: 50%;
}

.indicator.active {
    background: #d35400;
}

/* BIG PACKAGES BUTTON */
.center-btn-area {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.big-pack-btn {
    background: #d35400;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.big-pack-btn:hover {
    background: #b84300;
}

/* PARALLAX SECTION */
.parallax-section {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

/* Mobile fix */
@media(max-width: 600px) {
    .parallax-section {
        height: 300px;
    }
    .parallax-content {
        bottom: 25px;
        left: 20px;
    }
}



/* ===========================
   WHY CHOOSE US SECTION
   =========================== */

.why-choose-us {
    padding: 70px 0;
    background: #f7e5c4; /* warm light autumn tone */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #4a2c19;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7a4a2a;
    margin-bottom: 40px;
}

/* GRID */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.choose-card {
    background: #fff5e8;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2c5a1;
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* ICON */
.choose-icon {
    font-size: 2.4rem;
    color: #d35400;
    margin-bottom: 12px;
}

.choose-card h3 {
    color: #4a2c19;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.choose-card p {
    color: #5b3925;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}









/* =======================
   ABOUT SECTION
   ======================= */

.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f5f7fb);
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* TEXT AREA */
.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #0d1b2a;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
    max-width: 650px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s ease;
}

.about-btn:hover {
    opacity: 0.85;
}

/* RIGHT IMAGE CARD */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}


@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .about-btn {
        margin: 0 auto;
    }
}











/* =======================
   TESTIMONIALS SECTION
   ======================= */

.testimonials-section {
    padding: 80px 0;
    background: #fdf5e6; /* warm autumn beige */
}

.testimonial-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #4a2c19; /* deep autumn brown */
    font-weight: 700;
    margin-bottom: 50px;
    font-family: "Georgia", serif;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.testimonial-card {
    background: #fff8ef; /* soft cream-orange */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e4c9a8;
    box-shadow: 0px 12px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 18px 40px rgba(0,0,0,0.12);
}

/* Stars */
.stars i {
    color: #d35400; /* orange autumn tone */
    margin-right: 3px;
    font-size: 1.2rem;
}

/* Text */
.testimonial-text {
    font-style: italic;
    color: #5b3925; /* warm brown */
    margin: 15px 0 20px;
    line-height: 1.6;
}

/* Name */
.testimonial-name {
    font-weight: 700;
    color: #4a2c19;
    font-size: 1.1rem;
}

/* Location */
.testimonial-location {
    font-size: 0.9rem;
    color: #8b5e3c;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}








/* =======================
        FOOTER
======================= */

.footer-section {
    background: #f7e5c4; /* warm autumn beige */
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e5caa2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col {
    min-width: 250px;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a2c19; /* deep autumn brown */
    margin-bottom: 12px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #4a2c19;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-text {
    color: #5b3925;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #8b5e3c;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d35400;
}

/* Bottom bar */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5caa2;
}

.footer-bottom p {
    color: #7b4f2d;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

