:root {
    --x-orange: #ff7a1a;
    --p-purple: #7b5cff;
    --e-teal: #00c2a8;
    --r-red: #ff4d6d;
    --i-yellow: #ffc107;
    --e2-blue: #3da9fc;
    --n-pink: #ff6ec7;
    --t-lime: #9be15a;
    --i2-coral: #ff8a5b;
    --a-indigo: #5a54e6;
    --l-sky: #48c0ff;
    --s-black: #111111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    min-height: 100vh;
    background: #ffffff;
    /* white background */
    color: #111;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    max-width: 100%;
    /* allow large logo */
    text-align: center;

}

.pages-container {
    margin-top: 170px;
}

.orb-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    width: 100%;
    max-width: 800px;
    /* ✅ make GIF very large */
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .35));
}

.orb-wrap img {

    display: block;
}

.brand {
    margin-top: 5px;
    /* minimal gap below logo */
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    letter-spacing: .02em;
    display: flex;
    gap: .04em;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
    user-select: none;
}

.brand .x {
    font-family: Playfair Display, serif;
    color: var(--x-orange);
    font-size: 1.2em;
}

.brand .p {
    color: var(--p-purple)
}

.brand .e {
    color: var(--e-teal)
}

.brand .r {
    color: var(--r-red)
}

.brand .i {
    color: var(--i-yellow)
}

.brand .e2 {
    color: var(--e2-blue)
}

.brand .n {
    color: var(--n-pink)
}

.brand .t {
    color: var(--t-lime)
}

.brand .i2 {
    color: var(--i2-coral)
}

.brand .a {
    color: var(--a-indigo)
}

.brand .l {
    color: var(--l-sky)
}

.brand .s {
    color: var(--s-black);
    background: linear-gradient(#fff, #e9e9e9);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 1px 0 #fff);
}

.cta-row {
    margin-top: 5px;
    /* very tight spacing */
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #111;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 16px 10px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    text-decoration: none;
}

.cta .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 0 0 2px #111 inset;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    background: #f5f7ff;
}

.caption {
    margin-top: 0;
    /* ✅ no gap below CTA */
    font-size: 12px;
    color: #555;
}

.home-image {
    display: block;
    width: 100%;
    text-align: center;
    /* center the image */
    margin-top: 40px;
    /* spacing below hero */
}

.home-image {
    width: 100%;
    /* container spans full width */
    margin-top: 40px;
    /* spacing below hero content */
    text-align: center;
    /* center the image if smaller */
}

.home-image img {
    width: 100%;
    /* image fills container width */
    max-width: 100%;
    /* never exceed container */
    height: auto;
    /* keep aspect ratio */
    display: block;
    /* remove inline spacing */
}

.globe_container {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../images/glob_background.png') no-repeat center center;
    background-size: cover;

    overflow: hidden;
    position: relative;
}

.home-banner {
    position: relative;
    /* place it inside container */
    margin-top: 270px;
    /* center vertically */
    left: 50%;
    /* center horizontally */
    transform: translate(-50%, -50%);
    z-index: 2;
    /* higher than background/menu */
    width: 100%;
    /* adjust size */
    height: auto;
    pointer-events: none;
    /* optional: don’t block clicks */
}


.overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-icons {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    /* adjust based on your menu.png size */
    height: auto;
}

.menu-icons img {
    width: 100%;
    height: auto;
    display: block;
}



.menu-labels a {

    width: 200px;
    padding: 10px;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.about {
    background-color: #f57c00;
}

/* Orange */
.travel {
    background-color: #0288d1;
}

/* Blue */
.play {
    background-color: #fbc02d;
}

/* Yellow */
.story {
    background-color: #388e3c;
}

.celebration {
    background-color: #7b1fa2;
}

.menu-labels a:hover {
    transform: translateY(-2px);
}

.menu-labels {
    position: fixed;
    padding-bottom: 10px;
    transform: translateX(-50%);
    top: 0;
    gap:10px;
    left: 47%;
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;

}



/* Each menu item */
.menu-label {
    display: flex;
    flex-direction: column;
    /* icon above text */
    align-items: center;
    text-align: center;
    color: #000;
    font-size: 14px;

}

.menu-label img {
    width: 200px;
    /* small icon size */
    height: 78px;
    margin-bottom: 0px;
    /* space between icon and text */
    object-fit: contain;
    /* keep aspect ratio */
    display: block;

}

.menu-label a {
    color: #000;
    text-decoration: none;
}


.menu-label:hover {
    transform: translateY(-2px);
}

.close-icon {
    position: absolute;
    top: -5px;
    right: -10px;
    color: red;
    font-weight: bold;
    cursor: pointer;
}

.content {
    margin-top: 80px;
    /* adjust based on menu height */
    padding: 20px;
}

@media (max-width: 768px) {
    .menu-labels {
        width: 100%;
        /* take full width */
        left: 0;
        transform: none;
        /* no need to shift */
        border-radius: 0;
        /* optional: remove rounded edges */
    }
}

/* Green */


/* Purple */

/*  About Us Page Styles  */

/* About Us Header */
.about-header,
.travel-header {
    position: relative;
    width: 260px;
    margin-bottom: 30px;
}


.about-header img {
    width: 90px;
    display: block;
    margin: auto;
    margin-bottom: -15px;
}


.travel-header img {
    width: 259px;
    display: block;
    margin: auto;
}

.about-title {
    background: #c95d2d;
    color: white;
    padding: 18px 20px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    box-shadow: 3px 3px 0px black;
    position: relative;
}

.travel-title {
    background: #62c1dd;
    color: #000;
    padding: 18px 20px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    box-shadow: 3px 3px 0px black;
    position: relative;
}

.about-title .close,
.travel-title .close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
}

/* Left section */
.left-panel {
    position: relative;
    width: 260px;
}

/* Buttons */
.menu-btn {
    width: 230px;
    padding: 14px 22px;
    margin-bottom: 30px;
    border-radius: 25px;
    border: 3px solid black;
    background: white;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    box-shadow: 5px 5px 0px black;
    text-align: left;
}

/* Hand + Star + Arrow */
.hand-arrow {
    position: absolute;
    left: 165px;
    top: 205px;
    width: 180px;
}

.hand-icon {
    font-size: 45px;
    position: absolute;
    left: 0;
    top: -10px;
    color: black;
}

.star-icon {
    font-size: 28px;
    position: absolute;
    left: 32px;
    top: -22px;
    color: black;
}

.arrow-icon {
    font-size: 38px;
    position: absolute;
    left: 110px;
    top: -5px;
    color: black;
}

/* RIGHT CONTENT AREA - FIXED */
.content-area {
    position: absolute;
    left: 420px;
    top: 165px;
    /* PERFECT: aligns with Vision-Mission button */
    width: 60%;
    text-align: center;
}



.vision-block,
.mission-block {
    margin-bottom: 80px;
}

.vision-block img,
.mission-block img {
    width: 80px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-text {
    font-size: 20px;
    line-height: 1.6;
    width: 100%;
    margin: auto;
}

/* Same CSS you already have — adding only extra styles */

.active-btn {
    background: #c95d2d !important;
    color: white !important;
    box-shadow: 5px 5px 0px black !important;
}

/* Move hand-arrow smoothly */
.hand-arrow {
    transition: top 0.4s ease;
}

.section-title-big {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.section-text-big {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: left;
    width: 90%;
}

/* END About Us Page Styles */

/* Travel Page Styles */
.card-wrapper {
    position: relative;
    width: 100%;
}

/* Top travelers image */
.top-image {
    width: 330px;
    position: absolute;
    top: -65px;
    left: 20px;
}

/* Heart image on right */
.heart-img {
    width: 120px;
    position: absolute;
    top: -55px;
    right: 70px;
    transform: rotate(-10deg);
}

.main-box {
    background: #62c1dd;
    border: 5px solid #0c2247;
    border-radius: 30px;
    padding: 60px 60px 80px 60px;
    position: relative;
}

/* Close icon */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    font-weight: 300;
    color: #0c2247;
    cursor: pointer;
    line-height: 0;
}

h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0c2247;
}

.desc {
    font-size: 26px;
    line-height: 1.6;
    text-align: center;
    width: 90%;
    margin: auto;
    color: #0c2247;
}

/* Hand click icon */
.hand-icon {
    width: 80px;
    position: absolute;
    bottom: -25px;
    right: 30px;
}

.travelers-image {
    width: 100%;
}

.travel-content-area {
    position: absolute;
    left: 420px;
    top: 0px;
    width: 60%;
    text-align: center;
}

.active-btn-travel {
    background: #62c1dd !important;
    color: white !important;
    box-shadow: 5px 5px 0px black !important;
}

.travel-btn-size {
    width: 258px;
}

.left-images img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

.right-image img {
    width: 100%;
    border-radius: 12px;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* or brand color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-screen.hidden {
    display: none;
}


/* .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
}

/* Menu items */
.menu-item {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

/* Icon above text */
.menu-item img {
    display: block;
    margin: 0 auto 5px auto;
    width: 24px;
    /* Adjust size */
    height: 24px;
}

/* Add spacing for page content so it doesn’t hide behind fixed menu */
.content {
    margin-top: 70px;
    /* Adjust based on menu height */
    padding: 20px;
}

/* ------------------------------------------------------
   MOBILE RESPONSIVE FIXES (ADD AT BOTTOM OF CSS FILE)
   ------------------------------------------------------ */
@media (max-width: 768px) {
    .menu-labels a {
    width: 100%;}

    /* MENU FIX */
    .menu-labels {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 10px 5px;
        justify-content: space-between;
        background: #fff;
        z-index: 9999;
    }

    .menu-label {
        width: 19%;
    }

    .menu-label img {
        width: 55px;
        height: 17px;
    }

    .menu-label a {
        font-size: 10px;
        padding: 4px 6px;
        line-height: 14px;
    }

    /* CLOSE ICON HIDE IN MOBILE */
    .close-icon {
        display: none;
    }

    /* GLOBE CONTAINER */
    .globe_container {
        background-size: cover;
        padding-top: 130px;
    }

    .home-banner {
        width: 90%;
        margin-top: 80px;
        transform: translate(-50%, 0);
    }

    /* CONTENT AREA SPACE */
    .content {
        margin-top: 120px;
        padding: 10px;
    }

    .home-image {
        margin-top: 20px;
    }

    .home-image img {
        width: 100%;
        height: auto;
    }

    /* OVERLAY MENU FIX */
    .overlay {
        height: auto;
        padding-top: 10px;
    }
}

/* ---------- EXTRA SMALL PHONES (<=480px) ---------- */
@media (max-width: 480px) {
    .menu-labels a {
    width: 100%;}

    .menu-label img {
        width: 45px;
        height: 17px;
    }

    .menu-label a {
        font-size: 9px;
        padding: 3px 4px;
    }

    .home-banner {
        width: 100%;
        margin-top: 0;
    }

    .content {
        margin-top: 110px;
    }
}

/* ------------------------------------------------------
   ABOUT / TRAVEL PAGE RESPONSIVE FIXES
   ------------------------------------------------------ */

@media (max-width: 992px) {

    /* Main container stack instead of left-right */
    .pages-container {
        display: flex;
        flex-direction: column;
        margin-top: 140px !important;
        padding: 10px 15px !important;
    }

    /* ABOUT HEADER */
    .about-header, .travel-header {
        width: 100%;
        margin: 0 auto 20px auto;
        text-align: center;
    }

    .about-header img,
    .travel-header img {
        width: 60px;
        margin-bottom: -10px;
    }

    .about-title, .travel-title {
        width: 100%;
        font-size: 22px;
        padding: 14px;
    }

    /* LEFT PANEL (BUTTONS SECTION) */
    .left-panel {
        width: 100% !important;
        margin-bottom: 20px;
        text-align: center;
    }

    .menu-btn {
        width: 90% !important;
        margin: 10px auto;
        font-size: 16px;
        padding: 12px 18px;
        text-align: center;
    }

    /* Hide hand arrow on mobile */
    .hand-arrow {
        display: none;
    }

    /* RIGHT CONTENT AREA */
    .content-area {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin-top: 10px;
        padding: 10px 5px;
        text-align: center;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .section-text {
        font-size: 16px;
        width: 100%;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .vision-block img,
    .mission-block img {
        width: 60px;
    }
}

/* ------------------------------------------------------
   SMALL PHONES <= 600px
   ------------------------------------------------------ */

@media (max-width: 600px) {

    /* Title boxes */
    .about-title, .travel-title {
        font-size: 20px;
        padding: 12px;
    }

    .menu-btn {
        width: 100% !important;
        font-size: 15px;
        padding: 10px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-text {
        font-size: 14px;
        width: 100%;
    }

    /* Footer image spacing */
    .home-image {
        margin-top: 40px !important;
    }
}

/* ------------------------------------------------------
   VERY SMALL PHONES <= 420px
   ------------------------------------------------------ */

@media (max-width: 420px) {

    .about-title, .travel-title {
        font-size: 18px;
    }

    .menu-btn {
        font-size: 14px;
        padding: 8px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-text {
        font-size: 13px;
    }

    .vision-block img,
    .mission-block img {
        width: 50px;
    }
}

/* ------------------------------------------------------
   TRAVEL PAGE RESPONSIVE FIXES
   ------------------------------------------------------ */

/* ---------- TABLETS & SMALL LAPTOPS (<=992px) ---------- */
@media (max-width: 992px) {

    #travel-container.pages-container {
        display: flex;
        flex-direction: column;
        margin-top: 160px !important;
        padding: 10px 15px !important;
        min-height: auto !important;
    }

    /* Left panel */
    .left-panel {
        width: 100% !important;
        margin-bottom: 25px;
        text-align: center;
    }

    /* Travel header block */
    .travel-header {
        width: 100% !important;
        margin: 0 auto 15px auto;
        text-align: center;
    }

    .travel-header img {
        width: 70px !important;
        margin-bottom: -8px;
    }

    .travel-title {
        width: 100% !important;
        font-size: 22px !important;
        padding: 14px !important;
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    /* Buttons */
    .menu-btn {
        width: 90% !important;
        margin: 10px auto !important;
        font-size: 16px !important;
        padding: 12px !important;
        text-align: center !important;
    }

    /* Hide pointer icons */
    .hand-arrow {
        display: none !important;
    }

    /* Right content area */
    .travel-content-area {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin-top: 10px !important;
        padding: 10px 5px !important;
        text-align: center !important;
    }

    /* Responsive images */
    .travelers-image,
    .card-wrapper img {
        width: 100% !important;
        height: auto !important;
        display: block;
        margin-bottom: 15px;
    }

    /* Suitcase image */
    #travel-suitcase {
        width: 90px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: 30% !important;
    }

    /* Full page content spacing */
    #travel-full-page-content {
        margin-top: 30px !important;
    }
}

/* ---------- MOBILE PHONES (<=600px) ---------- */
@media (max-width: 600px) {

    .travel-header img {
        width: 55px !important;
    }

    .travel-title {
        font-size: 18px !important;
        padding: 10px !important;
    }

    .menu-btn {
        width: 100% !important;
        font-size: 15px !important;
        padding: 10px !important;
    }

    .travelers-image {
        margin-bottom: 12px !important;
    }

    #travel-suitcase {
        width: 70px !important;
        bottom: 8px !important;
        right: 8px !important;
    }

    /* Reduce background intensity by zoom-out on small screens */
    #travel-container {
        background-size: contain !important;
        background-position: top center !important;
    }
}

/* ---------- VERY SMALL PHONES (<=420px) ---------- */
@media (max-width: 420px) {

    .travel-title {
        font-size: 16px !important;
        padding: 8px !important;
    }

    .menu-btn {
        font-size: 14px !important;
        padding: 8px !important;
    }

    .travel-header img {
        width: 48px !important;
    }

    #travel-suitcase {
        width: 60px !important;
    }

    .travelers-image {
        margin-bottom: 10px !important;
    }
}

/* ------------------------------------------------------
   PLAY PAGE RESPONSIVE FIXES
   ------------------------------------------------------ */

/* ---------- TABLETS & SMALL LAPTOPS (<=992px) ---------- */
@media (max-width: 992px) {

    #travel-container.pages-container {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 160px !important;
        padding: 10px 15px !important;
        min-height: auto !important;
    }

    /* LEFT PANEL */
    .left-panel {
        width: 100% !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    /* Play header */
    .travel-header {
        width: 100% !important;
        margin: 0 auto 15px auto !important;
        text-align: center !important;
    }

    .travel-header img {
        width: 70px !important;
        margin-bottom: -8px !important;
    }

    .travel-title {
        width: 100% !important;
        font-size: 22px !important;
        padding: 14px !important;
        display: block !important;
        margin: 10px auto !important;
        text-align: center !important;
    }

    /* Buttons */
    .menu-btn {
        width: 90% !important;
        margin: 10px auto !important;
        font-size: 16px !important;
        padding: 12px !important;
        text-align: center !important;
    }

    /* Hide hand arrow */
    .hand-arrow {
        display: none !important;
    }

    /* RIGHT CONTENT AREA */
    .travel-content-area {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin-top: 10px !important;
        padding: 10px 5px !important;
        text-align: center !important;
    }

    /* IMAGES */
    .travelers-image,
    .card-wrapper img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 15px !important;
        border-radius: 12px !important;
    }

    /* Full page content */
    #travel-full-page-content {
        margin-top: 20px !important;
    }

    /* Suitcase Image */
    #travel-suitcase {
        width: 90px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: 28% !important;
    }

    /* Background adjustments */
    #travel-container {
        background-size: contain !important;
        background-position: top center !important;
    }
}

/* ---------- MOBILE PHONES (<=600px) ---------- */
@media (max-width: 600px) {

    .travel-header img {
        width: 55px !important;
    }

    .travel-title {
        font-size: 18px !important;
        padding: 10px !important;
    }

    .menu-btn {
        width: 100% !important;
        font-size: 15px !important;
        padding: 10px !important;
    }

    .travelers-image {
        margin-bottom: 12px !important;
    }

    #travel-suitcase {
        width: 70px !important;
        bottom: 8px !important;
        right: 8px !important;
    }

    #travel-container {
        background-size: cover !important;
    }
}

/* ---------- VERY SMALL PHONES (<=420px) ---------- */
@media (max-width: 420px) {

    .travel-title {
        font-size: 16px !important;
        padding: 8px !important;
    }

    .menu-btn {
        font-size: 14px !important;
        padding: 8px !important;
    }

    .travel-header img {
        width: 48px !important;
    }

    #travel-suitcase {
        width: 55px !important;
    }

    .travelers-image {
        margin-bottom: 10px !important;
    }
}
/* ---------------------------
   STORY PAGE BACKGROUND FIX
   --------------------------- */

/* --------------------------------------------
   FIX: Background should start BELOW buttons
   -------------------------------------------- */

.pages-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.left-panel {
    width: 22%;     /* percentage, not px */
    min-width: 220px;
}

.content-area {
    position: relative !important;
    width: 78%;
    left: 0 !important;
    top: 0 !important;
}

/* -------------------------------
   DESKTOP FIX – FLEX LAYOUT
--------------------------------*/
@media (min-width: 993px) {

    .pages-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
    }

    .left-panel {
        width: 30%;  
        min-width: 240px; 
    }

    .content-area {
        position: relative !important;
        width: 70% !important;
        left: 0 !important;
        top: 0 !important;
        text-align: left;
    }
}

@media (max-width: 992px) {
    .pages-container {
        display: flex;
        flex-direction: column;
    }

    .left-panel {
        width: 100% !important;
    }

    .content-area {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
    }
}



