/* --- VARIABLES --- */
:root {
    --col-p: #1B263B; /* Bleu Marine Carte de Visite */
    --col-a: #F39C12; /* Orange Carte de Visite */
}

/* --- STYLES SPÉCIFIQUES --- */
.wave-container { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-container svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }

/* Titres soulignés (Style Index2) */
.section-title { position: relative; display: inline-block; padding-bottom: 1rem; }
.section-title::after { content: ''; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--col-a); }

/* Galerie Overlay */
.gallery-item:hover .overlay { opacity: 1; }

/* Mode Édition CMS */
[contenteditable="true"] { border: 2px dashed #F39C12; outline: none; background: rgba(255,255,200,0.2); cursor: text; }

/* Modals & Cookies */
.modal { opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal.active { opacity: 1; visibility: visible; }

#cookie-banner { transform: translateY(100%); transition: transform 0.5s ease-in-out; }
#cookie-banner.show { transform: translateY(0); }

.ddm-container p {
        margin-bottom: 15px; /* Espace entre les paragraphes */
        text-align: justify; /* Justifie le texte pour des bords nets (optionnel) */
    }

    .ddm-brand {
        font-weight: bold; /* Met le nom de l'entreprise en gras */
        color: #000000; /* Le nom ressort en noir profond */
    }

    .ddm-link {
        color: #2c5282; /* Un bleu "acier" professionnel pour le lien */
        font-weight: bold;
        text-decoration: none; /* Pas de soulignement par défaut */
        transition: color 0.3s ease;
    }

    .ddm-link:hover {
        text-decoration: underline; /* Souligne quand on passe la souris dessus */
        color: #1a365d; /* Le bleu devient plus foncé au survol */
    }