/* --- RESET & BASES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
}

body {
    background-color: #ffffff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVIGATION (HEADER) --- */
.header-luxe {
    position: absolute;
    top: 0; 
    width: 100%; 
    z-index: 100; 
    padding: 50px 0;
}

/* Classe à ajouter sur les pages à fond blanc (ex: Experience/Destinations) */
.header-dark .logo-signature, 
.header-dark .menu-luxe a {
    color: #000 !important;
}

.nav-luxe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.logo-signature {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 1.1rem;
    color: #fff;
}

.menu-luxe { 
    display: flex; 
    list-style: none; 
    gap: 40px; 
}

.menu-luxe a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 300;
    color: #fff;
    transition: opacity 0.3s;
}

.menu-luxe a:hover {
    opacity: 0.6;
}

/* --- HERO SECTION --- */
.hero-container {
    height: 100vh; 
    width: 100%; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    position: relative; 
    text-align: center;
}

.hero-image { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
}

.hero-image img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
}

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.4); 
}

.hero-content { 
    position: relative; 
    z-index: 10; 
    color: #fff; 
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-luxe {
    display: inline-block; 
    margin-top: 50px; 
    padding: 15px 40px;
    border: 1px solid #fff; 
    color: #fff; 
    text-decoration: none;
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 0.7rem;
    transition: 0.4s;
}

.btn-luxe:hover { 
    background: #fff; 
    color: #000; 
}

/* --- SECTIONS DE TEXTE --- */
.section-blanche {
    padding: 120px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
}

.bloc-texte { 
    max-width: 1000px; 
    width: 100%; 
}

.titre-serif {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 25px;
}

.italique-serif {
    font-family: 'Playfair Display', serif !important;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #444;
}

.philosophie-container { 
    margin: 80px 0 60px 0; 
}

.tagline-editorial {
    display: block;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.65rem;
    color: #aaa;
}

.texte-seo {
    margin-top: 40px;
    font-size: 1.05rem; /* Taille légèrement augmentée pour le confort */
    line-height: 2;    /* Plus d'air entre les lignes pour le côté luxe */
    color: #1a1a1a;    /* Un noir plus profond pour le contraste */
    font-weight: 400;  /* Passage en poids "Regular" au lieu de "Light" */
    letter-spacing: 0.5px; /* Très léger espacement des lettres */
}

/* --- TRIPTYQUE & IMAGES --- */
.triptyque-container {
    display: flex;
    gap: 20px;
    margin: 60px 0;
    justify-content: center;
}

.photo-verticale {
    flex: 1;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f9f9f9;
}

.photo-verticale img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-verticale:hover img { 
    transform: scale(1.05); 
}

.section-image { 
    width: 100%;
    padding: 40px 0; 
    background: #fff; 
    display: flex; 
    justify-content: center; 
}

.ecrin-image { 
    width: 80%; 
    max-width: 1100px; 
    margin: 40px auto; 
}

.image-finale { 
    margin: 60px auto 20px auto; 
}

.ecrin-image img { 
    width: 100%; height: auto; 
    display: block; 
}

/* --- CTA (BOUTON SIGNATURE) --- */
.cta-final { 
    margin-top: 80px; 
    display: flex; 
    justify-content: center; 
}

.cta-wrapper { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 30px; 
}

.btn-experience {
    display: inline-block;
    padding: 20px 60px;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 0.75rem;
    font-weight: 300;
    transition: 0.4s;
    border: 1px solid #000;
}

.btn-experience:hover { 
    background: transparent; 
    color: #000; 
}

.mention-recommandation {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #777;
    letter-spacing: 0.5px;
}

/* --- FOOTER & LIENS (CORRECTION image_73a260.png) --- */
.footer-luxe { 
    padding: 100px 0; 
    text-align: center; 
    background: #fff; 
    border-top: 1px solid #f9f9f9; 
}

.villes-luxe { 
    font-size: 0.65rem; 
    letter-spacing: 5px; 
    text-transform: uppercase; 
    color: #ccc; 
    margin-bottom: 25px; 
}

.villes-luxe a {
    text-decoration: none; /* Supprime le bleu/soulignement par défaut */
    color: #888;          /* Gris élégant */
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.villes-luxe a:hover {
    color: #000;
    border-bottom: 1px solid #000; /* Soulignement fin au survol */
}

.footer-luxe p:last-child { 
    font-size: 0.6rem; 
    letter-spacing: 4px; 
    color: #ccc; 
    text-transform: uppercase; 
    margin-top: 20px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .nav-luxe { 
        padding: 0 20px; 
        flex-direction: column; 
        gap: 20px; 
    }
    .triptyque-container { 
        flex-direction: column; 
    }
    .ecrin-image { 
        width: 95%; 
    }
    .hero-content h1 { 
        letter-spacing: 8px; 
    }
}

/* --- FORMULAIRE DE CONTACT --- */

.form-contact {
    text-align: left;
    margin-top: 50px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #888;
}

.form-group input, 
.form-group textarea {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-bottom: 1px solid #000;
}

/* Responsive Formulaire */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* --- STYLISATION DE LA LISTE DÉROULANTE (SELECT) --- */
.select-luxe {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    background: transparent;
    cursor: pointer;
    appearance: none; /* Supprime le style par défaut du navigateur */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23888%22%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right center;
    transition: border-color 0.4s;
}

.select-luxe:focus {
    border-bottom: 1px solid #000;
}

/* --- OVERLAY DE REMERCIEMENT (VERSION LUXE) --- */
.thanks-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.thanks-overlay.active {
    opacity: 1;
    visibility: visible;
}

.thanks-content {
    text-align: center;
}

/* Loader discret type "ligne de temps" */
.line-loader {
    width: 0;
    height: 1px;
    background: #000;
    margin: 40px auto 0;
    transition: width 4s linear;
}

.thanks-overlay.active .line-loader {
    width: 200px;
}