/* Conteneur global aligné sur la grille du site */
.gros-plan-section {
    width: 100%;
    background-color: #fff;
    margin-bottom: 20px;
}

/* Bandeau supérieur ocre jaune */
.gros-plan-header {
    background-color: #d19200;
    padding: 15px 0;
    text-align: center;
}

.gros-plan-header h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
}

/* Corps du bloc avec image de fond */
.gros-plan-body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alignement du contenu centré et limité à la largeur globale */
.gros-plan-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px; /* Aligne le texte sur une colonne centrale élégante */
}

/* Titre principal massif blanc */
.gros-plan-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Description textuelle avec un léger espacement */
.gros-plan-desc {
    font-size: 14.5px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 35px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

/* Bouton orange "VOIR +" */
.btn-gros-plan {
    display: inline-block;
    background-color: #d19200;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 35px;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-gros-plan:hover {
    background-color: #b57e00;
    transform: translateY(-2px);
}

/* RESPONSIVE ADAPTATION MOBILE */
@media (max-width: 768px) {
    .gros-plan-body {
        padding: 40px 15px;
    }
    .gros-plan-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .gros-plan-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .gros-plan-header h2 {
        font-size: 18px;
        letter-spacing: 4px;
    }
}
