/* --- Importation de la police moderne --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');
@import url('https://fonts.google.com/specimen/Sofia');

:root {
    /* Palette Harmonisée (Extraite de vos images) */
    --deep-plum: #4a2c3a;        /* Prune foncé (texte et titres) */
    --main-rose: #d6a4bc;        /* Rose lotus */
    --soft-blue: #4da3d4;        /* Bleu ciel doux */
    --bg-light: #ffe6ef;         /* Fond très légèrement rosé */
    --white: #ffffff;
    --banner-purp : #F696FF;     /* Purple banner */
    
    /* Effets Premium */
    --shadow-soft: 0 10px 30px rgba(74, 44, 58, 0.05);
    --shadow-hover: 0 20px 50px rgba(74, 44, 58, 0.12);
    --radius-lg: 40px;
    --radius-sm: 20px;
}

/* --- Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--deep-plum);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--main-rose);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-site {
    text-decoration: none;
    color: var(--deep-plum);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Dancing Script', cursive;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: var(--main-rose);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--deep-plum);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover { color: var(--soft-blue); }

/* --- HERO SECTION --- */
.hero {
    background: var(--deep-plum);
    padding: 100px 20px;
    color: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    font-family: "Dancing Script", cursive;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Dancing Script", cursive;
}

.hero-text h2 {
    font-size: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: "Dancing Script", cursive;
}

.main-hero-logo {
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- BOUTONS --- */
.cta-button {
    background: var(--main-rose);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: scale(1.05);
    background: white;
    color: var(--deep-plum);
}

/* --- SERVICES GRID --- */
.section { padding: 100px 20px; }

.section-p{
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--deep-plum);
    padding-bottom: 1rem;
    text-align: center;
}

.section-li {
    font-family: 'sofia sans', cursive;
    font-size: 1.3rem;
    color: var(--deep-plum);
    padding-bottom: 0.25rem;
    padding-left: 30rem;
}

.section-phrase {
    font-family: 'sofia sans', cursive;
    font-size: 1.4rem;
    text-align: center;
    color: var(--deep-plum);
    padding-bottom: 2rem;
}

.section-hero {
    font-family: 'Dancing Script', cursive;
    font-size: 2.6rem;
    color: var(--deep-plum);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1.75rem;
}



.section-h3 {
    font-family: 'sofia sans', cursive;
    font-size: 1.4rem;
    padding-top: 2rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    font-weight: 800;
    font-family: "Dancing Script", cursive;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: "Dancing Script", cursive;
}

.service-box h3 { font-size: 2rem; margin-bottom: 15px; font-family: "Dancing Script", cursive;}
.service-box p { opacity: 0.8; margin-bottom: 25px;}

.cta-link {
    color: #ffffff; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Changé de right à center */
    gap: 10px;
    font-family: "Sofia Sans", sans-serif;
}

/* --- TIMELINE (INFOS) --- */
.section-timeline {
    background: white;
    padding: 100px 20px;
    border-radius: 80px 80px 0 0;
}

.timeline-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
    border-left: 3px solid var(--main-rose);
}

.timeline-item { margin-bottom: 60px; position: relative; }

.timeline-dot {
    position: absolute;
    left: -61px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--bg-light);
    border: 4px solid var(--soft-blue);
    border-radius: 50%;
}

.timeline-content h3 { color: var(--soft-blue); margin-bottom: 10px; }

/* --- FORMULAIRE --- */
.contact-form {
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: span 2; }

.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus { border-color: var(--shadow-hover); outline: none; }

.submit-button {
    background: var(--deep-plum);
    color: white;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover { background: var(--shadow-hover); transform: translateY(-3px); }

/* --- FOOTER --- */
.footer {
    background: var(--deep-plum);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.footer a { color: var(--main-rose); text-decoration: none; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .services-grid, .form-grid { grid-template-columns: 1fr; }
    .hero-text h2 { margin-left: 0; }
}

.site-footer {
    background-color: var(--deep-plum); /* Utilise votre couleur prune */
    color: white;
    padding: 30px 5%;
    border-top: 4px solid var(--accent-gold);
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Aligne verticalement l'image et le texte */
    gap: 30px; /* Espace entre l'image et le texte */
}

.footer-image img {
    height: 80px; /* Taille ajustable selon vos besoins */
    width: auto;
    display: block;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Version mobile */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.service-box {
    position: relative;
    overflow: hidden;
    min-height: 250px; 
    display: flex;
    /* On change flex-end par center pour le centrage vertical */
    align-items: center; 
    /* On ajoute justify-content pour le centrage horizontal */
    justify-content: center; 
    text-decoration: none;
    border-radius: 15px;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), var(--bg-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    padding: 20px; /* Ajout d'une marge interne de sécurité */
}

.service-box:hover {
    transform: translateY(-10px);
    /* Optionnel : éclaircir un peu au survol */
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), var(--bg-image);
}

.service-content {
    width: 100%;
    color: white; 
    z-index: 2;
    text-align: center; /* Aligne le texte au milieu horizontalement */
}

.service-content h3 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff; 
}
