@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://unpkg.com/aos@next/dist/aos.css');

:root {
    --primary-blue: #35a5d5;
    --primary-purple: #97419a;
    --secondary-green: #6dbe45;
    --secondary-darkgreen: #184822;
    --secondary-yellow: #fbea0d;
    --secondary-orange: #f48321;
    --neutral-white: #ffffff;
    --neutral-gray: #f5f5f5;
    --text-dark: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--neutral-gray);
    overflow-x: hidden;
    width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    overflow-x: hidden;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--primary-blue);
    color: var(--neutral-white);
    border: 2px solid var(--primary-blue);
}

.btn--primary:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn--secondary {
    background-color: var(--secondary-orange);
    color: var(--neutral-white);
    border: 2px solid var(--secondary-orange);
}

.btn--secondary:hover {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--text-dark);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn--outline:hover {
    background-color: var(--primary-blue);
    color: var(--neutral-white);
}

.header {
    background-color: var(--neutral-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 100%;
    flex-wrap: nowrap; /* Prevent wrapping to keep logo and hamburger visible */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo__img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.logo span {
    color: var(--primary-blue);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #06cdf0;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: #06cdf0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #bb04cc;
}


.hero-slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
}

.hero-slider__track {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    max-width: 100%;
}

.hero-slider__img.active {
    opacity: 1;
}

.hero-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
}

.hero-slider__text {
    text-align: center;
    color: var(--neutral-white);
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.hero-slider__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-slider__title span {
    color: var(--secondary-yellow);
}

.hero-slider__tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.pillars {
    padding: 40px 0;
    background-color: var(--neutral-white);
    width: 100%;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: center;
}

.pillar {
    padding: 15px;
    background-color: var(--neutral-gray);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pillar__emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.pillar__title {
    font-size: 1.4rem;
    color: var(--primary-purple);
}

.section__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.about {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: var(--neutral-white);
    width: 100%;
}

.about__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.about__intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: hidden;
}

.about__intro-text {
    flex: 1;
}

.about__intro-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about__intro-img {
    flex: 1;
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    max-width: 100%;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.about__card {
    background-color: var(--neutral-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about__card__title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.about__card p {
    color: var(--text-dark);
}

.trips {
    padding: 40px 0;
    background-color: var(--neutral-gray);
    width: 100%;
}

.trip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.trip {
    background-color: var(--neutral-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.trip:hover {
    transform: translateY(-5px);
}

.trip img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.trip__body {
    padding: 15px;
}

.trip__title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.testimonials {
    padding: 40px 0;
    background-color: var(--neutral-white);
    width: 100%;
}

.testimonial__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.testimonial {
    background-color: var(--neutral-gray);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: var(--primary-purple);
}

.gallery {
    padding: 40px 0;
    width: 100%;
}

.gallery__title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.gallery__grid img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery__grid img:hover {
    transform: scale(1.05);
}

.newsletter {
    padding: 40px 0;
    background-color: var(--primary-blue);
    color: var(--neutral-white);
    text-align: center;
    width: 100%;
}

.newsletter__box {
    max-width: 90%;
    margin: 0 auto;
}

.newsletter__box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter__form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter__input {
    padding: 10px;
    border: none;
    border-radius: 25px;
    width: 100%;
    max-width: 280px;
    font-size: 0.9rem;
}

.footer {
    background-color: var(--secondary-darkgreen);
    color: var(--neutral-white);
    padding: 30px 0;
    width: 100%;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.footer__col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer__col a {
    color: var(--neutral-white);
    text-decoration: none;
}

.footer__col a:hover {
    color: var(--secondary-yellow);
}

.footer__copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100vw;
    }

    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0; /* Reduced padding for tighter fit */
    }

    .logo {
        font-size: 1.4rem; /* Smaller logo text */
        max-width: 50%; /* Constrain logo width */
        overflow: hidden; /* Prevent overflow */
    }

    .logo__img {
        width: 30px;
        height: 30px;
    }

     .hamburger {
        display: flex;
    }

    .nav__list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f3f5f7;
    }

    .nav__list.active {
        display: flex;
    }

    .nav__link {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
    .nav__link.btn--primary {
        padding: 8px 16px; /* Smaller padding for button */
        font-size: 0.9rem; /* Smaller font */
        width: auto; /* Prevent button from stretching */
        display: inline-block; /* Ensure button fits content */
        margin: 5px 0; /* Add spacing to avoid overlap */
    }

    .hero-slider {
        height: 50vh;
        width: 100vw;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-slider__track {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-slider__img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slider__title {
        font-size: 2rem;
    }

    .hero-slider__tagline {
        font-size: 1rem;
        max-width: 95%;
    }

    .about__intro {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .about__intro-img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trip__grid {
        grid-template-columns: 1fr;
    }

    .trip img {
        max-height: 160px;
        max-width: 100%;
    }

    .testimonial__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .gallery__grid img {
        max-height: 120px;
        max-width: 100%;
    }

    .newsletter__form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter__input {
        max-width: 100%;
    }

    .section__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        max-width: 60%;
    }

    .logo__img {
        width: 25px;
        height: 25px;
    }

    .hamburger {
        width: 25px;
        height: 20px;
    }

    .nav__list {
        top: 50px; /* Adjust for smaller header */
    }

    .nav__link.btn--primary {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero-slider {
        height: 40vh;
        width: 100vw;
        max-width: 100%;
    }

    .hero-slider__title {
        font-size: 1.6rem;
    }

    .hero-slider__tagline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 12px;
    }

    .pillar__emoji {
        font-size: 1.8rem;
    }

    .pillar__title {
        font-size: 1.2rem;
    }

    .trip img {
        max-height: 140px;
        max-width: 100%;
    }

    .gallery__grid img {
        max-height: 100px;
        max-width: 100%;
    }

    .newsletter__box h2 {
        font-size: 1.5rem;
    }

    .newsletter__input {
        font-size: 0.85rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}