/* Dans public/_assets/css/templates/voyage_default.css (ou un fichier CSS spécifique pour ce template) */

/* Styles pour la nouvelle Hero Section */
.voyage-hero-section-new {
    position: relative;
    height: 450px; /* Ajustez la hauteur selon vos besoins */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end; /* Aligner le contenu en bas */
    justify-content: center; /* Centrer horizontalement */
    color: #fff;
    text-align: center;
    padding-bottom: 40px; /* Espace en bas pour le contenu */
    box-sizing: border-box;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%); /* Dégradé plus subtil en haut, plus sombre en bas */
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Limite la largeur du contenu textuel */
    width: 100%;
}

.voyage-main-title-new {
    font-size: 3.5rem; /* Taille du titre principal */
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    margin-bottom: 10px;
    line-height: 1.2;
}

.voyage-subtitle-new {
    font-size: 1.3rem; /* Taille du sous-titre/extrait */
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.voyage-key-details-hero-new {
    display: flex;
    justify-content: center;
    gap: 25px; /* Espace entre les détails */
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.voyage-key-details-hero-new span {
    display: inline-flex;
    align-items: center;
}

.voyage-key-details-hero-new i {
    margin-right: 8px;
    font-size: 1.1em; /* Légèrement plus grand pour les icônes */
}


/* Styles pour la barre de navigation sticky (déjà existants, ajustez si besoin) */
.voyage-sticky-nav {
    background-color: #f8f9fa; /* Ou var(--off-white-bg) si défini */
    border-bottom: 1px solid #dee2e6; /* Ou var(--border-color) */
    padding: 0.75rem 0;
    position: -webkit-sticky; /* Pour Safari */
    position: sticky;
    top: 0; /* Se colle en haut après le défilement de la navbar principale (si elle existe) */
    z-index: 999; /* En dessous de la navbar principale si elle a un z-index plus élevé */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.voyage-sticky-nav .container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Ou flex-start si vous préférez */
    align-items: center;
    flex-wrap: wrap; /* Pour que les liens passent à la ligne sur petits écrans */
}

.voyage-sticky-nav .container ul li {
    margin: 0 15px; /* Espace entre les liens */
}

.voyage-sticky-nav .container ul li a {
    text-decoration: none;
    color: #343a40; /* Ou var(--dark-text) */
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.voyage-sticky-nav .container ul li a:hover,
.voyage-sticky-nav .container ul li a.active-nav-link { /* Ajoutez une classe active avec JS si besoin */
    color: #007bff; /* Ou var(--primary-blue) */
    border-bottom: 2px solid #007bff; /* Soulignement pour l'élément actif/hover */
}

.voyage-sticky-nav .container ul li.cta-nav-item a {
    border-bottom: none; /* Pas de soulignement pour le bouton */
}
.voyage-sticky-nav .container ul li.cta-nav-item a:hover {
    border-bottom: none;
}

/* Styles généraux pour la page de détail (déjà existants, ajustez si besoin) */
.voyage-detail-page .section-title { /* Titres de section comme "Description", "Itinéraire" */
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block; /* Pour que le border-bottom ne prenne pas toute la largeur */
}

.voyage-sidebar-column .sidebar-title {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.voyage-summary-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.voyage-summary-list i {
    color: var(--primary-blue);
    margin-right: 8px;
    width: 20px; /* Pour aligner le texte */
}

.bg-light-shade { /* Nouvelle classe pour un fond légèrement teinté */
    background-color: #f8f9fa !important; /* ou une autre couleur de votre thème */
}

/* Responsive */
@media (max-width: 991px) {
    .voyage-hero-section-new {
        height: 400px;
        padding-bottom: 30px;
    }
    .voyage-main-title-new {
        font-size: 2.8rem;
    }
    .voyage-subtitle-new {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .voyage-key-details-hero-new {
        font-size: 0.9rem;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .voyage-hero-section-new {
        height: 350px;
        padding-bottom: 20px;
    }
    .voyage-main-title-new {
        font-size: 2.2rem;
    }
    .voyage-subtitle-new {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .voyage-key-details-hero-new {
        flex-direction: column;
        gap: 8px;
        font-size: 0.9rem;
    }
    .voyage-sticky-nav .container ul {
        justify-content: space-around; /* Mieux pour petits écrans */
    }
    .voyage-sticky-nav .container ul li {
        margin: 5px 8px; /* Réduire l'espacement */
    }
}