/* =========================
   IMAGE PREVIEW (ADMIN)
========================= */
.img-preview {
    max-height: 80px;
    width: auto;
    height: auto;
}

/* =========================
   THEME VARIABLES
========================= */
:root {
    --navy: #101E3B;
    --navy-dark: #101E3B;
    --navy-light: #101E3B;
}

/* =========================
   GLOBAL
========================= */
body {
    background-color: var(--navy) !important;
    color: #f8f9fa;
}

/* =========================
   NAVBAR & SECTIONS
========================= */
.navbar,
.bg-black {
    background-color: var(--navy-dark) !important;
}

.bg-dark {
    background-color: var(--navy) !important;
}

/* =========================
   CARDS & FOOTER
========================= */
.card {
    background-color: #ffffff;
}

footer {
    background-color: var(--navy-dark) !important;
}

/* =========================
   GOLD BULLETS
========================= */
.gold-bullets {
    padding-left: 1.2rem;
}

.gold-bullets li::marker {
    color: #C9A24D;
    font-size: 1.3em;
}

.gold-bullets li {
    margin-bottom: 0.5rem;
}

/* =========================
   CAROUSEL CORE
========================= */
#tourismCarousel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#tourismCarousel .carousel-item {
    position: relative;
}

/* IMAGE — LARGE, NO CROP */
.carousel .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 85vh;              /* desktop cap */
    object-fit: contain;           /* NO top crop */
    object-position: center center;
    display: block;
}

/* =========================
   CAPTION POSITION (MOVED UP)
========================= */
.carousel-caption {
    position: absolute;
    top: 15%;              /* move UP */
    bottom: auto !important; /* 🚨 disable Bootstrap */
    transform: translateY(0); /* no centering pull-down */
    text-align: center;
    background: none;
    padding: 1rem;
}


/* Caption text */
.carousel-caption h2,
.carousel-caption p {
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.carousel-caption h2 {
    margin-bottom: 0.3rem;
}

.carousel-caption p {
    margin-top: 0;
}

/* =========================
   ICON ROW
========================= */
.icon-row {
    margin-top: -0.5rem;
}

.icon-row .col {
    text-align: center;
    padding: 1rem;
}

.icon-row img {
    max-width: 60px;
    margin-bottom: 0.5rem;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .carousel-caption {
        top: 12%;
        bottom: auto !important;
        transform: translateY(0);
        padding: 0.75rem;
        background: rgba(0,0,0,0.55);
        border-radius: 10px;
    }
}


    .carousel-caption h2 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    /* Tighten carousel → icon row gap */
    .icon-row {
        margin-top: 0 !important;
        padding-top: 0.25rem !important;
    }

    .icon-row .row {
        margin-top: 0 !important;
    }
}
