/* =========================================================
   À DONF LES WATTS
   PAGE À PROPOS
   VERSION TRÈS LISIBLE
   ========================================================= */

.about-page {
    width: 92%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 32px 0 65px;
}


/* =========================================================
   TITRE DE PAGE
   ========================================================= */

.about-heading {
    margin-bottom: 30px;

    text-align: center;
}


.about-kicker {
    display: inline-block;

    margin: 0 0 9px;

    padding: 5px 14px;

    border-radius: 20px;

    background:
        rgba(5, 5, 15, 0.82);

    color: #ffd400;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: 3px;
}


.about-heading h1 {
    margin: 0 0 15px;

    font-family:
        "Staatliches",
        Impact,
        sans-serif;

    font-size:
        clamp(56px, 5vw, 76px);

    line-height: 1;

    letter-spacing: 2px;

    color: #ffffff;

    text-shadow:
        3px 3px 0 #c61f36,
        0 0 12px #000000;
}


.about-intro {
    max-width: 900px;

    margin: 0 auto;

    padding: 12px 22px;

    border-radius: 20px;

    background:
        rgba(5, 5, 15, 0.85);

    color: #ffffff;

    font-size: 20px;
    line-height: 1.5;

    font-weight: 700;
}


/* =========================================================
   CONTENU
   ========================================================= */

.about-content {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   BLOCS
   ========================================================= */

.about-block {
    padding: 28px 30px;

    border: 2px solid #ff7300;

    border-radius: 15px;

    background:
        rgba(5, 5, 15, 0.93);

    box-shadow:
        0 0 0 2px
        rgba(255, 255, 255, 0.06),

        0 9px 22px
        rgba(0, 0, 0, 0.42);
}


.about-main {
    grid-column: 1 / -1;

    border-color: #ffd400;

    background:
        linear-gradient(
            135deg,
            rgba(115, 13, 43, 0.94),
            rgba(25, 12, 65, 0.94)
        );
}


/* =========================================================
   TITRES DES BLOCS
   ========================================================= */

.about-block h2 {
    margin: 0 0 17px;

    font-family:
        "Staatliches",
        Impact,
        sans-serif;

    font-size: 40px;

    line-height: 1;

    letter-spacing: 1px;

    color: #ffffff;

    text-shadow:
        2px 2px 0 #a8182c;
}


/* =========================================================
   TEXTES
   ========================================================= */

.about-block p {
    margin: 0 0 18px;

    color: #f3f3f3;

    font-size: 20px;

    line-height: 1.55;
}


.about-block p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PHRASE MISE EN AVANT
   ========================================================= */

.about-highlight {
    margin-top: 22px !important;

    padding: 14px 17px;

    border-left: 5px solid #ffd400;

    background:
        rgba(255, 212, 0, 0.09);

    color: #ffd400 !important;

    font-size: 20px !important;

    line-height: 1.5 !important;

    font-weight: 900;
}


/* =========================================================
   BOUTONS
   ========================================================= */

.about-button {
    display: inline-block;

    margin-top: 8px;

    padding: 10px 17px;

    border-radius: 6px;

    background:
        linear-gradient(
            90deg,
            #ed2734,
            #ff7100
        );

    color: #ffffff;

    text-decoration: none;

    font-family:
        "Staatliches",
        Impact,
        sans-serif;

    font-size: 22px;

    letter-spacing: 0.5px;

    box-shadow:
        3px 3px 0 #ffd400;

    transition: 0.2s;
}


.about-button:hover {
    transform: translateY(-2px);

    box-shadow:
        4px 5px 0 #ffd400;
}


.about-button-secondary {
    background:
        linear-gradient(
            90deg,
            #006fe8,
            #00a8e8
        );
}


/* =========================================================
   BLOC YOUTUBE
   ========================================================= */

.about-youtube {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    border-color: #ff2638;

    background:
        linear-gradient(
            110deg,
            rgba(120, 10, 25, 0.95),
            rgba(7, 7, 17, 0.96)
        );
}


.about-youtube > div {
    flex: 1;
}


.about-youtube-button {
    flex-shrink: 0;

    display: inline-block;

    padding: 14px 21px;

    border-radius: 7px;

    background: #ed2734;

    color: #ffffff;

    text-decoration: none;

    font-family:
        "Staatliches",
        Impact,
        sans-serif;

    font-size: 24px;

    letter-spacing: 0.6px;

    box-shadow:
        4px 4px 0 #ffd400;

    transition: 0.2s;
}


.about-youtube-button:hover {
    transform: translateY(-2px);

    background: #ff7100;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 800px) {

    .about-content {
        grid-template-columns: 1fr;
    }


    .about-main,
    .about-youtube {
        grid-column: auto;
    }


    .about-youtube {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .about-page {
        width: 90%;

        padding-top: 25px;
    }


    .about-kicker {
        font-size: 18px;
    }


    .about-heading h1 {
        font-size: 50px;
    }


    .about-intro {
        font-size: 18px;
    }


    .about-block {
        padding: 22px 20px;
    }


    .about-block h2 {
        font-size: 34px;
    }


    .about-block p {
        font-size: 18px;

        line-height: 1.5;
    }


    .about-highlight {
        font-size: 18px !important;
    }


    .about-button {
        font-size: 20px;
    }


    .about-youtube-button {
        font-size: 21px;
    }

}