@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url(./root.css);
@import url(./header.css);
@import url(./footer.css);



/* =============================================
   SECTIONS GÉNÉRALES
============================================= */

section:nth-child(even)  {
     background: #f8f9fa;
   
}
section {
    padding: 3rem 0;
   
}
/* =============================================
   HEADER DE SECTION
============================================= */

.destinations-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem !important;
}

.destinations-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-site-2);
    margin-bottom: 0.35rem;
    letter-spacing: -0.3px;
}

.destinations-subtitle {
    font-size: 0.82rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.2rem;
}

.destinations-count {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
}

/* =============================================
   NAVIGATION SWIPER BOUTONS
============================================= */

.swiper-navigation {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius);
    background: #fff;
    border: 1.5px solid #e0e0e0;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    position: static;
    transform: none;
}

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

/* Navigation positionnée sur les bords de la section pour tous les swipers */




/* Navigation pour les swipers dans des conteneurs spécifiques */
.swiper-button-prev,
 .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

 .swiper-button-prev {
    left: 0;
}

 .swiper-button-next {
    right: 0;
    border: 1px solid var(--color-site-2);
    color: var(--color-site-2);
}

/* ==========================================================================
   SWIPER PAGINATION
   ========================================================================== */

/* Pagination container */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    z-index: 10;
}

/* Pagination traits (lignes) */
.swiper-pagination-bullet {
    width: 18px;
    height: 3px;
    background-color: #d1d5db;
    opacity: 1;
    margin: 0 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Active pagination trait */
.swiper-pagination-bullet-active {
    background-color: var(--color-site-1);
    transform: scaleX(1.5);
    transform-origin: center;
}



/* =============================================
   SWIPER PADDING
============================================= */

.destinations-swiper,
.hotels-swiper,
.hotels-recommandes-swiper,
.circuits-swiper {
    padding: 0.5rem 0 1.5rem;
    overflow: hidden;
}

/* =============================================
   DESTINATION CARD — Design inspiré de la photo
============================================= */

.destination-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    height: 100%;
    margin: 0 6px;
    display: flex;
    flex-direction: column;
}

/* --- IMAGE WRAPPER --- */

section .destination-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* --- BADGE PROMO (haut gauche, rouge) --- */






/* --- OVERLAY GRADIENT BAS D'IMAGE --- */

.destination-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- CONTENT AREA --- */

.destination-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

/* --- NOM DE L'HÔTEL / DESTINATION --- */

.destination-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

/* --- ÉTOILES + VILLE --- */

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.45rem;
}

.hotel-stars i {
    font-size: 12px;
    color: #f5a623;
}

.hotel-city {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 6px;
    font-weight: 400;
}

/* --- LIBELLÉ ARRANGEMENT / TOURS --- */

.destination-tours {
    font-size: 0.8rem;
    color: var(--color-site-1);
    margin-bottom: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Badge visa */
.badge-visa {
    position: absolute;
    z-index: 10;
    background-color: var(--color-site-1);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    padding: 6px 15px;
    display: inline-flex;
    border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    bottom: 30px;
    top: auto;
    left: 0;
}

.destination-price {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 10px;
}

/* --- SÉPARATEUR DISCRET --- */

.destination-content::before {
    display: none;
}

/* --- PRIX --- */

.price-label {
    font-size: 11px;
    color: #6b7280;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 500;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    display: inline-block;
    letter-spacing: -0.5px;
}

.price-unit {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-left: 4px;
    font-weight: 400;
}

/* --- BOUTON VOIR DÉTAILS --- */

.btn-destination {
    display: inline-block;
    width: auto;
    min-width: 100px;
    padding: 8px 16px;
    background: var(--color-site-2);
    color: #fff;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

/* --- BOUTON VOIR TOUT --- */

.btn-view-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #ee7b2a;
    color: #fff;
    font-family: var(--font-rubik);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: var(--border-radius);
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    cursor: pointer;
    border: none;
}

.btn-view-all::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #224086;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s;
}

/* =============================================
   NAV PILLS (onglets catégories hôtels)
============================================= */

.nav-tab {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-tab::-webkit-scrollbar {
    display: none;
}

.nav-tab .nav-pills {
    gap: 0.5rem;
    flex-wrap: nowrap;
    padding-bottom: 4px;
}

.nav-tab .nav-link {
    border-radius: var(--border-radius) !important;
    padding: 7px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6c757d;
    background: #fff;
    border: 1.5px solid var(--color-site-2);
    white-space: nowrap;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.nav-tab .nav-link.active {
    background: var(--color-site-2);
    color: #fff;
    border-color: var(--color-site-2);
    box-shadow: 0 4px 12px rgba(34, 64, 134, 0.2);
}

/* =============================================
   VARIABLES LOCALES (Design Photo)
============================================= */

:root {
    --primary-red-action: #d85444;
    --text-muted: #9ca3af;
    --border-light: #f0f0f0;
}

/* =============================================
   CONTAINER CUSTOM
============================================= */

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   HERO BANNER - DESIGN DEMANDÉ (Vague + Overlay)
============================================= */
@media (min-width: 992px) {
.hero-banner {
    position: relative;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay sombre progressif */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* L'effet de vague (Shape Divider) en bas */
.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 100%;
    text-align: center;
    padding-bottom: 80px;
}

.destination-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}
}
/* =============================================
   FILTRE MODERNE PREMIUM — FULL RESPONSIVE
============================================= */

.filter {
    position: relative;
    z-index: 100;
    margin-top: -60px;
    padding: 0 15px 30px;
}

/* =============================================
   CARD
============================================= */

.bg-section-filter {
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid #e9eef5;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

/* =============================================
   ROW
============================================= */

.bg-section-filter .row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid #e9eef5;
    border-radius: 12px;
    background: #fff;
}

/* =============================================
   COLUMNS
============================================= */

.bg-section-filter [class*="col-"] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: 72px;
    padding: 14px 16px;
    transition: all .25s ease;
}

/* Vertical separators */
.bg-section-filter [class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    width: 1px;
    height: 56%;
    background: #eee;
}

/* =============================================
   LABELS
============================================= */

.bg-section-filter label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #94a3b8;
    padding-left: 22px;
}

/* =============================================
   INPUTS
============================================= */

.bg-section-filter .form-control,
.bg-section-filter select {
    width: 100%;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-site-2);
    line-height: 1.2;
    min-height: 22px;
}

/* Placeholder */
.bg-section-filter .form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
    font-weight: 400;
}

/* =============================================
   ICON INPUTS
============================================= */

.bg-section-filter .input-icon,
.bg-section-filter .input-calendar {
    position: relative;
}

/* Icons */
.bg-section-filter .input-icon::before,
.bg-section-filter .input-calendar::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: auto;
    top: 8px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--color-site-1);
    opacity: .8;
    transition: .2s ease;
}

.bg-section-filter .input-icon::before {
    content: "\f3c5";
}

.bg-section-filter .input-calendar::before {
    content: "\f133";
}

.bg-section-filter .input-users::before {
    content: "\f0c0";
}

/* =============================================
   BUTTON
============================================= */

#btnSearch {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: var(--color-site-1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(238,123,42,.16);
}

/* Search icon */
#btnSearch::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 14px;
}

/* Active */
#btnSearch:active {
    transform: translateY(0);
}

/* =========================================
   FIX ALIGNEMENT + BUTTON UNIFORME
========================================= */

/* Colonnes plus uniformes */
.bg-section-filter [class*="col-"] {
    padding: 8px 16px;
    min-height: 76px;
}

/* Colonne bouton */
.bg-section-filter .col-btn-search {
    padding: 0 !important;
    flex: 0 0 190px;
    max-width: 190px;
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* Supprimer séparateur avant bouton */
.bg-section-filter .col-btn-search::after {
    display: none !important;
}

/* Bouton uniforme */
#btnSearch {
    width: calc(100% - 4px);
    height: 56px;
    margin: 0 12px 0 0;
   border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    border: none;
    background: var(--color-site-1);
    color: #fff;
    transition: .25s ease;
    box-shadow: 0 6px 18px rgba(238,123,42,.18);
}

/* Retirer ancien before */
#btnSearch::before {
    margin-right: 0;
}
 .flex-lg-2 {
        flex: 2 !important;
    }
/* =========================================
   CIRCUITS HORIZONTAL CARDS
========================================= */

.circuits.bg-section .destination-card.horizontal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 260px;
}

/* Image à gauche */
.circuits.bg-section .destination-image-wrapper-horizantal {
    width: 42%;
    position: relative;
    flex-shrink: 0;
    display: flex;
}

.circuits.bg-section .destination-image-wrapper-horizantal .destination-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Contenu à droite */
.circuits.bg-section .destination-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.circuits.bg-section .destination-name {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-site-2);
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Infos visa */
.circuits.bg-section .destination-info {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.circuits.bg-section .destination-info p {
    margin-bottom: 4px;
}

/* Prix + Bouton */
.circuits.bg-section .destination-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.circuits.bg-section .price-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.circuits.bg-section .price-amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-site-2);
}

.circuits.bg-section .price-unit {
    color: var(--text-color);
    font-size: 1rem;
}

/* ==========================================================================
   BANNIÈRE MODERNE — CTA EN BAS À DROITE
   ========================================================================== */

#honeymoon-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

/* Container */
#honeymoon-banner .container-fluid {
    position: relative;
  
}

/* Wrapper image */
#honeymoon-banner .banner-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

/* Image */
#honeymoon-banner .banner-bg {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* ==========================================================================
   HALF LINEAR GRADIENT
   Gradient seulement sur la partie droite/bas
   ========================================================================== */

#honeymoon-banner .banner-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top left,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.45) 28%,
            rgba(0, 0, 0, 0.15) 48%,
            rgba(0, 0, 0, 0) 70%
        );
}

/* ==========================================================================
   CONTENU
   ========================================================================== */

#honeymoon-banner .banner-content {
    position: absolute;
    right: 40px;
    bottom: 35px;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */

#honeymoon-banner .banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    background: var(--color-site-1);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius);

    backdrop-filter: blur(6px);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.18),
        0 4px 12px rgba(0,0,0,0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* =========================================
   PARTNERS SECTION
========================================= */

.partners-section {
    background: #fff;
    overflow: hidden;
}

.section-title .subtitle {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(13,110,253,0.08);
    color: var(--color-site-1);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title .title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

/* =========================================
   SECTION PARTENAIRES
========================================= */

.partenaires {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.partenaires .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

/* =========================================
   SWIPER
========================================= */

.partnersSwiper {
    padding: 15px 5px 10px;
}

.partnersSwiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

/* =========================================
   CARD PARTENAIRE
========================================= */

.partner-card {
    position: relative;
    height: 120px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.04),
        0 2px 8px rgba(0,0,0,0.03);
}

/* Glow effect */
.partner-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(59,130,246,0.35),
        rgba(99,102,241,0.15),
        rgba(255,255,255,0)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* =========================================
   IMAGE
========================================= */

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: all 0.35s ease;
}

/* =============================================
   TAB CONTENT FADE
============================================= */

.tab-pane {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.etiquette-badge {
    background-color: rgb(135, 211, 0);
    color: #fff;

}

.promo-badge {

    background-color: #e63946;
    bottom: 60px;


}
.partnersSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}



