*,
*::before,
*::after{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#faf8f4;
    font-family:Arial,Helvetica,sans-serif;
    color:#475569;
}

img{
    display:block;
    max-width:100%;
}

/* HERO */
.hero-choeurs{
    max-width:850px;
    margin:45px auto 55px;
    padding:0 20px;
    text-align:center;
}

.hero-choeurs h1{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.2rem,4vw,3rem);
    font-weight:600;
    color:#334155;
    line-height:1.1;
}

.hero-divider{
    width:60px;
    height:3px;
    margin:16px auto 18px;
    border-radius:99px;
    background:#C9A66B;
}

.hero-choeurs p{
    max-width:650px;
    margin:auto;
    color:#64748b;
    font-size:1rem;
    line-height:1.7;
}

/* SECTION */
.choeurs-section{
    max-width:1200px;
    margin:auto;
    padding:0 20px 70px;
}

.choeur-card{
    margin-bottom:45px;
}

/* CARTE */
.choeur-contenu{
    display:flex;
    align-items:center;
    gap:50px;
    padding:30px;
    background:#fff;
    border:1px solid #ece3d4;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.3s ease;
}

.choeur-card:nth-child(even) .choeur-contenu{
    flex-direction:row-reverse;
}

/* IMAGE */
.choeur-photo{
    flex:0 0 42%;
}

.choeur-photo img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 12px 28px rgba(0,0,0,.14);
}

/* TEXTE */
.choeur-texte{
    flex:1;
}

.choeur-texte h2{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,3vw,2.4rem);
    font-weight:600;
    color:#334155;
}

.choeur-texte h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    margin:16px 0 24px;
    background:#C9A66B;
    border-radius:50px;
}

.choeur-texte p{
    margin:0;
    line-height:1.9;
    text-align:justify;
}

/* BOUTON */
.btn-info{
    display:inline-block;
    margin-top:30px;
    padding:13px 28px;
    border:2px solid #C9A66B;
    border-radius:8px;
    background:transparent;
    color:#C9A66B;
    text-decoration:none;
    font-weight:600;
    transition:.25s ease;
}

.btn-info:hover{
    background:#C9A66B;
    color:#fff;
}

.choeur-card:nth-child(even) .btn-info{
    float:right;
}

/* TABLETTE */
@media(max-width:900px){

    .hero-choeurs{
        margin:35px auto 45px;
    }

    .choeur-contenu,
    .choeur-card:nth-child(even) .choeur-contenu{
        flex-direction:column;
        gap:30px;
        padding:25px;
    }

    .choeur-photo{
        width:100%;
        flex:none;
    }

    .choeur-photo img{
        aspect-ratio:16/10;
    }

    .choeur-texte h2{
        text-align:center;
    }

    .choeur-texte h2::after{
        margin:16px auto 24px;
    }

    .choeur-texte p{
        text-align:left;
    }

    .btn-info,
    .choeur-card:nth-child(even) .btn-info{
        display:table;
        float:none;
        margin:28px auto 0;
    }
}

/* MOBILE */
@media(max-width:600px){

    .hero-choeurs{
        margin:30px auto 40px;
        padding:0 16px;
    }

    .hero-choeurs h1{
        font-size:2rem;
    }

    .hero-choeurs p{
        font-size:.95rem;
    }

    .choeurs-section{
        padding:0 15px 50px;
    }

    .choeur-contenu{
        padding:20px;
        gap:22px;
        border-radius:18px;
    }

    .choeur-photo img{
        border-radius:12px;
    }

    .btn-info{
        width:100%;
        text-align:center;
    }
}