/* Header */
.ombaka-header h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.ombaka-header h1 span {
    font-size: clamp(3rem, 8vw, 5rem);
}

.ombaka-header p.lead {
    text-align: center;
    font-weight: 400;
    font-size: clamp(.75rem, 1.25rem, 1.3rem);
    color: rgba(0, 0, 0, 0.7);
}

section.indicators .indicators-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

section.indicators .indicators-grid .counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

section.indicators .indicators-grid .counter .number {
    color: #1a1a1a;
    font-size: clamp(.75rem, 1rem, 1.1rem);
    font-weight: 700;
}

section.indicators .indicators-grid .counter .number-desc {
    color: #949494;
    font-size: clamp(.75rem, 1rem, 1.1rem);
    font-weight: 500;

}

section.partners .partners-list {
    display: flex;
    justify-content: space-between;

    overflow-x: auto;
    gap: 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.swiperDestinations {
    padding: 40px 0 60px 0;
    /* remove horizontal padding */
    overflow: hidden;
    position: relative;
}

.swiperDestinations .swiper-wrapper {
    align-items: center;
    /* keeps scaled slides vertically centered */
}

.swiperDestinations .swiper-slide {
    height: 460px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
    opacity: 0.75;
}

/* The centered/highlighted slide */
.swiperDestinations .swiper-slide-active {
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
}

.swiperDestinations .swiper-slide .dest-card {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.swiperDestinations .swiper-slide .dest-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.swiperDestinations .swiper-slide .dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.swiperDestinations .swiper-slide-active .dest-card::after {
    opacity: 1;
}

.swiperDestinations .swiper-slide .dest-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 1rem;
    text-align: center;
    padding: 0 2rem 1rem 2rem;
    color: #FFF;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.swiperDestinations .swiper-slide-active .dest-card-overlay {
    opacity: 1;
}

.swiperDestinations .swiper-slide .dest-card-overlay h6 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.swiperDestinations .swiper-slide .dest-card-overlay p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}

/* Arrows */
.swiperDestinations .swiper-button-next,
.swiperDestinations .swiper-button-prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #333;
    background: #fff;
}

.swiperDestinations .swiper-button-next::after,
.swiperDestinations .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* Pagination */
.swiperDestinations .swiper-pagination {
    bottom: 10px !important;
}

.swiperDestinations .swiper-pagination-bullet {
    width: 12px;
    height: 8px;
    border-radius: 4px;
    background: #d9d9d9;
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

.swiperDestinations .swiper-pagination-bullet-active {
    width: 45px;
    background: #B8781C;
}

.swiperDestinations .swiper-slide .dest-card {
    transition: margin 0.4s ease;
}

.swiperDestinations .swiper-button-next,
.swiperDestinations .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
}

.swiperDestinations .swiper-button-next svg,
.swiperDestinations .swiper-button-prev svg {
    display: none;
}

.swiperDestinations .swiper-button-next::after,
.swiperDestinations .swiper-button-prev::after {
    content: "";
    display: none;
}

.swiperDestinations .swiper-button-prev {
    background-image: url('../../img/v2/left-arrow.png');
}

.swiperDestinations .swiper-button-next {
    background-image: url('../../img/v2/right-arrow.png');
}

.swiperDestinations .swiper-button-next:hover,
.swiperDestinations .swiper-button-prev:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}


.swiperNews {
    padding-bottom: 50px;
    /* space for the pagination */
}

.swiperNews .swiper-slide {
    height: auto;
    /* allow all cards to stretch equally */
}

/* Card */
.news-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.news-card-title {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #111;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.news-card-date {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.news-card-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 0.75rem 1.75rem;
    border: 1px solid #333;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: auto;
    /* pushes button to the bottom */
}

.news-card-btn:hover {
    background: #333;
    color: #fff;
}

/* Pagination */
.swiperNews .swiper-pagination {
    bottom: 0 !important;
}

.swiperNews .swiper-pagination-bullet {
    width: 12px;
    height: 8px;
    border-radius: 4px;
    background: #d9d9d9;
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

.swiperNews .swiper-pagination-bullet-active {
    width: 45px;
    background: #B8781C;
}


/* Mobile */
@media (max-width: 768px) {
    .swiperDestinations {
        padding: 20px 15px 50px 15px;
    }

    .swiperDestinations .swiper-slide {
        height: 420px;
        transform: scale(1);
        opacity: 1;
    }

    .swiperDestinations .swiper-slide .dest-card::after,
    .swiperDestinations .swiper-slide .dest-card-overlay {
        opacity: 1;
    }

    .swiperDestinations .swiper-button-next,
    .swiperDestinations .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {}

@media (min-width: 769px) {
    .ombaka-header h1 {
        line-height: 65px;
    }

    .swiperDestinations .swiper-slide-prev .dest-card {
        margin-left: 50px;
    }

    .swiperDestinations .swiper-slide-next .dest-card {
        margin-left: -50px;
    }

    .swiperDestinations {
        max-width: 90%;
    }
}

@media (min-width: 900px) {
    .swiperDestinations {
        max-width: 75%;
    }
}

@media (max-width: 768px) {
    section.indicators .indicators-grid {
        display: block;
    }

    section.partners .partners-list img {
        width: 100px;
        height: auto;
    }

    section.indicators .indicators-grid .counter {
        margin-bottom: 1.5rem;
    }
}



@media (max-width: 991px) {
    section.indicators .indicators-grid .counter .number{
        color: #A56A04;
    }

    section.indicators .indicators-grid .counter .number-desc{
        font-weight: 700;
        font-size: 1.25rem;
    }

}
