/* ═══════════════════════════════════════════════════════════════════════
   CEYLON AURA — Journeys Page Styles
   Split Hero + Featured Card + Horizontal Journey Cards
   ═══════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   HERO — Discover the Untamed
   ══════════════════════════════════════════════════════════════════════════ */
.jrn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* ── Background Canopy ───────────────────────────────────────────────── */
.jrn-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    overflow: hidden;
}

.jrn-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.35) saturate(0.8);
    transition: transform 12s ease;
}

.jrn-hero:hover .jrn-hero__bg-img {
    transform: scale(1.04);
}

.jrn-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, var(--dark) 100%);
    pointer-events: none;
}

/* ── Hero Container ──────────────────────────────────────────────────── */
.jrn-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── Hero Left — Text ────────────────────────────────────────────────── */
.jrn-hero__tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
    opacity: 0;
    animation: jrnFadeUp 0.7s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.jrn-hero__title {
    font-family: var(--font-display);
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 300;
    color: white;
    line-height: 1.0;
    margin-bottom: 28px;
    opacity: 0;
    animation: jrnFadeUp 0.9s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.jrn-hero__title em {
    color: var(--gold-peach);
    font-style: italic;
}

.jrn-hero__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 360px;
    opacity: 0;
    animation: jrnFadeUp 0.8s 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes jrnFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURED CARD — Wild Heart
   ══════════════════════════════════════════════════════════════════════════ */
.jrn-hero__right {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    animation: jrnFadeUp 0.9s 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.jrn-featured-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.jrn-featured-card:hover {
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.jrn-featured-card__img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.jrn-featured-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jrn-featured-card:hover .jrn-featured-card__img {
    transform: scale(1.08);
}

.jrn-featured-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17,17,17,0.7) 0%, transparent 50%);
    pointer-events: none;
}

.jrn-featured-card__content {
    padding: 22px 26px;
}

.jrn-featured-card__name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: white;
    font-style: italic;
    margin-bottom: 8px;
}

.jrn-featured-card__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jrn-featured-card__meta {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.jrn-featured-card__action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.jrn-featured-card__action:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(201,169,110,0.35);
}

.jrn-featured-card__action svg {
    transition: transform 0.3s ease;
}

.jrn-featured-card__action:hover svg {
    transform: translateX(2px);
}

/* ══════════════════════════════════════════════════════════════════════════
   JOURNEYS SECTION — Card Grid
   ══════════════════════════════════════════════════════════════════════════ */
.jrn-section {
    padding: 80px 0 100px;
    background: var(--dark);
    position: relative;
}

/* ── Section Header ──────────────────────────────────────────────────── */
.jrn-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.jrn-section__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: white;
    font-style: italic;
}

.jrn-section__nav {
    display: flex;
    gap: 10px;
}

.jrn-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jrn-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Journey Cards — Horizontal Scroll ───────────────────────────────── */
.jrn-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jrn-cards::-webkit-scrollbar {
    display: none;
}

/* ── Individual Journey Card ─────────────────────────────────────────── */
.jrn-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.jrn-card:hover {
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Card Image */
.jrn-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.jrn-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jrn-card:hover .jrn-card__img {
    transform: scale(1.1);
}

.jrn-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.5) 100%);
    pointer-events: none;
}

/* Category Badge */
.jrn-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.06);
}

.jrn-card__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.jrn-card__badge-dot--green {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74,222,128,0.4);
}

.jrn-card__badge-dot--orange {
    background: #fb923c;
    box-shadow: 0 0 8px rgba(251,146,60,0.4);
}

.jrn-card__badge-dot--amber {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251,191,36,0.4);
}

/* Card Body */
.jrn-card__body {
    padding: 22px;
}

.jrn-card__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: white;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 16px;
}

.jrn-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.jrn-card__route {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.jrn-card__link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.jrn-card__link:hover {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.25);
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — Reuse escapes footer styles
   ══════════════════════════════════════════════════════════════════════════ */
.esc-footer {
    background: var(--dark);
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.esc-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.esc-footer__brand {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
}

.esc-footer__links {
    display: flex;
    gap: 24px;
}

.esc-footer__links a {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.esc-footer__links a:hover {
    color: rgba(255,255,255,0.7);
}

.esc-footer__copy {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .jrn-hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 120px 32px 60px;
    }

    .jrn-hero__right {
        justify-content: flex-start;
    }

    .jrn-featured-card {
        max-width: 100%;
    }

    .jrn-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .jrn-hero__container {
        padding: 100px 24px 48px;
    }

    .jrn-hero__title {
        font-size: 48px;
    }

    .jrn-featured-card__img-wrap {
        height: 220px;
    }

    .jrn-card {
        flex: 0 0 calc(80% - 10px);
        min-width: 240px;
    }

    .jrn-section {
        padding: 60px 0 80px;
    }

    .esc-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .jrn-hero__title {
        font-size: 40px;
    }

    .jrn-card {
        flex: 0 0 calc(85%);
    }

    .jrn-featured-card__content {
        padding: 18px 20px;
    }
}
