/* =====================================================================
   Elite Tours — Immersive Photo Showcase (landing page)
   Full-bleed photographic bands with overlaid text, matching the
   editorial "real Kenya" collage. Each band layers a real photo on top
   of an SVG scene fallback: drop the .jpg in and it takes over.
   ===================================================================== */

:root {
    --sc-green: #10B981;
    --sc-green-dark: #059669;
    --sc-obsidian: #0B132B;
    --sc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- CTA with photo (Ready to Experience the Real Kenya?) ---------- */
.cta-immersive {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/cta-lions.jpg') no-repeat right center;
    background-size: cover;
}
/* Gradient veil: opaque teal/obsidian on the left, fading into the photo */
.cta-immersive::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(11, 19, 43, 0.94) 0%,
        rgba(13, 48, 62, 0.86) 32%,
        rgba(13, 48, 62, 0.35) 58%,
        rgba(13, 48, 62, 0) 78%
    );
}
.cta-immersive .cta-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}
.cta-immersive h2 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 560px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
}
.cta-immersive p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.cta-immersive .btn {
    background: var(--sc-green);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.4);
}
.cta-immersive .btn:hover {
    background: var(--sc-green-dark);
    transform: translateY(-3px);
}

/* ---- Shared full-bleed band --------------------------------------- */
.photo-band {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.photo-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,19,43,0.15) 0%, rgba(11,19,43,0) 40%, rgba(11,19,43,0.55) 100%);
    pointer-events: none;
}
.photo-band .band-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
    padding: 2rem;
}

/* Guide feature band */
.guide-band {
    min-height: 340px;
    align-items: center;
    justify-content: flex-end;
    background: url('../images/guide-feature.jpg') no-repeat center 30%;
    background-size: cover;
}
.guide-band::after {
    background: linear-gradient(90deg, rgba(11,19,43,0.15) 0%, rgba(11,19,43,0) 45%, rgba(11,19,43,0.35) 100%);
}
.guide-band .band-label {
    font-size: clamp(1.8rem, 4vw, 3rem);
    padding: 2.5rem 3rem;
}
.guide-band .band-label small {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sc-green);
    margin-bottom: 0.4rem;
    text-shadow: none;
}

/* ---- Category mosaic (3 tiles) ------------------------------------- */
.mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: #0b132b;
}
.mosaic-tile {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.6s var(--sc-ease);
}
.mosaic-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,19,43,0) 45%, rgba(11,19,43,0.72) 100%);
    transition: background 0.4s ease;
}
.mosaic-tile:hover { transform: scale(1.03); }
.mosaic-tile:hover::after {
    background: linear-gradient(180deg, rgba(11,19,43,0.1) 30%, rgba(11,19,43,0.78) 100%);
}
.mosaic-tile .tile-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    padding: 1.5rem;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.mosaic-tile .tile-label i { font-size: 1.1rem; color: var(--sc-green); }

.tile-wildlife  { background-image: url('../images/tile-wildlife.jpg'); }
.tile-coast     { background-image: url('../images/tile-coast.jpg'); }
.tile-nightlife { background-image: url('../images/tile-nightlife.jpg'); }

/* ---- Diani beach band --------------------------------------------- */
.beach-band {
    min-height: 380px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/band-diani.jpg') no-repeat center 60%;
    background-size: cover;
}
.beach-band::after {
    background: linear-gradient(180deg, rgba(11,19,43,0.2) 0%, rgba(11,19,43,0.05) 50%, rgba(11,19,43,0.3) 100%);
}
.beach-band .band-label {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
}
.beach-band .band-label a {
    display: inline-block;
    margin-top: 1.25rem;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    transition: all 0.25s var(--sc-ease);
}
.beach-band .band-label a:hover { background: var(--sc-green); border-color: var(--sc-green); transform: translateY(-2px); }

/* ---- Responsive ---------------------------------------------------- */
@media (max-width: 820px) {
    .mosaic { grid-template-columns: 1fr; }
    .mosaic-tile { min-height: 240px; }
    .cta-immersive {
        background-position: center, center;
        min-height: 520px;
        align-items: flex-end;
    }
    .cta-immersive::before {
        background: linear-gradient(180deg, rgba(11,19,43,0.35) 0%, rgba(11,19,43,0.55) 50%, rgba(11,19,43,0.92) 100%);
    }
    .cta-immersive h2, .cta-immersive p { max-width: none; }
    .guide-band { justify-content: center; }
    .guide-band .band-label { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .mosaic-tile { transition: none; }
    .mosaic-tile:hover { transform: none; }
}
