/* =========================================================
   FRENCHSOGOOD - MENTIONS LEGALES
========================================================= */

@font-face {
    font-family: 'HarlowSI';
    src: url('../fonts/HARLOWSI.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fsg-legal-page {
    background: #f7f7fb;
    padding-bottom: 80px;
}

/* =========================================================
   BANNER
========================================================= */

.fsg-legal-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #08006b;
}

.fsg-legal-banner img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.fsg-legal-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 0, 107, 0.22);
    z-index: 1;
}

.fsg-legal-banner h1 {
    font-family: 'HarlowSI', sans-serif !important;
    position: absolute;
    z-index: 2;
    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 20px #000;
    white-space: nowrap;
}

/* =========================================================
   INTRO SOUS BANNER
========================================================= */

.fsg-legal-intro {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid rgba(8, 0, 107, 0.12);
}

.fsg-legal-intro p {
    margin: 0;
    color: #08006b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

/* =========================================================
   CONTENT
========================================================= */

.fsg-legal-content {
    padding-top: 55px;
}

.fsg-legal-content .fsg-container {
    max-width: 980px;
}

.fsg-legal-card {
    background: #fff;
    border: 2px solid #08006b;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.fsg-legal-card h2 {
    margin: 0 0 20px;
    color: #08006b;
    font-size: 28px;
    line-height: 1.2;
}

.fsg-legal-card p {
    margin: 0 0 18px;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.fsg-legal-card p:last-child {
    margin-bottom: 0;
}

.fsg-legal-list {
    margin: 0;
    padding-left: 22px;
}

.fsg-legal-list li {
    margin-bottom: 12px;
    color: #222;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .fsg-legal-banner img {
        height: 240px;
    }

    .fsg-legal-banner h1 {
        font-size: clamp(2.2rem, 8vw, 4rem);
        bottom: 34%;
    }

    .fsg-legal-intro {
        padding: 24px 0;
    }

    .fsg-legal-intro p {
        font-size: 16px;
    }

    .fsg-legal-card {
        padding: 26px;
        border-radius: 20px;
    }

    .fsg-legal-card h2 {
        font-size: 24px;
    }

    .fsg-legal-card p,
    .fsg-legal-list li {
        font-size: 15px;
    }
}

@media (max-width: 560px) {

    .fsg-legal-banner img {
        height: 180px;
    }

    .fsg-legal-banner h1 {
        font-size: 2.4rem;
        white-space: normal;
        width: calc(100% - 40px);
    }

    .fsg-legal-intro p {
        font-size: 15px;
    }

    .fsg-legal-content {
        padding-top: 35px;
    }

    .fsg-legal-card {
        padding: 22px;
    }

    .fsg-legal-card h2 {
        font-size: 21px;
    }
}