/* ========================================
   DESTINATION PAGE
   ======================================== */

.destination-page-body {
    background: #1f2d3d;
}

/* ========================================
   Floating menu toggle (hamburger)
   ======================================== */
.dest-menu-toggle {
    position: fixed;
    top: 1.5rem;
    left: 1.75rem;
    z-index: 2000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(44, 62, 80, 0.15);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dest-menu-toggle:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    transform: scale(1.05);
}

.dest-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.destination-page-body.menu-open .dest-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.destination-page-body.menu-open .dest-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.destination-page-body.menu-open .dest-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hide navbar by default — only show when menu is toggled open */
.destination-page-body .dest-navbar {
    display: none;
}

.destination-page-body.menu-open .dest-navbar {
    display: block;
    animation: destNavFadeIn 0.25s ease;
}

@keyframes destNavFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navbar override for destination page — dark text on white left panel */
.dest-navbar .nav-link,
.dest-navbar .logo {
    color: var(--color-primary);
}

.dest-navbar .nav-link {
    color: var(--color-primary);
    text-shadow: none;
}

.dest-navbar .nav-link::after {
    background: var(--color-primary);
}

.dest-navbar .nav-toggle span {
    background: var(--color-primary);
}

.dest-navbar .nav-social a {
    color: rgba(44, 62, 80, 0.7);
    filter: none;
}

.dest-navbar .nav-social a:hover {
    color: var(--color-primary);
}

.dest-navbar .nav-account-link {
    background: rgba(44, 62, 80, 0.08);
    color: var(--color-primary);
}

.dest-navbar .nav-account-link:hover {
    background: rgba(44, 62, 80, 0.18);
}

.dest-navbar .nav-account-link svg {
    stroke: var(--color-primary);
}

.dest-navbar .nav-search-inline {
    background: rgba(44, 62, 80, 0.06);
    border-color: rgba(44, 62, 80, 0.18);
}

.dest-navbar .nav-search-inline:focus-within {
    background: rgba(44, 62, 80, 0.1);
    border-color: rgba(44, 62, 80, 0.35);
}

.dest-navbar .nav-search-inline svg {
    color: rgba(44, 62, 80, 0.6);
}

.dest-navbar .nav-search-input {
    color: var(--color-primary);
}

.dest-navbar .nav-search-input::placeholder {
    color: rgba(44, 62, 80, 0.5);
    font-style: italic;
}

/* ========================================
   Hero Section — 30/70 split, 100vh
   ======================================== */
section.dest-hero {
    display: flex;
    flex-direction: row;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Left panel — navy, breadcrumb + centered content */
.dest-hero-left {
    flex: 0 0 30%;
    width: 30%;
    background: #1f2d3d;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
    position: relative;
    box-sizing: border-box;
}

.dest-breadcrumb {
    padding-top: 5.5rem;
    padding-left: 0.5rem;
    font-family: var(--font-body);
    font-size: clamp(0.825rem, 1.2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #eef1f5;
    line-height: 1.1;
}

.dest-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dest-breadcrumb a:hover {
    color: #e8c17a;
}

.dest-breadcrumb-sep {
    margin: 0 0.45rem;
    opacity: 0.6;
}

.dest-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.dest-hero-eyebrow {
    font-family: 'Caveat', 'Dancing Script', cursive;
    font-size: 2.4rem;
    font-weight: 500;
    color: #e8c17a;
    line-height: 1;
    margin-bottom: 0.25rem;
    transform: rotate(-4deg);
    align-self: flex-start;
    margin-left: -2rem;
}

.dest-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f3efe3;
    line-height: 1;
    margin: 0 0 1.75rem;
}

.dest-hero-description {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.75;
    color: #a8b3c0;
    text-align: center;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Right panel — full-bleed photo */
.dest-hero-right {
    flex: 0 0 70%;
    width: 70%;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.dest-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}

/* Responsive — stack only on small mobile */
@media (max-width: 600px) {
    section.dest-hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .dest-hero-left,
    .dest-hero-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .dest-hero-left {
        padding: 2rem 1.5rem;
        min-height: 60vh;
    }

    .dest-breadcrumb {
        padding-top: 5rem;
    }

    .dest-hero-right {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .dest-hero-eyebrow {
        font-size: 2rem;
    }

    .dest-hero-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   Overview Section — 42/58 split, 100vh, dark navy
   ======================================== */
section.dest-overview {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    margin: 0;
    padding: 0 0 0 10%;
    overflow: hidden;
    background: #ffffff;
    color: #2c3e50;
}

.dest-overview-left {
    flex: 0 0 42%;
    width: 42%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 44px 28px 40px 28px;
    display: flex;
    flex-direction: column;
}

.dest-overview-right {
    flex: 0 0 58%;
    width: 58%;
    box-sizing: border-box;
    overflow: hidden;
}

.dest-overview-heading {
    font-family: 'Caveat', cursive;
    font-size: 62px;
    font-weight: 600;
    color: #1f2d3d;
    margin: 0 0 0 8px;
    line-height: 1;
    letter-spacing: 0.5px;
}

.dest-overview-heading .at-word {
    display: inline-block;
    transform: translateY(2px) rotate(-3deg);
}

.dest-overview-map {
    display: block;
    margin: 18px 0 0;
}

.map-wrapper {
    display: block;
    width: 100%;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.dest-overview-links {
    margin-top: 24px;
    padding-left: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.overview-link {
    font-family: 'Inter', 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    font-size: 21px;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 0.1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.overview-link .arr {
    font-family: 'JetBrains Mono', 'Courier Prime', monospace;
    font-weight: 400;
    opacity: 0.85;
}

.overview-link:hover {
    color: #e8c17a;
    transform: translateX(3px);
}

/* Right side — 3 cards */
.dest-overview-right {
    padding: 44px 36px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}

.dest-article {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: center;
}

.article-image {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    background: #dfe4ea;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.article-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1f2d3d;
    line-height: 1.3;
    letter-spacing: 0.1px;
}

.article-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #5a6772;
    margin: 0 0 16px;
    max-width: 34ch;
}

.article-read-more {
    font-family: 'JetBrains Mono', 'Courier Prime', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 62, 80, 0.4);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.article-read-more:hover {
    color: #e8c17a;
    border-color: #e8c17a;
}

/* Responsive */
@media (max-width: 900px) {
    section.dest-overview {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .dest-overview-left,
    .dest-overview-right {
        flex: 0 0 auto;
        width: 100%;
        overflow: visible;
    }

    .dest-overview-left {
        padding: 40px 24px 32px;
    }

    .dest-overview-right {
        padding: 32px 24px 48px;
    }

    .dest-overview-heading {
        font-size: 48px;
    }

    .dest-article {
        grid-template-columns: 160px 1fr;
    }
}

@media (max-width: 480px) {
    .dest-article {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Planning Tools Section — 75vh, cream
   ======================================== */
section.dest-plan {
    height: 75vh;
    min-height: 560px;
    width: 100%;
    background: #efe9d9;
    padding: 64px 72px 72px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.plan-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 72px;
    color: #8a9088;
    line-height: 1;
    margin: 0 0 48px 40px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 330px));
    justify-content: center;
    gap: 36px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    background: transparent;
    border: 2px solid #2a3542;
    border-radius: 20px;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2a3542;
    height: 100%;
}

.plan-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    justify-content: center;
    width: 100%;
}

.plan-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2a3542;
    line-height: 1.25;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

.plan-ico {
    width: 26px;
    height: 26px;
    stroke: #2a3542;
    fill: none;
    stroke-width: 1.6;
    flex-shrink: 0;
}

.plan-card p {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: #2a3542;
    text-align: center;
    margin: 0;
    max-width: 24ch;
}

/* ========================================
   Itineraries Section — 100vh, white bg
   ======================================== */
section.dest-itin {
    height: 100vh;
    min-height: 640px;
    width: 100%;
    background: #1f2d3d;
    padding: 44px 64px 64px 140px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.itin-title {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 68px;
    line-height: 1;
    color: #f3efe3;
    margin: 0;
    letter-spacing: 0.5px;
}

.itin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    column-gap: 40px;
    align-items: stretch;
    min-height: 0;
    padding: 0 40px;
}

.itin-card {
    display: grid;
    grid-template-rows: 1fr auto;
    row-gap: 10px;
    min-width: 0;
    height: 100%;
    max-height: 70vh;
    align-self: center;
    justify-items: center;
}

.itin-thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #263545;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.itin-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.itin-caption {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #eef1f5;
    text-align: center;
    line-height: 1.35;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 20ch;
}

.itin-explore-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: #eef1f5;
    text-decoration: none;
    border-bottom: 1px solid rgba(228, 232, 238, 0.6);
    padding-bottom: 3px;
    align-self: center;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.itin-explore-link:hover {
    color: #e8c17a;
    border-color: #e8c17a;
}
