/* ================================================================
   SKIPPER – Maritime Theme CSS
   Farby: Navy Dark, Teal, Gold
   ================================================================ */

/* ── Variables ── */
:root {
    --navy-dark:  #0a1628;
    --navy:       #112240;
    --navy-light: #1b3461;
    --teal:       #2a9d8f;
    --teal-light: #3bb8aa;
    --gold:       #c9a84c;
    --gold-light: #e0bc6e;
    --white:      #ffffff;
    --text:       #e8eaf0;
    --text-muted: #8896ab;
    --border:     rgba(255,255,255,0.08);
    --card-bg:    rgba(255,255,255,0.04);
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 8px 32px rgba(0,0,0,0.35);
    --shadow-card:0 4px 20px rgba(0,0,0,0.25);
    --transition: 0.3s ease;
    --font-head:  'Playfair Display', Georgia, serif;
    --font-body:  'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--navy-dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ── */
.section__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.section__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.section__sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.btn--outline-nav {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition);
}
.btn--outline-nav:hover { background: var(--gold); color: var(--navy-dark); }

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ── Alerts ── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert--success {
    background: rgba(42,157,143,0.15);
    border: 1px solid var(--teal);
    color: var(--teal-light);
}
.alert--error {
    background: rgba(229,62,62,0.12);
    border: 1px solid #e53e3e;
    color: #fc8181;
}

/* ── Section ── */
.section { padding: 6rem 0; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.21rem;
    color: var(--white);
    font-family: var(--font-head);
}
.navbar__logo strong { color: var(--white); }
.navbar__logo:hover { color: var(--white); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar__links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.navbar__links a:hover { color: var(--gold); }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,22,40,0.85) 0%,
        rgba(10,22,40,0.5) 60%,
        rgba(10,22,40,0.3) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
}

.hero__sub {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero__title span { color: var(--gold); }

.hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
    margin-top: 4rem;
    display: flex;
    justify-content: flex-start;
}
.hero__scroll span {
    display: block;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

.hero__wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 1;
    line-height: 0;
}
.hero__wave svg { width: 100%; height: 60px; }

/* ── About ── */
.about { background: var(--navy-dark); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about__badge-num { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.about__badge-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }

.about__bio { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }

.about__certs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.cert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
}
.cert__icon { font-size: 1.5rem; }
.cert strong { display: block; font-size: 0.9rem; color: var(--white); }
.cert span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Trips ── */
.trips { background: var(--navy); }

.trips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.trip-card {
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.trip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.trip-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.trip-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.trip-card:hover .trip-card__img { transform: scale(1.06); }
.trip-card__img--placeholder {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    width: 100%; height: 100%;
}

.trip-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.trip-card__body { padding: 1.5rem; }
.trip-card__body *:not(.btn) { text-shadow: -1px -1px 0 rgba(0,0,0,0.8), 1px -1px 0 rgba(0,0,0,0.8), -1px 1px 0 rgba(0,0,0,0.8), 1px 1px 0 rgba(0,0,0,0.8); }
.trip-card__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.trip-card__route,
.trip-card__duration,
.trip-card__capacity {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.trip-card__desc { font-size: 0.9rem; color: var(--text-muted); margin: 0.75rem 0 1.25rem; }
.trip-card__cta { margin-top: auto; }

/* ── Gallery ── */
.gallery { background: var(--navy-dark); }

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.8rem;
    padding: 1rem 0.75rem 0.5rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__img-wrap { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox__img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); }
.lightbox__caption { color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-size: 0.9rem; }

.lightbox__close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ── Calendar ── */
.calendar-section { background: var(--navy); }

.calendar-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--white);
}

.btn--outline-sm {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.btn--outline-sm:hover { border-color: var(--gold); color: var(--gold); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: default;
    transition: background var(--transition);
    position: relative;
    gap: 1px;
}
.cal-day__num { line-height: 1; }
.cal-day__badge {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.9;
}
.cal-day--empty { background: transparent; }
.cal-day--past { color: var(--text-muted); opacity: 0.4; }
.cal-day--today {
    background: rgba(201,168,76,0.25);
    color: var(--gold);
    font-weight: 700;
    border: 1px solid var(--gold);
}
.cal-day--today .cal-day__badge { color: var(--gold); }
.cal-day--full {
    background: rgba(229,62,62,0.2);
    color: #fc8181;
}
.cal-day--partial {
    background: rgba(42,157,143,0.2);
    color: #4ecca3;
}
.cal-day--partial .cal-day__badge { color: #4ecca3; }
.cal-day--free:hover { background: rgba(255,255,255,0.05); }

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    justify-content: center;
    flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 0.4rem; }
.legend-item::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 4px;
}
.legend-item--partial::before { background: rgba(42,157,143,0.3); border: 1px solid #4ecca3; }
.legend-item--full::before { background: rgba(229,62,62,0.3); border: 1px solid #fc8181; }
.legend-item--today::before { background: rgba(201,168,76,0.25); border: 1px solid var(--gold); }

/* ── Reviews ── */
.reviews { background: var(--navy-dark); }

.reviews__carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.review-card__stars { margin-bottom: 1rem; font-size: 1.4rem; }
.star { color: var(--text-muted); }
.star--filled { color: var(--gold); }

.review-card__text {
    font-size: 1.05rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-card__author strong { color: var(--white); display: block; }
.review-card__trip { font-size: 0.82rem; color: var(--teal); }

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews__btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.reviews__btn:hover { background: var(--teal); border-color: var(--teal); }

.reviews__dots { display: flex; gap: 0.5rem; }
.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}
.reviews__dot.active { background: var(--gold); }

/* ── Contact / Rezervácia ── */
.contact { background: var(--navy); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}
.contact__detail a { color: var(--text); }
.contact__detail a:hover { color: var(--gold); }

.contact__form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(42,157,143,0.05);
}
.form-group select option { background: var(--navy); }

/* ── Footer ── */
.footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.footer__links h4,
.footer__contact h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__links ul li { margin-bottom: 0.5rem; }
.footer__links a { color: var(--text-muted); font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold); }

.footer__contact a { color: var(--text-muted); font-size: 0.9rem; }
.footer__contact a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__admin-link {
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.5;
    transition: opacity var(--transition);
}
.footer__admin-link:hover { opacity: 1; color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .about__badge { right: 1rem; }
    .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--navy-dark);
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 99;
    }
    .navbar__links.open { display: flex; }
    .navbar__toggle { display: flex; z-index: 100; }

    .form-row { grid-template-columns: 1fr; }
    .about__certs { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero__cta { flex-direction: column; }
    .hero__title { font-size: 2.5rem; }
    .contact__form { padding: 1.5rem; }
    .calendar-wrapper { padding: 1.25rem; }
}

/* ── Voyage Card (homepage preview) ── */
.voyages-preview { background: var(--navy-dark); }

.voyage-card {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}
.voyage-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); color: var(--text); }

.voyage-card__img-wrap { position: relative; height: 380px; overflow: hidden; }
.voyage-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.voyage-card:hover .voyage-card__img { transform: scale(1.04); }
.voyage-card__img--placeholder { width: 100%; height: 100%; background: var(--navy-light); }
.voyage-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.1) 60%);
}

.voyage-card__body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.voyage-card__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.voyage-card__date,
.voyage-card__boat {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: var(--teal); font-weight: 500;
}
.voyage-card__title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; }
.voyage-card__route { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--text-muted); }
.voyage-card__cta { display: inline-block; margin-top: 0.5rem; align-self: flex-start; }

/* ── Voyage Detail Page ── */
.voyage-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    background: var(--navy);
}
.voyage-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.voyage-hero__img { width: 100%; height: 100%; object-fit: cover; }
.voyage-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.4) 100%); }

.voyage-hero__content { position: relative; z-index: 1; }
.voyage-hero__back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--text-muted); font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}
.voyage-hero__back:hover { color: var(--gold); }
.voyage-hero__title { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.voyage-hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.voyage-hero__meta span {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: var(--teal); font-weight: 500;
}

.voyage-detail { background: var(--navy-dark); }
.voyage-detail__desc { max-width: 720px; margin: 0 auto 3rem; font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

.voyage-media-section { margin-bottom: 3.5rem; }
.voyage-media-section__title { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--gold); }

.voyage-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.voyage-gallery__item {
    position: relative; overflow: hidden; border-radius: var(--radius);
    cursor: pointer; aspect-ratio: 4/3;
    background: var(--navy-light);
}
.voyage-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.voyage-gallery__item:hover .voyage-gallery__img { transform: scale(1.06); }
.voyage-gallery__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(10,22,40,0.75);
    font-size: 0.8rem; color: var(--text-muted);
}

.voyage-videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.voyage-video__wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); }
.voyage-video__wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.voyage-video__caption { margin-top: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }

.voyage-detail__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

@media (max-width: 768px) {
    .voyage-card__img-wrap { height: 240px; }
    .voyage-card__body { padding: 1.5rem; }
    .voyage-card__title { font-size: 1.4rem; }
    .voyage-hero__title { font-size: 1.9rem; }
    .voyage-gallery { grid-template-columns: 1fr 1fr; }
    .voyage-videos { grid-template-columns: 1fr; }
}

/* ── Lang switcher ── */
.lang-switcher { display: flex; align-items: center; gap: 0.25rem; margin-left: 0.5rem; }
.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn--active { border-color: var(--gold); color: var(--gold); }
