

.skeleton-card {
    background: #e3e7ec;
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 18px;
    min-height: 110px;
    box-shadow: 0 2px 12px rgba(100,100,100,0.07);
    animation: shimmer 1.6s infinite linear;
    position: relative;
    overflow: hidden;
}
.skeleton-title, .skeleton-text, .skeleton-img {
    display: block;
    background: #cfd7df;
    border-radius: 6px;
    margin-bottom: 10px;
}
.skeleton-title { height: 18px; width: 70%; }
.skeleton-text { height: 12px; width: 90%; }
.skeleton-img { height: 55px; width: 55px; margin-bottom: 0; }
@keyframes shimmer {
    0% { background-position: -250px 0; }
    100% { background-position: 250px 0; }
}
.skeleton-img {
    background: linear-gradient(90deg, #e3e7ec 30%, #f7f9fa 50%, #e3e7ec 70%);
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite linear;
}
.scrollable-tour-list { touch-action: pan-y; }

.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #b9f2ff;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 20px white, 0 0 60px rgba(255, 255, 255, 0.5);
    animation: sparkleFloat 8s linear infinite;
}

/* Random positions + delays for uniqueness */
.sparkle:nth-child(1) { top: 40%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 35%; left: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 25%; left: 50%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 68%; left: 70%; animation-delay: 3s; }
.sparkle:nth-child(5) { top: 42%; left: 90%; animation-delay: 4s; }
.sparkle:nth-child(6) { top: 57%; left: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(7) { top: 29%; left: 40%; animation-delay: 2.5s; }
.sparkle:nth-child(8) { top: 76%; left: 60%; animation-delay: 3.5s; }
.sparkle:nth-child(9) { top: 51%; left: 80%; animation-delay: 5s; }
.sparkle:nth-child(10) { top: 87%; left: 95%; animation-delay: 6s; }

@keyframes sparkleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    30% {
        transform: translate(-10px, -30px) scale(1.1);
    }
    60% {
        transform: translate(10px, -60px) scale(0.9);
    }
    100% {
        transform: translate(0, -100px) scale(1);
        opacity: 0;
    }
}


.hero-with-orb {
    position: relative;
    height: 450px;
    overflow: hidden;
    background-color: #000;
}

/* Image transition banners */
.custom-top-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease;
    transform: scale(1);
    z-index: 1;
    overflow: hidden;
}

.custom-top-banner.active {
    opacity: 1;
    transform: scale(1.05); /* subtle zoom */
    z-index: 2;
}

/* Orb effect */
.orb-glow,
.orb-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(138,43,226,0.7) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulseGlow 6s infinite ease-in-out;
    filter: blur(12px);
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

/* Text content wrapper */
.hero-content {
    z-index: 3;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Glass panel with floating motion */
.glass-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 700px;
    margin: auto;
    box-shadow: 0 0 40px rgba(255,255,255,0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Targeted heading style */
.hero-with-orb .glass-panel h2 {
    color: #032233 !important;
    font-family: "Cormorant", serif;
}

.hero-with-orb .glass-panel #captionText {
    font-weight: 700;
}
/* Fade in effect (JS class) */
.fade-text {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Carousel and menu list (unchanged) */
.latest-carousel img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-list li {
    padding-left: 0;
    margin: 0;
    line-height: 1.4;
}

.menu-list .child-link {
    padding-left: 1rem;
}
@media (max-width: 768px) {
    .hero-with-orb {
        height: 300px; /* shorter hero on mobile */
    }

    .glass-panel {
        padding: 1rem;
        backdrop-filter: blur(2px); /* less blur for clarity */
        background: rgba(0, 0, 0, 0.5); /* stronger contrast */
        box-shadow: none;
        max-width: 96%;
        margin-top: 90px;
    }

    .glass-panel h2 {
        font-size: 1.8rem;
    }

    #captionText {
        font-size: 0.95rem;
        color: #fff;
        margin-bottom: 18px;
    }

    .orb-image {
        width: 200px; /* shrink the orb */
    }
    .hero-with-orb .glass-panel h2 {
    color: #fff !important;
    font-family: "Cormorant", serif;
}
}

@media (min-width: 768px) and (max-width: 1020px) {
    .hero-with-orb {
        height: 400px; /* adjust as needed for tablets */
    }

    .glass-panel {
        padding: 1rem;
        backdrop-filter: blur(4px);
        background: rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        max-width: 90%;
        margin-top: 100px;
    }
        #captionText {
        font-size: 0.95rem;
        color: #fff;
        margin-bottom: 18px;
    }
}
    @media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

}

@media (max-width: 768px) {
    .menu-list .child-link {
        padding-left: 0.5rem;
    }
}
/* Skeleton loader styles for hero */
.hero-skeleton {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
    top: 0; left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background: #f5f6f8;
    animation: fadeSkeletonBg 0.6s;
}
@keyframes fadeSkeletonBg { from {opacity:0;} to {opacity:1;} }

.skel-glass-panel {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 0 30px #eee;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.skel-line {
    height: 22px;
    width: 60%;
    border-radius: 12px;
    background: linear-gradient(90deg,#ececec 25%,#e5e5e5 50%,#ececec 75%);
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
}

.skel-caption { height: 18px; width: 85%; }
.skel-btn { height: 38px; width: 130px; border-radius: 19px; margin-top: 10px; }

@keyframes shimmer {
  0% {background-position: -200% 0;}
  100% {background-position: 200% 0;}
}

/* Tablets: use desktop image, keep full cover, nudge focus up a bit */
@media (min-width: 769px) and (max-width: 1024px) {
    .custom-top-banner {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }
}
@media (max-width: 1024px) {
    .hero-with-orb .glass-panel h2 {
        color: #fff !important;
    }
}


