/* =========================================================
   STICKSPHOTO TRAVEL SECTION
   ========================================================= */

body.travel-page {
    display: block !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #101010;
    color: #fff;
}

body.travel-page .site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
}

.travel-main,
.destination-main {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 35px 0 100px;
}

.travel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 70px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.travel-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.travel-breadcrumb a:hover {
    color: #fff;
}

.travel-introduction,
.destination-introduction {
    max-width: 850px;
    margin-bottom: 55px;
}

.travel-eyebrow {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.travel-introduction h1,
.destination-introduction h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.travel-description,
.destination-description {
    max-width: 700px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.7;
}

.travel-destinations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.travel-card {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    border-radius: 18px;
    background: #242424;
    color: #fff;
    text-decoration: none;
}

.travel-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.travel-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.25) 58%,
            rgba(0, 0, 0, 0.06) 100%
        );
}

.travel-card-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 34px;
}

.travel-card-region {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.travel-card-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.035em;
}

.travel-card-action {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 650;
}

.travel-card:hover img {
    transform: scale(1.045);
}

.travel-card:hover .travel-card-action {
    color: #fff;
}

.travel-note {
    max-width: 650px;
    margin-top: 90px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.travel-note h2 {
    margin: 0;
    font-size: 1.5rem;
}

.travel-note p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

/* =========================================================
   INDIVIDUAL DESTINATION PAGE
   ========================================================= */

.destination-placeholder {
    max-width: 850px;
    min-height: 300px;
    padding: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.destination-placeholder-icon {
    display: block;
    margin-bottom: 24px;
    font-size: 2.4rem;
}

.destination-placeholder-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}

.destination-placeholder-text p {
    margin-top: 0;
}

.destination-back-button {
    display: inline-flex;
    margin-top: 28px;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.destination-back-button:hover {
    background: #fff;
    color: #111;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .travel-destinations {
        grid-template-columns: 1fr;
    }

    .travel-card {
        min-height: 470px;
    }

}

@media (max-width: 650px) {

    .travel-main,
    .destination-main {
        width: min(100% - 28px, 1400px);
        padding-top: 24px;
    }

    .travel-breadcrumb {
        margin-bottom: 48px;
    }

    .travel-card {
        min-height: 400px;
    }

    .travel-card-content {
        padding: 26px;
    }

    .destination-placeholder {
        padding: 30px;
    }

}
.travel-card {
    z-index: 1;
    cursor: pointer;
}

.travel-card-overlay,
.travel-card-content {
    pointer-events: none;
}