/* =========================================================
   HOME BRANDS SECTION
========================================================= */
#home-brands-section {
    background: #ffffff;
    padding: 50px 0 50px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#home-brands-section .brands-title {
    font-size: 30px;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'LibertinusDisplay', serif;
    font-weight: 500;
}

#home-brands-section .brands-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 420px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

#home-brands-section .brand-card {
    width: 100%;
    min-height: 200px;
    background: #fff;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    transition: all .3s ease;
}

#home-brands-section .brand-card img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
}

/* navigation */
#home-brands-section .brand-swiper-prev,
#home-brands-section .brand-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #a59c83;
    border: 1px solid #a59c83;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
    color: #fff;
}

#home-brands-section .brand-swiper-prev {
    left: 0;
}

#home-brands-section .brand-swiper-next {
    right: 0;
}

#home-brands-section .brand-swiper-prev:hover,
#home-brands-section .brand-swiper-next:hover {
    background: #a59c83;
    color: #fff;
}

.brand-swiper-element swiper-slide {
    height: auto;
    display: flex;
}

/* =========================================================
   HOME DINE SECTION
========================================================= */
#home-dine-section {
    padding-top: 50px;
}

.slider-dine {
    width: 100%;
    overflow: hidden;
}

.slider-dine .dine-slide {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.slider-dine .dine-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   DESTINATION CAROUSEL
========================================================= */
#home-destination-carousel .destination-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

#home-destination-carousel .destination-image-wrapper {
    position: relative;
    overflow: hidden;
}

#home-destination-carousel .destination-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#home-destination-carousel .destination-card:hover .destination-image {
    transform: scale(1.05);
}

#home-destination-carousel .destination-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0));
}

#home-destination-carousel .destination-title {
    margin-bottom: 4px;
    color: #fff;
    font-family: 'Epunda Slab', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

#home-destination-carousel .destination-location {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {

    #home-brands-section {
        padding: 0px;
    }

    #home-brands-section .brands-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    #home-brands-section .brands-title {
        font-size: 34px;
        line-height: 1.2;
    }

    #home-brands-section .brands-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    #home-brands-section .brand-card {
        min-height: 265px;
        padding: 25px;
    }

    #home-brands-section .brand-card img {
        height: 140px;
    }

    .slider-dine .dine-slide {
        height: 500px;
    }

    #home-destination-carousel .destination-image {
        height: 340px;
    }

    #home-destination-carousel .destination-overlay {
        padding: 18px;
    }

    #home-destination-carousel .destination-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    #home-destination-carousel .destination-location {
        font-size: 14px;
    }

    
}
