/* Hero */

.hero {
    max-width: 1200px;
    margin: 50px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.hero::before,
.hero::after {
    content: "";
    display: block;
    height: 1px;
    background: #e8dcc7;
}

.hero::before {
    margin-bottom: 25px;
}

.hero::after {
    margin-top: 25px;
}

.hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;

    color: #334155;
}


/* Section */

section {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 70px;
}


/* Présentation */

.choeur-presentation {
    display: flex;
    align-items: center;

    gap: 60px;
}

.choeur-texte {
    flex: 1;
}

.choeur-img {
    flex: 0 0 420px;
}

.choeur-img img {
    width: 100%;
    display: block;

    border-radius: 6px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}


/* Titre */

.choeur-texte h1 {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;

    color: #334155;
}

.choeur-texte h1::before {
    content: "";

    width: 35px;
    height: 3px;

    background: #C9A66B;

    border-radius: 50px;
}


/* Texte */

.choeur-texte p {
    margin-bottom: 20px;

    color: #475569;

    line-height: 1.9;

    text-align: justify;
}

.choeur-texte p:last-child {
    margin-bottom: 0;
}


/* Tablette */

@media (max-width: 1100px) {

    section {
        padding: 0 30px 60px;
    }

    .choeur-presentation {
        gap: 40px;
    }

    .choeur-img {
        flex: 0 0 350px;
    }

}


/* Mobile */

@media (max-width: 900px) {

    .hero {
        margin: 35px auto 45px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .choeur-presentation {
        flex-direction: column;

        gap: 35px;
    }

    .choeur-texte {
        width: 100%;
    }

    .choeur-img {
        width: 100%;
        flex: initial;
    }

    .choeur-img img {
        max-width: 100%;
    }

    .choeur-texte p {
        text-align: left;
    }

}


/* Petit mobile */

@media (max-width: 600px) {

    section {
        padding: 0 15px 45px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .choeur-presentation {
        gap: 25px;
    }

    .choeur-texte h1 {
        font-size: 1.7rem;
    }

    .choeur-texte h1::before {
        width: 25px;
    }

}