/* ======================================
   DESTINATIONS BLOCK
====================================== */
.db-destinations {
    padding: 9rem 0;
    background: #FAFAFA;
}

.db-destinations__inner {
    max-width: 1680px;
    padding: 0 0.75rem;
    margin: 0 auto;
}

/* ── Header ── */
.db-destinations__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.db-destinations__header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.db-destinations__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #665200;
    background: #FFF5CC;
    border: 1px solid rgba(102, 82, 0, 0.18);
    border-radius: 999px;
    padding: 0.375rem 0.875rem;
    width: fit-content;
}

.db-destinations__badge svg {
    color: #665200;
    flex-shrink: 0;
}

.db-destinations__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #06064E;
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.db-destinations__title-highlight {
    color: #B31942;
    margin: 0;
}

.db-destinations__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.50);
    line-height: 1.3;
    margin: 0;
    max-width: 700px;
    text-transform: uppercase;
}

/* ── Slider wrap ── */
.db-destinations__slider-wrap {
    position: relative;
}

.db-destinations__track {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 26rem;
}

/* ── Slide ── */
.db-destinations__slide {
    display: none;
    position: relative;
    height: 26rem;
    border-radius: 1.25rem;
    overflow: hidden;
    animation: db-fadein 0.4s ease forwards;
}

.db-destinations__slide--active {
    display: flex;
    align-items: stretch;
    height: 26rem;
}

@keyframes db-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* BG image */
.db-destinations__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}


/* Content */
.db-destinations__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 28rem;
    justify-content: center;
}

.db-destinations__country {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.db-destinations__section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFAE5;
    margin: 0;
}

.db-destinations__section-label svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.db-destinations__desc {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.65;
    margin: 0;
    max-width: 23rem;
}

/* Tags */
.db-destinations__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.db-destinations__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: #FFF5CC;
    border: 1px solid rgba(102, 82, 0, 0.18);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: #665200;
    font-weight: 500;
}

.db-destinations__tag img {
    width: 0.875rem;
    height: 0.875rem;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(28%) sepia(90%) saturate(500%) hue-rotate(30deg);
}

/* CTA */
.db-destinations__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    color: #3a2200;
    border-radius: 999px;
    background: linear-gradient(90deg,
            #C69C6D 0%,
            #FFF5AC 58%,
            #C69C6D 100%);
    border: 1px solid rgba(180, 130, 30, 0.25);
    box-shadow:
        0 4px 12px rgba(180, 130, 40, 0.30),
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: filter 0.2s ease, transform 0.15s ease;
    margin-top: 0.5rem;
}

.db-destinations__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    color: #997A00;
}

/* Arrow inside slide */
.db-destinations__arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.db-destinations__arrow:hover {
    transform: translateY(-50%) translateX(3px);
    opacity: 0.8;
}

/* Dots */
.db-destinations__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.db-destinations__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: #FFF5CC;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.db-destinations__dot--active {
    background: #B31942;
    transform: scale(1.2);
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .db-destinations__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }

    .db-destinations__subtitle {
        text-align: right;
        max-width: 28rem;
    }
}

@media (min-width: 992px) {
    .db-destinations__track {
        min-height: 26rem;
    }

    .db-destinations__slide {
        min-height: 26rem;
    }

    .db-destinations__content {
        padding: 3rem 2.5rem 3rem 3rem;
        max-width: 45rem;
    }

    .db-destinations__arrow {
        right: 2rem;
    }
}

@media (min-width: 1200px) {
    .db-destinations__track {
        height: 36rem;
    }

    .db-destinations__slide,
    .db-destinations__slide--active {
        height: 36rem;
    }
}

@media (max-width: 767px) {

    .db-destinations {
        padding: 0rem 0rem 1.2rem 0rem;
    }

    /* ── Centered header ── */
    .db-destinations__header {
        align-items: center;
        text-align: center;
    }

    .db-destinations__badge {
        margin: 0 auto;
    }

    .db-destinations__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .db-destinations__title-highlight {
        display: block;
    }

    .db-destinations__subtitle {
        text-align: center;
        max-width: 100%;
        font-size: 0.9375rem;
    }

    /* ── Tall portrait slide ── */
    .db-destinations__track,
    .db-destinations__slide,
    .db-destinations__slide--active {
        height: 44rem;
    }

    /* Content fills full slide height so margin-top: auto works */
    .db-destinations__slide--active {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
    }

    .db-destinations__slide:not(.db-destinations__slide--active) {
        display: none;
    }

    .db-destinations__content {
        flex: 1;
        padding: 1.5rem 1.25rem 2rem !important;
        max-width: 100% !important;
        justify-content: flex-start;
        width: 100%;
        gap: 1.125rem !important;
    }

    .db-destinations__country {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin: 0;
    }

    .db-destinations__section-label {
        margin: 0;
    }

    .db-destinations__desc {
        margin: 0;
    }

    .db-destinations__tags {
        gap: 0.375rem;
        margin: 0;
        margin-top: auto;
    }

    .db-destinations__arrow {
        right: 0.875rem;
        left: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        font-size: 2rem;
    }

    .db-destinations__tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }

    /* "+N more" tag style */
    .db-destinations__tag--more {
        background: rgba(255, 245, 204, 0.6);
        font-style: normal;
    }
}

/* ── ≥1200px: show all tags, hide "+N more" ── */
@media (min-width: 1200px) {
    .db-destinations__tag--extra {
        display: inline-flex;
    }

    .db-destinations__tag--more {
        display: none;
    }
}

/* ── <1200px: hide extras, show "+N more" ── */
@media (max-width: 1199px) {
    .db-destinations__tag--extra {
        display: none;
    }

    .db-destinations__tag--more {
        display: inline-flex;
    }
}

@media (max-width: 575px) {

    .db-destinations__country {
        font-size: 3.5rem !important;
        margin: 0;
    }

    .db-destinations__track,
    .db-destinations__slide,
    .db-destinations__slide--active {
        height: 42rem;
    }

    .db-destinations__content {
        padding: 5rem 1rem 5rem !important;
        gap: 1rem !important;
    }

    .db-destinations__arrow {
        right: 0.875rem;
        left: auto;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        font-size: 2rem;
    }
}