    body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    .navbar {
    background-color: rgba(17, 65, 96, 0.9); /* Couleur de fond plus visible */
    padding: 1rem 2rem;
    position: relative; /* Fixed pour que la navbar reste en haut */
    width: 100%;
    z-index: 1000;
    }

    .navbar-brand img {
    height: 50px;
    }

    .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 0.5rem;
    }

    /* Effet hover pour les nav-links */
    .nav-link:hover {
    color: #f5d57a !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    }

    /* Petit effet de soulignement au hover */
    .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #f5d57a;
    transition: all 0.3s ease;
    }

    .nav-link:hover::after {
    width: 80%;
    left: 10%;
    }

    .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.8); /* Rend le toggler plus visible */
    }

    .btn-book {
    background-color: #1a7ca5;
    color: white !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    }

    .btn-book:hover {
    background-color: #0c5a7c;
    transform: scale(1.05);
    }

    .mobile-book-btn {
    display: none;
    }

    /* CSS pour améliorer la section hero */
    .hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/Image1\(accueil\).jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .hero-text-bottom {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-section h1 {
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
    letter-spacing: 3px;
    animation: fadeInUp 1.5s ease;
    }

    .hero-text-bottom h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    }

    .hero-text-bottom p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    }

    @media (max-width: 768px) {
    .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 75vh; /* ou ajuste selon ton besoin visuel */
    }
    }

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

    @media (max-width: 768px) {
    .hero-section {
        height: 65vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-text-bottom {
        bottom: 30px;
    }

    .hero-text-bottom h2 {
        font-size: 1.5rem;
    }

    .hero-text-bottom p {
        font-size: 1rem;
    }
    }

    .media-block {
    height: 100%;
    max-height: 400px; /* à adapter à ton design */
    object-fit: cover;
    width: 100%;
    }  

    #activities {
    margin-top: 0 !important;
    padding-top: 0 !important;
    }

    .activity-card {
    position: relative;
    border: 2px solid #1a7ca5;
    border-radius: 10px;
    padding: 1rem;
    background-color: white;
    transition: transform 0.3s ease;
    min-height: 180px;
    cursor: pointer;
    }


    .activity-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hand-pointer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    }


    .modal-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }


    .full-banner {
    height: 100vh;
    background-size: cover;
    background-position: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .full-banner .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    }


    /* Autres styles inchangés... */

    @media (max-width: 768px) {
    .navbar {
        background-color: rgba(17, 65, 96, 0.95); /* Fond plus opaque sur mobile */
        padding: 0.5rem 1rem;
    }

    .nav-link {
        color: white !important; /* Garde les liens en blanc aussi sur mobile */
    }

    .d-none.d-lg-block {
        display: none !important;
    }

    .mobile-book-btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-section {
        height: 60vh;
        margin-top: 60px; /* Moins d'espace pour la navbar sur mobile */
    }
    }


    .experience-card {
    border: 2px solid white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    }

    .experience-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    }


    .experience-card:hover .card-title,
    .experience-card:hover .card-text {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
    }

    .modal-body2 {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
    color: #333;
    padding: 1.5rem;
    }

    .cta-section {
    background-color: #f8f5ec;
    padding: 3rem 0;
    }

    .cta-title {
    color: #114160;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    }

    .btn-cta {
    background-color: #1a7ca5;
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    }

    .btn-cta:hover {
    background-color: #0c5a7c;
    transform: scale(1.05);
    color: white;
    }

    .footer-custom {
    background-color: #114160 !important;
    color: white;
    padding-top: 3rem;
    padding-bottom: 2rem;
    }

    .footer-link {
    color: #f5d57a;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer-link:hover {
    color: white;
    }

    .footer-text {
    color: rgba(255,255,255,0.8);
    }

    .social-icons a {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    }

    /* Dans style.css */
    #langToggle {
    border-radius: 8px;
    padding: .35rem .75rem;
    line-height: 1;
    margin-right: 10px;
    }


/* ===== Infinite visual strip under Program ===== */
.visual-strip {
  background-color: #f6f1e8;
  overflow: hidden;
}
.visual-strip .visual-caption {
  color: #143a4a;
}
.infinite-scroller {
  display: flex;
  gap: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.scroller-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 100%;
  flex: 0 0 auto;
  animation: wsn-scroll 40s linear infinite;
}
.visual-thumb {
  height: 110px;
  width: 180px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

/* Pause animation on hover for UX */
.infinite-scroller:hover .scroller-track {
  animation-play-state: paused;
}

/* Larger thumbnails on md+ */
@media (min-width: 768px) {
  .visual-thumb { height: 130px; width: 220px; }
}

/* XL screens */
@media (min-width: 1400px) {
  .visual-thumb { height: 150px; width: 260px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroller-track { animation: none; }
}

@keyframes wsn-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}


/* ===== Outfits gallery grid ===== */
.outfits-section {
  background-color: #f6f1e8;
}
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.outfit-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.outfit-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
@media (min-width: 768px) {
  .outfit-img { height: 220px; }
}
@media (min-width: 1200px) {
  .outfit-img { height: 260px; }
}
.outfit-item:hover .outfit-img {
  transform: scale(1.04);
}

/* ===== Outfits curated layout ===== */
.outfits-curated { background-color: #f6f1e8; }
.outfit-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.outfit-item { position: relative; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.outfit-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .35s ease; }
.outfit-item:hover .outfit-img { transform: scale(1.04); }

/* Desktop grids matching mockup */
@media (min-width: 1200px) {
  .outfit-row.row-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .outfit-row.row-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .outfit-img { height: 230px; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .outfit-img { height: 220px; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outfit-img { height: 180px; }
}

.outfits-curated { background-color: #f6f1e8; }
.outfit-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.outfit-item { position: relative; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.outfit-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .35s ease; }
.outfit-item:hover .outfit-img { transform: scale(1.04); }

@media (min-width: 1200px) {
  .outfit-row.row-4 { grid-template-columns: repeat(4, 1fr); }
  .outfit-row.row-5 { grid-template-columns: repeat(5, 1fr); }
  .outfit-img { height: 230px; }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(3, 1fr); }
  .outfit-img { height: 220px; }
}

@media (max-width: 767.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(2, 1fr); }
  .outfit-img { height: 180px; }
}

/* Visual strip in cream to match outfits */
.visual-strip { background-color: #f6f1e8; }

@media (min-width: 1200px) {
  .outfit-row.row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .outfit-row.row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .outfit-row.row-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.outfits-curated { background-color: #f6f1e8; }
.outfit-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.outfit-item { position: relative; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.outfit-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .35s ease; }
.outfit-item:hover .outfit-img { transform: scale(1.04); }

@media (min-width: 1200px) {
  .outfit-row.row-4 { grid-template-columns: repeat(4, 1fr); }
  .outfit-row.row-5 { grid-template-columns: repeat(5, 1fr); }
  .outfit-img { height: 230px; }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(3, 1fr); }
  .outfit-img { height: 220px; }
}

@media (max-width: 767.98px) {
  .outfit-row.row-4, .outfit-row.row-5 { grid-template-columns: repeat(2, 1fr); }
  .outfit-img { height: 180px; }
}

/* Visual strip in cream to match outfits */
.visual-strip { background-color: #f6f1e8; }