/* ----------------------------------------------------
   FONTS
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Tangerine&family=Comfortaa&family=Handlee&family=Sarala&family=Nosifer&family=Caveat&family=Merienda&family=Calligraffitti&family=Sriracha&family=Lobster&family=Pacifico&family=Marck+Script&display=swap');
@import url('reset.css');

/* ----------------------------------------------------
   BASE
---------------------------------------------------- */
body {
    background: #5D6D7E;
    color: #000;
    font-family: 'PT Sans Narrow', Arial, sans-serif;
    font-size: 14px;
    overflow-y: scroll;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;   /* limite la largeur */
    margin: 0 auto;      /* centre la colonne */
}

/* ----------------------------------------------------
   TITRE PRINCIPAL
---------------------------------------------------- */
h1 {
    font-family: 'Marck Script', 'Segoe UI', Helvetica, Arial, sans-serif;
    text-shadow: 0 5px 3px black, -14px -2px 10px black;
    color: white;
    font-size: 5.5em;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
}

.title-main { font-size: 0.8em; display: block; }
.title-sub { font-size: 0.35em; display: block; margin-top: -10px; }

/* ----------------------------------------------------
   BANDE IMAGES + TITRE
---------------------------------------------------- */
.header-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #5D6D7E;
    padding: 10px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-images img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 4px;
}

/* ----------------------------------------------------
   BANDE NOIRE + BOUTON TÉLÉPHONE
---------------------------------------------------- */
.address-band {
    background: black;
    padding: 8px 20px;
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 24px; /* légèrement réduit pour tenir sur une ligne */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px; /* réduit pour éviter le retour à la ligne */
    flex-wrap: nowrap; /* empêche le passage sur 2 lignes sur PC */
}

/* Adresse */
.address-text {
    white-space: normal; /* autorise le texte à se compresser */
    text-align: center;
}

/* Bouton téléphone */
.cta-phone-inline {
    display: inline-block;
    background: white;
    color: black;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
    white-space: nowrap; /* le bouton reste sur une seule ligne */
}

.cta-phone-inline:hover {
    background: #e6e6e6;
}

/* Version mobile */
@media (max-width: 700px) {
    .address-band {
        flex-direction: column;
        gap: 6px;
        font-size: 22px;
        flex-wrap: wrap; /* mobile : autorise le retour à la ligne */
    }

    .address-text {
        text-align: center;
    }
}


/* ----------------------------------------------------
   BLOC SEO + AVIS GOOGLE (optimisé)
---------------------------------------------------- */

/* Conteneur global */
.seo-and-reviews {
    max-width: 1200px; /* aligné avec le reste du site */
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Bloc SEO (gauche) */
.seo-content {
    flex: 2; /* plus large */
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.55;
}

/* Titres SEO */
.seo-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.seo-content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #333;
    margin-top: 6px;
    border-radius: 2px;
}

.seo-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.3px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.seo-content h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #333;
    margin-top: 6px;
    border-radius: 2px;
}

/* Bloc widget Google (déplacé plus bas) */
.google-reviews {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Style interne du widget */
.google-reviews .elfsight-app-3d23d323-d4c9-4717-b460-8b6bd76f0bf1 {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(4px);
}

/* Responsive */
@media (max-width: 900px) {
    .seo-and-reviews {
        flex-direction: column;
        gap: 20px;
    }

    .seo-content {
        flex: 0 0 100%;
    }

    .google-reviews {
        margin-top: 20px;
        padding: 0 15px;
    }
}

/* ----------------------------------------------------
   SLIDER – VERSION COMPACTE
---------------------------------------------------- */
.content {
    max-width: 1200px;
    margin: 12px auto 20px auto;  /* top = 12px, bottom = 20px */
    background: white;
    padding: 8px 15px 18px;
    border-radius: 10px;
}

.sbi_container {
    margin-bottom: 10px; /* compact */
}

.sbi_label {
    background: rgba(0,0,0,0.55);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}


.page-content {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px 25px 30px;
    background: white;
    border-radius: 10px;
}


/* ----------------------------------------------------
   GALERIES
---------------------------------------------------- */
.gallery-small,
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 10px;
}

.gallery-small img,
.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-small img {
    width: 120px;
    height: 140px;
    object-fit: cover;
}

.gallery img {
    width: 240px;
    height: 180px;
    object-fit: cover;
}

.gallery img:hover,
.gallery-small img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ----------------------------------------------------
   BOUTONS BAS
---------------------------------------------------- */
.bottom-buttons {
    text-align: center;
    margin-top: 8px;
}

.btn-icon {
    display: inline-block;
    margin: 4px 12px;
    text-align: center;
    color: white;
    font-family: Comfortaa, Arial, sans-serif;
    font-size: 14px;
}

.btn-icon img {
    width: 55px;
    margin-bottom: 5px;
}

/* ----------------------------------------------------
   FOOTER PREMIUM
---------------------------------------------------- */

.back-home {
    text-align: center;
    margin: 20px auto 10px auto;
}

.back-home a {
    display: inline-block;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Comfortaa', Arial, sans-serif;
    font-size: 0.95rem;
    transition: 0.2s;
}

.back-home a:hover {
    background: rgba(0,0,0,0.9);
}

.footer-section {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 18px auto 0 auto;
    max-width: 1100px;
    text-align: center;
    backdrop-filter: blur(4px);
    font-family: 'Comfortaa', Arial, sans-serif;
    color: #222;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #000;
}

.footer-section p {
    margin: 2px 0;
    font-size: 13px;
}

.footer-section small {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.8;
}


/* ----------------------------------------------------
   FORMULAIRE DE CONTACT – VERSION COMPACTE
---------------------------------------------------- */

.contact-form {
    max-width: 600px;          /* réduit */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;                 /* réduit */
}

.contact-form label {
    font-size: 15px;           /* légèrement réduit */
    font-weight: 600;
    margin-bottom: 2px;
    color: #222;
}

.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;         /* réduit */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;           /* réduit */
    font-family: 'PT Sans Narrow', Arial, sans-serif;
    background: #fafafa;
}

.contact-form textarea {
    min-height: 110px;         /* réduit */
    resize: vertical;
}

.contact-form input[type="submit"] {
    background: black;
    color: white;
    padding: 8px 14px;         /* réduit */
    border: none;
    border-radius: 6px;
    font-size: 15px;           /* réduit */
    font-family: 'Comfortaa', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.2s;
}

.contact-form input[type="submit"]:hover {
    background: #333;
}

/* CAPTCHA */
.captcha-block {
    margin-top: 8px;           /* réduit */
    display: flex;
    flex-direction: column;
    gap: 5px;                  /* réduit */
}

.captcha-block img {
    width: 150px;              /* légèrement réduit */
    border-radius: 4px;
}


/* ----------------------------------------------------
   RESPONSIVE MOBILE
---------------------------------------------------- */
@media (max-width: 700px) {

    .header-band {
        flex-direction: column;
        gap: 10px;
    }

    .header-images img {
        width: 90px;
        height: 60px;
    }

    h1 {
        font-size: 3.2em;
        text-shadow: 0 3px 2px black;
    }

    .address-band {
        font-size: 22px;
        gap: 6px;
    }

    .seo-and-reviews {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .seo-content {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .google-reviews {
        padding: 14px 16px;
    }

    .content {
        padding: 15px;
    }

    .btn-icon img {
        width: 50px;
    }
}