/* ======================================
   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-left: 0.4em;
}

.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;
}

/* Diagonal colour overlay — 3 hard bands: solid red | dark crimson | gold */
.db-destinations__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(70deg,
            var(--slide-accent, #B31942) 0%,
            var(--slide-accent, #B31942) 30%,
            rgba(130, 15, 32, 0.93) 5%,
            rgba(130, 15, 30, 0.93) 50%,
            rgba(195, 155, 30, 0.72) 50%,
            rgba(195, 155, 30, 0.72) 62%,
            transparent 55%);
}

/* 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: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

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

.db-destinations__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin: 0;
    max-width: 22rem;
}

/* 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;
    background: linear-gradient(-135deg, #FFEB99 0%, #E0B21C 100%);
    border: none;
    border-radius: 999px;
    color: #997A00;
    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;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.db-destinations__arrow:hover {
    background: rgba(255, 255, 255, 0.42);
}

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

.db-destinations__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
}

.db-destinations__dot--active {
    background: #B31942;
    width: 1.5rem;
}

/* ── 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: 26rem;
    }
}

@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 {
        min-height: 28rem;
    }

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

@media (max-width: 767px) {
    /* ── 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;
        margin-left: 0;
    }

    .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: 31rem;
    }

    /* Push content to bottom */
    .db-destinations__slide--active {
        align-items: flex-end;
    }

    .db-destinations__content {
        padding: 1.75rem 1.25rem;
        max-width: 100%;
        justify-content: flex-end;
        width: 100%;
        gap: 1.25rem;
    }

    .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;
    }

    .db-destinations__arrow {
        right: 0.875rem;
        top: 50%;
        width: 2.25rem;
        height: 2.25rem;
    }

    .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;
    }
}

@media (max-width: 575px) {
    .db-destinations__track,
    .db-destinations__slide,
    .db-destinations__slide--active {
        height: 28rem;
    }

    .db-destinations__content {
        padding: 1.5rem 1rem;
    }

    .db-destinations__arrow {
        right: 0.75rem;
        width: 2rem;
        height: 2rem;
    }
}