/* --- VARIABLES ET RESET --- */
:root {
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --input-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --border-color: #1e1e1e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* --- BARRE DE NAVIGATION (NAVBAR) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold);
}

.btn-connexion {
    background-color: var(--gold);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-connexion:hover {
    background-color: var(--gold-hover);
}

//* --- SECTION HERO (ACCUEIL) --- */
.hero {
    position: relative;
    height: 100vh;
    /* C'EST CETTE LIGNE QUE TU DOIS MODIFIER */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('./img/vuedehors.jpg') center/cover no-repeat; 
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 700px;
}

.phone-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }

.stats-bar {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- SECTION CONTACT --- */
.contact-section {
    background-color: var(--dark-bg);
    padding: 100px 5%;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-text { flex: 1.2; }

.gold-tag {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.contact-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
}

.info-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #ccc;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    flex: 1;
}

.input-group { margin-bottom: 25px; }

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-family: inherit;
}

.input-group textarea { height: 120px; resize: none; }

.form-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-gold-full {
    width: 100%;
    background: linear-gradient(to right, #d4af37, #f1c40f);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.address-text { margin: 15px 0; color: #ccc; }

.map-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.btn-outline-gold {
    display: block;
    text-align: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 12px;
    border-radius: 30px;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .contact-wrapper { flex-direction: column; }
    .hero h1 { font-size: 3rem; }
    .navbar { padding: 20px; }
    nav { display: none; } /* On cache le menu sur mobile pour simplifier */
}
/* --- CONFIGURATION GÉNÉRALE --- */
:root {
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --text-light: #ffffff;
    --text-gray: #999999;
}

html { scroll-behavior: smooth; } /* Défilement fluide entre les onglets */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.gold-text { color: var(--gold); }
.gold-tag { color: var(--gold); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; display: block; }

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed; /* Reste en haut au défilement */
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px); /* Effet transparent stylé */
}

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { color: var(--text-gray); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: var(--gold); }

.btn-connexion { background: var(--gold); border: none; padding: 10px 20px; border-radius: 20px; font-weight: 600; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1511702771955-42b52e1cd168?q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }

/* --- SECTION À PROPOS (QUI SUIS-JE) --- */
.about-section { padding: 100px 10%; background: #070707; }
.about-container { display: flex; gap: 60px; }

.about-left { flex: 1; }
.about-left h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 30px; }
.gold-quote { border-left: 3px solid var(--gold); padding-left: 20px; font-style: italic; color: #ccc; margin: 30px 0; }

.stats-grid { display: flex; gap: 40px; margin-top: 40px; }
.stat-item strong { display: block; font-size: 1.5rem; color: var(--gold); }
.stat-item span { font-size: 0.8rem; color: #666; }

/* --- ENGAGEMENT CARDS --- */
.about-right { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.engagement-card { 
    display: flex; 
    background: var(--card-bg); 
    border-radius: 15px; 
    overflow: hidden; 
    border: 1px solid #1e1e1e;
}
.engagement-card img { width: 120px; object-fit: cover; }
.card-content { padding: 20px; }
.card-content h4 { color: var(--gold); margin-bottom: 5px; }
.card-content p { font-size: 0.85rem; color: #888; }

/* --- CONTACT --- */
.contact-section { padding: 100px 5%; }
.contact-wrapper { display: flex; gap: 30px; max-width: 1300px; margin: 0 auto; }
.contact-card { background: var(--card-bg); border: 1px solid #1e1e1e; border-radius: 20px; padding: 30px; flex: 1; }
.input-group input, .input-group textarea { width: 100%; background: #1a1a1a; border: 1px solid #2a2a2a; color: white; padding: 12px; border-radius: 10px; margin-bottom: 15px; }
.btn-gold-full { width: 100%; background: var(--gold); border: none; padding: 15px; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .about-container, .contact-wrapper { flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
}
/* --- NOUVELLE SECTION QUI SUIS-JE --- */
.about-section {
    background-color: #070707; /* Légèrement plus sombre que le fond général */
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    align-items: center;
}

/* Texte (Gauche) */
.about-text {
    flex: 1.2;
}

.serif-title, .about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-text .description {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.gold-quote {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: #ccc;
    margin: 30px 0;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-item span {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Zone (Droite - Remplace la zone entourée) */
.about-image-zone {
    flex: 1;
    display: flex;
    justify-content: center;
}

.stylized-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px; /* Ajustez selon vos besoins */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2); /* Ombre dorée stylée */
    transition: transform 0.3s ease;
}

.stylized-image-wrapper:hover {
    transform: translateY(-5px); /* Petit effet au survol */
}

.stylized-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Assure que l'image remplit bien son cadre */
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}
/* --- VARIABLES ET CONFIGURATION --- */
:root {
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --input-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --border-color: #1e1e1e;
}

html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed; 
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.gold-text { color: var(--gold); }

nav ul { display: flex; list-style: none; gap: 20px; }

nav ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active { color: var(--gold); }

.btn-connexion {
    background-color: var(--gold);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* --- SECTION HERO (ACCUEIL) --- */
.hero {
    position: relative;
    height: 100vh;
    /* MODIFIE LE CHEMIN DE L'IMAGE ICI */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('./img/vuedehors.jpg') center/cover no-repeat; 
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.phone-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-group { display: flex; gap: 20px; margin-bottom: 40px; }

.btn-primary {
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- SECTION QUI SUIS-JE --- */
.about-section {
    background-color: #070707;
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    align-items: center;
}

.about-text { flex: 1.2; }

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

.gold-quote {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    color: #ccc;
    margin: 30px 0;
}

.about-stats { display: flex; gap: 40px; margin-top: 40px; }

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.about-image-zone { flex: 1; display: flex; justify-content: center; }

.stylized-image-wrapper {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.stylized-image-wrapper img { width: 100%; display: block; }

/* --- SECTION CONTACT --- */
.contact-section { padding: 100px 5%; }

.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    flex: 1;
}

.btn-gold-full {
    width: 100%;
    background: var(--gold);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .about-container, .contact-wrapper { flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
    nav { display: none; }
}
/* --- PIED DE PAGE (FOOTER) --- */
.site-footer {
    background-color: #080808; /* Fond très sombre comme sur la PJ */
    padding: 70px 10% 30px 10%;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column.links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-column.links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column.contact-info ul li {
    display: flex;
    flex-direction: column;
}

.footer-column.contact-info span {
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-column.contact-info small {
    color: #555;
    font-size: 0.75rem;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #444;
    font-size: 0.8rem;
}

/* Ajustement mobile */
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}
/* --- SECTION VÉHICULES --- */
.vehicles-section { padding: 100px 10%; text-align: center; background: var(--dark-bg); }
.section-subtitle { color: var(--text-gray); margin-bottom: 40px; }

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* --- ANIMATION DE TRANSITION --- */
@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(20px); /* Petit mouvement vers la droite */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vehicle-slide {
    display: none;
    flex-direction: row;
    align-items: center;
    text-align: left;
    /* L'animation se déclenche quand la slide devient active */
}

.vehicle-slide.active {
    display: flex;
    animation: slideFade 0.6s ease-out; /* Durée de 0.6 secondes */
}

/* Optionnel : On peut aussi ajouter un léger zoom sur l'image */
.vehicle-slide.active .slide-image img {
    animation: imageZoom 10s infinite alternate;
}

@keyframes imageZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.vehicle-slide.active { display: flex; }

.slide-image { flex: 1.2; line-height: 0; }
.slide-image img { width: 100%; height: 450px; object-fit: cover; }

.slide-content { flex: 0.8; padding: 50px; }
.gold-text-small { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; font-weight: 700; }
.slide-content h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin: 15px 0; }
.slide-content p { color: var(--text-gray); }

/* Navigation du Slider */
.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.3);
}

.btn-slider {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-slider:hover { background: var(--gold); color: black; }
.slider-counter { color: var(--text-gray); font-size: 0.9rem; }

@media (max-width: 900px) {
    .vehicle-slide { flex-direction: column; }
    .slide-image img { height: 250px; }
}
/* --- SECTION AFFICHE PROPRE --- */
.promo-poster {
    padding: 80px 5%;
    background-color: #050505;
}

.poster-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--gold);
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.poster-content {
    flex: 1.2;
    padding: 60px;
}

.poster-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
}

.benefit .icon { font-size: 1.5rem; }
.benefit p { font-size: 0.85rem; color: #bbb; }

.poster-visual {
    flex: 0.8;
    position: relative;
}

.poster-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
}

/* Version Mobile */
@media (max-width: 900px) {
    .poster-container { flex-direction: column; }
    .poster-content { padding: 40px 25px; }
    .poster-visual { height: 250px; }
    .poster-content h2 { font-size: 2rem; }
}
/* --- BLOG STYLE --- */
.blog-section { padding: 100px 5%; background: #0a0a0a; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.blog-card:hover { transform: translateY(-10px); border-color: var(--gold); }

.blog-img { position: relative; height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

.tag-float {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body { padding: 25px; }
.blog-meta { font-size: 0.75rem; color: #555; margin-bottom: 10px; text-transform: uppercase; }
.blog-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 15px; color: #fff; }
.blog-body p { color: #888; font-size: 0.9rem; margin-bottom: 20px; }

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- GALLERY STYLE --- */
.siege-section { padding: 80px 5%; background: #070707; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #1e1e1e;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}