/* --- 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 {
    /* Couleurs extraites de vos images pour une harmonie parfaite */
    --main-rose: #d6a4bc;        /* Rose doux du lotus */
    --light-rose: #fdf4f7;       /* Fond rose très pâle */
    --accent-gold: #c5a059;      /* Doré des pièces et bordures */
    --deep-plum: #4a2c3a;        /* Prune foncé pour le texte  */
    --white: #ffffff;
    
    /* Ombres et dégradés */
    --shadow-soft: 0 10px 30px rgba(74, 44, 58, 0.08);
    --hero-gradient: linear-gradient(135deg, #4a2c3a 0%, #7d4a61 100%);
}

/* --- Reset de base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-rose);
    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: 2000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.hero {
    font-family: "Dancing Script", cursive;
}

.container-h1 {
    text-align: center;
    font-family: "Dancing Script", cursive;
    font-size: 30.2rem;
}

.nav-ul {
    font-family: "sofia sans", cursive;
}

.container-p {
    max-width: 1200px;
    margin: 20px auto;
    font-size: 1.8rem;
    opacity: 0.9;
    font-family: "Dancing Script", cursive;
    text-align: center;
}

.logo-site {
    text-decoration: none;
    color: var(--deep-plum);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--deep-plum);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--main-rose);
}

.service-hero {
    background: var(--hero-gradient);
    padding: 100px 20px;
    color: var(--white);
    margin-bottom: 60px;
    text-align: left;
    border-bottom: 5px solid var(--accent-gold);
}

.service-hero h1 {
    font-size: 3.3rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-link {
    color: var(--main-rose);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display:inline-block;
    margin-bottom: 25px;
    transition: 0.3s;
    border: 1px solid var(--main-rose);
}

.back-link:hover {
    background: var(--white);
    color: var(--deep-plum);
}

.steps h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
}
/* --- GRILLE DE SERVICES --- */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

/* --- CARTES SERVICES --- */
.service-box.image-only {
    display: block;
    height: 380px;
    background-color: var(--white);
    border-radius: 40px;
    border: 3px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.service-box.image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* --- EFFETS AU SURVOL --- */
.service-box.image-only:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(74, 44, 58, 0.15);
    border-color: var(--accent-gold); 
}

.service-box.image-only:hover img {
    transform: scale(1.08);
}

/* --- FOOTER --- */
.footer {
    background: var(--deep-plum);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid-3 { grid-template-columns: 1fr; }
    .service-hero h1 { font-size: 2.2rem; }
}

.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;
    }
}