:root {
    --primary-color: rgb(225, 94, 19);
    --secondary-color: #2c2c2c;
    --light-bg: rgb(0, 0, 0);
    --text-light: rgba(255,255,255,0.9);
    --text-muted: #666;
    --text-dark: #2c2c2c;
    --border-radius-main: 20px;
    --border-radius-item: 15px;
    /* #Police-Ubuntu */
    --font-ubuntu: 'Ubuntu', sans-serif;
}

/* #Importation-Polices-Ubuntu */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* #Reset-CSS-Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* #Styles-Corps-Page */
body {
    font-family: var(--font-ubuntu);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5px;
    font-weight: 400;
}

/* #Styles-Conteneur-Flyer */
.flyer {
    width: 100%;
    /* MODIFIÉ : Largeur revenue à l'originale */
    max-width: 600px;
    background: transparent;
    border-radius: var(--border-radius-main);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.3);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(227, 95, 18, 0.2);
    isolation: isolate;
}

.flyer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/d/1NSCj3aRRp0Xbf_DqmMTwPQX35YIxz-ky');
    background-size: cover;
    background-position: center;
    opacity: 0.30;
    z-index: -1;
}

/* #Styles-Entete */
.header {
    background: white;
    /* MODIFIÉ : Padding vertical réduit pour gagner de la hauteur */
    padding: 10px 20px 8px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* CONSERVÉ : Utilisation de Flexbox pour aligner les éléments */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.05)"/></svg>') repeat;
    animation: floatBackground 10s linear infinite;
}

@keyframes floatBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* #Styles-Logo */
.logo {
    position: relative;
    z-index: 2;
}

.logo img {
    max-width: 100%;
    /* CONSERVÉ : Hauteur du logo qui s'équilibre bien avec le titre */
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* AJOUT : Pour que le lien sur le logo se comporte bien visuellement */
.logo a {
    display: block; /* S'assure que le lien prend bien toute la place de l'image */
    line-height: 0; /* Évite certains espacements parasites sous l'image */
    text-decoration: none; /* Retire le soulignement s'il y en a un */
    border: none; /* Retire la bordure s'il y en a une */
}
/* #Styles-Sous-titre-Entete */
.subtitle {
    color: var(--text-dark);
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    font-family: var(--font-ubuntu);
    flex-basis: 100%;
    text-align: center;
    /* MODIFIÉ : Marge supérieure réduite */
    margin-top: 5px;
}

/* #Styles-Titre-Principal-SPA */
.spa-title {
    background: white;
    color: var(--text-dark);
    padding: 0;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-ubuntu);
    z-index: 2;
}

/* #Styles-Section-Services */
.services {
    /* MODIFIÉ : Padding vertical réduit */
    padding: 15px 20px;
    position: relative;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 245, 242, 0.75) 100%);
    border-radius: var(--border-radius-item);
    /* MODIFIÉ : Padding et marge inférieure réduits */
    padding: 15px;
    margin-bottom: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(139, 69, 19, 0.2);
}

.service-name {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-dark);
    /* MODIFIÉ : Marge inférieure réduite */
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: var(--font-ubuntu);
}

.service-description {
    color: var(--text-muted);
    /* MODIFIÉ : Interligne et marge inférieure réduits */
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.9em;
    font-weight: 400;
}
.service-description em, .service-description strong {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* MODIFIÉ : Espacement de la grille et marge supérieure réduits */
    gap: 7px;
    margin-top: 12px;
}

.detail-item {
    text-align: center;
    background: white;
    /* MODIFIÉ : Padding vertical réduit */
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-item:active {
    transform: translateY(0);
}

.detail-label {
    font-size: 0.75em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* MODIFIÉ : Marge inférieure réduite */
    margin-bottom: 3px;
    font-weight: 400;
}

.detail-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95em;
}

/* #Styles-Pied-de-Page */
.footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    /* MODIFIÉ : Padding vertical réduit */
    padding: 18px 20px;
    font-weight: 400;
}

.contact-info {
    font-size: 0.95em;
    /* MODIFIÉ : Marge inférieure et interligne réduits */
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.footer a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.zen-quote {
    font-style: italic;
    color: var(--primary-color);
    font-size: 0.9em;
    /* MODIFIÉ : Marge supérieure réduite */
    margin-top: 8px;
    font-weight: 400;
}

/* Les media queries restent inchangées et s'adapteront parfaitement */
@media (max-width: 480px) {
    /* ... (pas de changement ici) ... */
}
@media (max-width: 360px) {
    /* ... (pas de changement ici) ... */
}
