@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

/* Texte cursive pour emphasis */
em {
    font-family: 'Satisfy', cursive;
    font-style: normal;
    font-size: 1.5em;
    color: #f5f5f5;
}

/* Reset global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    background: url('Sans\ titre\ \(13\).png') center/cover no-repeat fixed;
    position: relative;
}

/* Overlay sombre */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

/* Texte cursive coloré */
.cursive {
    font-family: 'Satisfy', cursive;
    color: #d8c4a3;
    font-size: 1.5em;
}

/* Titres et paragraphes classiques */
h1, h2, h3, p {
    color: #fff;
}

h3 {
    color: rgb(195, 150, 169);
}

h3 em {
    color: inherit;
}

/* Liens */
a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0c674;
}

/* Grid d’images ou services */
.service-grid, .grid-accueil {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cartes de service */
.service-card {
    background: #121212;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.service-card img, .grid-accueil img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: inherit; /* hérite des coins arrondis du parent */
    overflow: hidden;
}

.service-content {
    padding: 1.5rem;
}

.service-list {
    list-style: disc inside;
    margin-top: 1rem;
}

.italic-quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    color: #f0c674;
    margin: 1rem 0;
}

/* Approche */
.approche-content p {
    margin-bottom: 1.5rem;
}

/* Contact Cards */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

.contact-card {
    background: #121212;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    flex: 1 1 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-card a {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-note {
    font-size: 0.85rem;
    color: #d8c4a3;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-title {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.intro-title .container {
    text-align: center;
}

.intro-title .intro-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-note {
    text-align: center;
    margin: 1.5rem auto;
    padding: 0.5rem 1rem;
}

.contact-intro {
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-intro em {
    color: inherit;
    font-style: italic;
}

/* Titres et section title */
h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0.2rem 0;
    display: inline-block;
    padding: 0.2rem 0.2rem;
    background: linear-gradient(90deg, #1a1a1a, #333);
    color: #fff;
    border-radius: 5px;
}

.section-title {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #555555 0%, rgba(79, 209, 197, 0) 75%);
    display: inline-block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    body, .container {
        padding: 0 1rem;
    }

    h2, .section-title {
        font-size: 1.8rem;
        padding: 0.3rem 0.5rem;
        text-align: center;
    }

    .service-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .service-card, .contact-card {
        padding: 1rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .intro-title .intro-image {
        max-width: 100%;
    }

    .contact-intro {
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    p, li {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-copy {
    padding: 5px 0;
}

.footer-links a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* Style par défaut : coins carrés */
.service-image img {
    border-radius: 0; /* coins carrés sur desktop */
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile : coins arrondis */
@media screen and (max-width: 768px) {
    .service-image img {
        border-radius: 10px; /* ou plus selon le style que tu veux */
    }
}

.sn-legal-site h3 a {
    color: #98156a !important;       /* texte noir forcé */
    text-decoration: none;        /* pas de soulignement par défaut */
}

.sn-legal-site h3 a:hover {
    text-decoration: underline;   /* souligne au survol */
}
