/*
  Extra rules on top of custom.css: the hero (single static image, no slider
  library), the vanilla-JS carousel used for the "Travel With Us" gallery and
  the "Our Partners" logo strip, and the booking iframe wrapper. None of this
  file touches the booking widget's own markup/script - only the container
  around it.
*/

/* Hero: existing image kept as the background, headline sits directly on the
   photo (no white card) with a strong left-to-right gradient for contrast. */
.hero-single {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.hero-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 10, 11, 0.88) 0%, rgba(10, 10, 11, 0.6) 45%, rgba(10, 10, 11, 0.2) 75%);
}

.hero-single .container {
    position: relative;
    z-index: 1;
}

.hero-single .content-box {
    width: 100%;
    padding: 0;
}

.hero-single .content-box h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background-color: transparent;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-single .content-box h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    padding: 16px 0 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    max-width: 640px;
}

.hero-single .content-box .btn-1 {
    margin-right: 10px;
    background-color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 36px;
    color: #fff !important;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.hero-single .content-box .btn-1:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.hero-single .content-box .btn-2 {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 16px 36px;
    border-radius: var(--radius);
    color: #fff !important;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.hero-single .content-box .btn-2:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--text) !important;
}

@media (max-width: 767.98px) {
    .hero-single {
        min-height: unset;
        padding: 60px 0 40px;
    }

    .hero-single .content-box {
        display: none;
    }
}

/* Booking widget box: on mobile it's shown first (above the text), on desktop it's the right column 
.hero-booking-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: 0 30px 60px rgba(17, 18, 20, 0.22);
}*/

@media (max-width: 991.98px) {
    .hero-booking-box {
        margin-bottom: 24px;
    }
}

/* Booking widget wrapper on book-now.html */
#booking-iframe-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 6px;
    background: #fff;
}

/* Generic auto-sliding carousel (replacement for slick.js), used by the
   "Travel With Us" gallery and the "Our Partners" logo strip. */
.carousel-wrap {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* Gallery: 4 photos visible at a time */
.gallery-track .slide-item {
    flex: 0 0 25%;
    max-width: 25%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 6px;
}

.gallery-track .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.5s;
}

.gallery-track .slide-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 767.98px) {
    .gallery-track .slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Partners: 4 logos visible at a time on desktop, each in its own hairline-bordered card */
.partner-track .slide-item {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.partner-track .slide-item .img-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    padding: 22px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.partner-track .slide-item .img-box:hover {
    border-color: var(--border-strong);
}

.partner-track .slide-item .img-box img {
    width: 100%;
    max-width: 150px !important;
}

@media (max-width: 767.98px) {
    .partner-track .slide-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }
}
