/* ----- RESET ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----- BODY & TEXT ----- */
body {
    font-family: MaPoliceGreatDay, sans-serif, Arial, MaPoliceFuturist;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'MaPoliceGreatDay';
}

p {
    margin-bottom: 15px;
}

/* ----- NAVIGATION ----- */
/* Navbar corrigée */
header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    /* Sépare la navbar et le logo */
    align-items: center;
    /* Centre verticalement les éléments */
    padding: 0 20px;
    height: 80px;
    background-color: #ffffff;
    border-bottom: 2px solid rgb(22, 147, 219);
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    /* Prend l’espace disponible */

}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: rgb(24, 24, 24);
    text-decoration: none;
    font-family: 'MaPoliceFuturist', sans-serif;
    padding: 10px 15px;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #97e2e7;
    border-radius: 5px;
}

.logo img {
    height: 70px;
    display: block;
}

/* Version mobile par défaut : cacher le menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        /* caché par défaut */
        flex-direction: column;
        background: white;
        position: absolute;
        top: 80px;
        /* sous la barre */
        left: 0;
        width: 100%;
        padding: 10px 0;
        border-top: 2px solid rgb(64, 155, 52);
    }

    .navbar li {
        margin: 10px 0;
    }

    /* Bouton hamburger visible en mobile */
    .menu-toggle {
        display: block;
    }

    /* Quand on active le menu */
    .navbar.active {
        display: flex;
    }
}

/* ----- SECTION DE BIENVENUE ----- */
.welcome-section {

    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 150px;
    /* ajoute un peu de marge en bas pour les blocs */
}

.welcome-section .image-blockus {
    background: rgba(75, 75, 75, 0.9);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    left: 0px;
    padding: 0px;
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* pour éviter que l'image dépasse */
    display: flex;
    align-items: center;
    justify-content: center;
}

.personnage {
    position: absolute;
    right: -100px;
    bottom: 0px;
    /* à ras du bas, pas plus bas */
    height: 80vh;
    transition: transform 0.4s ease;
    z-index: 2;
    transform-origin: bottom right;
}

.personnage1 {
    position: absolute;
    left: -100px;
    bottom: 0px;
    /* à ras du bas, pas plus bas */
    height: 80vh;
    transition: transform 0.4s ease;
    z-index: 10;
    transform-origin: bottom right;
}

.image-blockus .img {
    width: 80%;
    height: 80%;
    display: block;
    object-fit: cover;
    /* pour que l'image remplisse bien le cercle */
}

.welcome-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.4s ease;
}

.welcome-text {
    color: #fff;
    text-align: left;
    font-family: 'MaPoliceGreatDay', sans-serif;
    position: relative;
    left: -10%;
    bottom: 10%;
    z-index: 5;
    padding-left: 0px;
}

.welcome-text img {
    height: 200px;
    width: auto;
    /* Garde les proportions de l'image */
    z-index: 5;
    margin-left: -20px;
    /* Décale légèrement vers la gauche */
    display: block;
    /* Évite les petits espaces en ligne */
}


.welcome-text h1 {
    color: #fff;
    font-family: 'MaPoliceFuturist', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
}

.welcome-section:hover .overlay {
    background: linear-gradient(to top, rgba(9, 207, 221, 0.7), transparent 60%);
}

/* Agrandissement de l'image personnage au hover */
.welcome-section:hover .personnage {
    transform: scale(1.2);
}

/* Nouvelle partie pour les blocs images */

.image-blocks {
    position: absolute;
    bottom: -10px;
    /* décalage vers le bas */
    left: 0;
    /* commence à gauche de l'écran */
    width: 100%;
    /* prend toute la largeur */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* centre horizontalement les images */
    gap: 20px;
    z-index: 2;

}


.image-block {
    background: rgba(75, 75, 75, 0.9);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    padding: 0px;
    width: 100px;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* pour éviter que l'image dépasse */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-block img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    /* pour que l'image remplisse bien le cercle */
}

.image-block:hover {
    transform: translateY(-15px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .image-block {
        width: 70px;
        height: 70px;
    }
}

/* Très petit écran */
@media (max-width: 480px) {
    .image-block {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .image-block img {
        width: 70px;
        height: 70px;
    }
}

/* Très petit écran */
@media (max-width: 480px) {
    .image-block img {
        width: 50px;
        height: 50px;
    }
}

/* Écran moyen (tablette) */
@media (max-width: 768px) {
    .welcome-text {
        text-align: left;
        /* centre texte et bouton */
    }

    .welcome-text img {
        max-width: 100px;
        /* logo plus petit */
        height: auto;
        margin: 0;
        /* centre le logo */
        display: block;

    }

    .welcome-text h1 {
        font-size: 1.8rem;
        /* titre plus petit */
    }

    .welcome-text p {
        font-size: 1rem;
    }

    .Title-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        background: #28a745;
        /* remplace la transparence */
    }
}

/* Petit écran (mobile) */
@media (max-width: 480px) {
    .welcome-text {
        text-align: left;
        /* centre texte et bouton */
    }

    .welcome-text h1 {
        font-size: 1rem;
    }

    .welcome-text p {
        font-size: 0.7rem;
    }

    .Title-button {
        padding: 8px 20px;
        font-size: 0.8rem;
        background: #28a745;
        /* remplace la transparence */
    }
}

/* ----- PRESENTATION DU PROJET ----- */
.presentation-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    width: 100%;
}

.presentation-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.presentation-section .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.Information-contenaire {
    display: flex;
    flex-wrap: wrap;
    /* Permet le retour à la ligne */
    justify-content: center;
    /* Centre horizontalement */
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #ffffff;

}

.block-Info {
    background-color: #ffffff;
    flex: 1 1 250px;
    /* Largeur flexible avec minimum */
    max-width: 300px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    /* Évite les débordements */
}

.block-Info img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;

}

.block-Info hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.block-Info:hover img {
    animation: float 1s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(10px) rotate(11deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* 📱 Ajustement pour petits écrans */
@media (max-width: 768px) {
    .block-Info {
        flex: 1 1 100%;
        /* Chaque bloc prend toute la largeur */
        max-width: none;
    }
}

.info-card {
    background-color: #f0f0f0;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* pour éviter les débordements */
}

.info-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.info-card hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ccc;
}



/* Ligne horizontale */
.hr-centered {
    width: 60px;
    height: 4px;
    background-color: #1486c9;
    border: none;
    margin: 40px auto 0 auto;
    border-radius: 2px;
}

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

    .content-block,
    .content-block.reverse {
        flex-direction: column;
    }

    .text-side,
    .image-side,
    .video-side {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}

/* ----- SECTION OFFRE ----- */
.offre-section {
    width: 100vw;
    padding: 20px;
    /* Optionnel */
    background-color: rgb(255, 255, 255);
    background-size: auto;
    text-align: center;
}

.offre-section .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.offre-section .info-card {
    width: 250px;
    padding: 25px;
    border-radius: 16px;

    /* Dégradé semi-transparent pour effet vitré */
    background: linear-gradient(135deg,
            rgba(15, 212, 238, 0.25),
            rgba(231, 14, 220, 0.15));

    /* Flou derrière pour effet glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    /* pour Safari */

    /* Ombre légère */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    /* Texte centré */
    text-align: center;

    /* Centrage vertical des enfants */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Espacement interne */
    gap: 15px;

    /* Optionnel : transition pour hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offre-section .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.offre-section .info-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.offre-section .info-card hr {
    width: 80%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 auto;
}

.offre-section .info-card h3,
.offre-section .info-card p {
    margin: 0;
    padding: 0;
}

/* Devis-Section */
.Devis-Section {
    min-height: 85vh;
    /* prend au moins 85% de la hauteur écran */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    /* pour que le contenu se stack verticalement */
    padding: 40px 20px 150px;
    /* marge interne : haut | côtés | bas */
    box-sizing: border-box;
    /* important pour que padding soit inclus */
}

.DevisZone {
    width: auto;
    min-width: 350px;
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 212, 238, 0.25), rgba(231, 14, 220, 0.15));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "MaPoliceGreatDay", sans-serif;
    font-size: 18px;
    z-index: 10;
}

.DevisZone h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.DevisZone h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.packs {
    text-align: left;
    /* Alignement à gauche */
    width: 100%;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: bold;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 212, 238, 0.25), rgba(231, 14, 220, 0.15));
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;

}

#nbEleves {
    padding: 10px;
    border-radius: 20px;
    border: 4px solid #6f6f6f;
    font-size: 22px;
    width: 80%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.Devis-button {
    padding: 12px 24px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(135deg, rgba(230, 15, 238, 0.25), rgba(126, 14, 231, 0.15));
    color: white;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.Devis-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#resultats {

    text-align: left;
    width: 100%;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: bold;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 212, 238, 0.25), rgba(231, 14, 220, 0.15));
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;

    display: flex;
    /* active flexbox */
    flex-direction: column;
    /* éléments en colonne */
    gap: 10px;
    /* espace entre les items */



}

.resultat-item {
    flex: 1;
    display: flex;
    align-items: center;
    /* centre verticalement le contenu */
    gap: 15px;
    justify-content: flex-start;
    margin: 10px 0;
    background: linear-gradient(135deg, rgba(15, 212, 238, 0.25), rgba(231, 14, 220, 0.15));
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 15px 20px;
}


.resultat-item p {
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
}

.DevisZone .icone {
    width: 40px;
    height: 40px;
}


@font-face {
    font-family: 'MaPoliceGreatDay';
    src: url(font/CaviarDreams.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MaPoliceFuturist';
    src: url(font/FUTRFW.TTF) format('truetype');
    font-weight: normal;
    font-style: normal;
}

.custom-button {
    border: 2px solid rgb(26, 26, 26);
    background-color: transparent;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    color: rgb(27, 27, 27);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: rgb(20, 20, 20);
    color: white;
}

.Title-button {
    background: linear-gradient(135deg,
            rgba(15, 212, 238, 0.8),
            rgba(231, 14, 220, 0.2));
    border-radius: 20px;
    padding: 15px 70px;
    font-family: 'MaPoliceGreatDay';
    font-size: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
}

.Title-button:hover {
    background: linear-gradient(135deg,
            rgba(11, 106, 119, 0.25),
            rgba(182, 9, 173, 0.15));
    color: white;
}

.video-row {
    display: flex;
    justify-content: center;
    align-items: center;

}

.video-crop-container {

    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;

}

.video-crop-container video {
    width: 50%;
    height: 50%;
    justify-content: center;
    align-items: center;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.square {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a69d1, #10dbd1);
    border-bottom-left-radius: 0%;
    border-top-right-radius: 100%;
    ;
    transition: border-radius 0.6s ease-in-out;
}

.square:hover {
    animation: waveCorners 1.2s infinite alternate ease-in-out;
}

@keyframes waveCorners {
    0% {
        border-bottom-left-radius: 00%;
        border-top-right-radius: 100%;
        transform: scale(1);
    }


    50% {
        border-bottom-left-radius: 100%;
        border-top-right-radius: 0%;
        transform: scale(1.1);
    }

    100% {
        border-bottom-left-radius: 0%;
        border-top-right-radius: 100%;
        transform: scale(1);
    }
}

.title {
    font-size: 2rem;
    margin: 0;
}

.hr-centered {
    width: 300px;
    height: 6px;
    background-color: #18a1e0;
    border: none;
    margin: 40px auto;
    border-radius: 3px;
}

.hr-litle {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #1490d8;
    border: none;
    margin: 40px auto;
    border-radius: 3px;
}

.ico {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    animation: floatIcon 5s ease-in-out infinite;
}

.ico img {
    width: 20px;
    height: 20px;
    filter: brightness(1.3);
}

.info-card:hover .ico {
    animation: floatIcon 1.2s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* CHANTIER SECTION */
/* CHANTIER SECTION */
/* CHANTIER SECTION */

.en-chantier-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.en-chantier-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.petitchantier {
    width: 80%;
    min-height: 350px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #e2fffb);
}

/* Partie image : 35% */
.chantier-image {
    width: 35%;
    overflow: hidden;
}

.chantier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Partie texte : 65% */
.chantier-text {
    width: 65%;
    padding: 20px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Titre */
.chantier-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #03b9e6;
}

/* Lignes hr personnalisées */
.hr-little {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #17f0ff, #0e8dc9);
    border: none;
    margin: 8px 0;
    border-radius: 3px;
}

/* Texte */
.chantier-text p {
    flex-grow: 1;
    font-size: 0.95em;
    color: #555;
    margin: 0 0 10px 0;
}

.chantier-text ul {
    list-style: none;
    padding-left: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .petitchantier {
        flex-direction: column;
    }

    .chantier-image,
    .chantier-text {
        width: 100%;
        height: auto;
    }

    .chantier-image img {
        height: auto;
        max-height: 300px;
    }

    .chantier-text {
        text-align: center;
        padding: 15px;
    }

    .chantier-text p {
        text-align: justify;
    }

    .btn-chantier {
        align-self: center;
    }
}

.btn-container {
    display: flex;
    gap: 10px;
}

/* Bouton */
.btn-chantier {
    align-self: flex-start;
    padding: 8px 18px;
    flex-wrap: wrap;
    font-size: 0.95em;
    color: #fff;
    background: linear-gradient(135deg, #17f0ff, #0e8dc9);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 124, 72, 0.3);
}

.btn-chantier:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 124, 72, 0.4);
}


/* contact */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    flex: 0 0 40%;
    padding: 30px;
    background: #fff;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #007bff;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background: #ffffff;
    border: 2px solid #000000;
    /* Bordure noire 2px */
    color: rgb(32, 32, 32);
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    outline: none;
    /* Supprime le contour par défaut */
}

/* Quand on survole le bouton */
.contact-form button:hover {
    background: #f2f2f2;
    transform: translateY(-2px);
}

/* Quand le bouton est cliqué ou focus */
.contact-form button:focus {
    outline: 2px solid #000000;
    /* Contour noir au focus */
    outline-offset: 2px;
    /* Décalage du contour */
}

.contact-map {
    flex: 0 0 60%;
    min-height: 400px;
}

.success {
    color: rgb(255, 255, 255);
    background: #e6ffe6;
    padding: 8px;
    border-radius: 4px;
}

.error {
    color: red;
    background: #ffe6e6;
    padding: 8px;
    border-radius: 4px;
}

/* --- Responsive pour mobile/tablette --- */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        /* empile verticalement */
    }

    .contact-form,
    .contact-map {
        flex: 1 1 100%;
        /* chaque bloc prend toute la largeur */
        min-height: auto;
        /* hauteur automatique */
    }

    .contact-form {
        padding: 20px;
        /* réduit légèrement le padding */
    }

    .contact-map iframe {
        height: 500px;
        /* hauteur adaptée pour mobile */
    }
}

/* --- FOOTER --- */
.footer {
    background: #363636;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.footer-block {
    position: relative;
    padding-right: 20px;
}

/* Ligne de séparation entre blocs */
.footer-block:not(:last-child) {
    border-right: 5px solid rgba(255, 255, 255, 0.2);
}

.footer-block h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Contact avec icônes */
.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-info img {
    width: 20px;
    height: 20px;
}

/* Réseaux sociaux */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Logo */
.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

/* Liste */
.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-block ul li a:hover {
    color: #00ff88;
}

/* Bas de page */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-block:not(:last-child) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info a {
        justify-content: center;
    }
}

.gradient-border-btn {
    position: relative;
    padding: 10px 20px;
    background-color: rgb(255, 240, 240);
    color: #1d3258;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    z-index: 1;

    /* Ombre interne */
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

.gradient-border-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0ae0cf, #18a6f8);
    border-radius: 20px;
    z-index: -1;
}

.section-style {
    position: relative;
    background: #ffffff;
    /* fond bleu clair */
    padding: 50px 20px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

/* vote-container */
/* vote-container */
/* vote-container */
/* vote-container */
/* vote-container */

.vote-container {
    position: relative;
    /* pour que z-index fonctionne */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 15px;
    pointer-events: auto;
    /* s’assure que les clics passent */
}

.heartBtn {
    position: relative;
    /* ou absolute si besoin */
    z-index: 100;
    /* suffisamment haut pour être au-dessus des autres éléments */
    font-size: 40px;
    border: none;
    background: none;
    cursor: pointer;
    color: grey;
    transition: color 0.3s;
}

.heartBtn.active {
    color: red;
}

.message {
    padding: 200px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.success-message {
    font-family: 'MaPoliceFuturist', sans-serif;
    color: rgb(77, 6, 178);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.error-message {
    font-family: 'MaPoliceFuturist', sans-serif;
    color: red;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}