/* === STYLE GLOBAL === */

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f2ea;
    color: #2b2620;
    line-height: 1.6;
}

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 18px 40px;
}

section {
    margin-bottom: 40px;
}

/* === HEADER SANS BANNIÈRE === */

.hero {
    width: 100%;
    padding: 40px 0 20px;
    text-align: center;
    background: none !important;
}

.hero-logo {
    max-width: 240px;
    width: 100%;
    margin-bottom: 10px;

    /* Animation au chargement */
    opacity: 0;
    animation: logo-pop 1s ease-out forwards;
}

.hero-title {
    font-size: 32px;
    letter-spacing: 0.25em;
    margin: 10px 0 0;
    text-transform: uppercase;
}

.hero-subtitle {
    margin-top: 6px;
    font-size: 14px;
    text-transform: uppercase;
    color: #6a5c4d;
}

/* === LISTE DES PRESTATIONS === */

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 6px;
}

.services-list li::before {
    content: "• ";
    color: #a0692f;
    font-weight: bold;
}

/* === GALERIE === */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.gallery img {
    width: 100%;
    display: block;
    border-radius: 8px;
    border: 1px solid #d3c4a7;
}

/* === BOUTONS LIENS === */

.links {
    text-align: center;
    margin-top: 10px;
}

.links a {
    display: inline-block;
    margin: 6px 8px;
    padding: 10px 18px;
    background: #2b2620;
    color: #f7f3e8;
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    transition: 0.2s ease;
}

.links a:hover {
    background: #a0692f;
}

/* === FORMULAIRE DE CONTACT === */

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

form input,
form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #c5b59a;
    font: inherit;
    background: #fdfaf4;
}

form textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    background: #2b2620;
    color: #f7f3e8;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #a0692f;
}

/* === FOOTER === */

footer {
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: #7b6d5a;
}

/* === RESPONSIVE === */

@media (max-width: 600px) {
    .hero-logo {
        max-width: 180px;
    }
    .hero-title {
        font-size: 26px;
    }
}

/* === ANIMATION DU LOGO === */

@keyframes logo-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Respect des utilisateurs qui réduisent les animations */
@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        animation: none;
        opacity: 1;
    }
}
/* === SECTION QUI SUIS-JE === */

.apropos-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.apropos-photo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center; /* CENTRAGE HORIZONTAL */
    width: 260px;
}

.apropos-photo img {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #d3c4a7;
    background: #fff;
}

.apropos-texte {
    flex: 1;
}
@media (max-width: 700px) {
    .apropos-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .apropos-photo {
        width: 100%;
        justify-content: center;
    }

    .apropos-photo img {
        width: 180px;
    }
}
/* === BOUTONS RÉSEAUX SOCIAUX PLUS LISIBLES === */

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.03em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Couleurs par réseau */
.btn-social.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-social.facebook {
    background: #1877f2;
}

.btn-social.etsy {
    background: #f56400;
}

/* Effet hover */
.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
