/* ------------------------------ FONT ------------------------------ */
@font-face {
    font-family: 'Sorts Mill Goudy';
    src: url('font/SortsMillGoudy-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Pinyon Script';
    src: url('font/PinyonScript-Regular.ttf') format('truetype');
}

/* ------------------------------ BASE ------------------------------ */
* {
    box-sizing: border-box;
}

body {
    background-image: url('fond1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}
  
img {
    width: 100%;
    height: auto;
    margin: 0px 0px 0px 0px;
}

h1 {
    color: #000000;
    font-size: 70px;
    font-family: 'Sorts Mill Goudy';
    font-weight: normal;
    line-height: 1.2;
}

h2 {
    font-family: 'Pinyon Script';
    font-size: 40px;
    color: black;
    margin: 0px 0px 0px 30px;
}

p {
    margin: 0px 0px 0px 30px;
    font-family: 'Sorts Mill Goudy';
    font-size: 20px;
}

/* ------------------------------ HEADER AVEC BANDE ------------------------------ */
.header-section {
    margin-bottom: 40px;
}

.header-band {
    width: 100%;
    height: auto;
    min-height: 180px;
    background-image: url('testfond3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.gros_titre {
    margin: 0;
    padding: 40px 0px 40px 30px;
}

.lettre1 {
    font-family: 'Pinyon Script';
}

.lettre2 {
    font-family: 'Sorts Mill Goudy';
}

/* ------------------------------ CONTENU ------------------------------ */
.content-section {
    padding: 0;
}

.barre1 {
    width: 100%;
    height: auto;
}

/* ------------------------------ IMAGES STICKY ------------------------------ */
.img-sticky {
    position: sticky;
    top: var(--top);
    right: 20px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 90%;
    z-index: 10;
}

/* ------------------------------ RESPONSIVE TABLETTE ------------------------------ */
@media screen and (max-width: 1024px) {
    .header-band {
        min-height: 150px;
    }

    h1 {
        font-size: 60px;
    }

    .gros_titre {
        padding: 35px 0px 35px 25px;
    }

    .img-sticky {
        width: 70px;
        height: 70px;
        margin-left: 85%;
    }
}

/* ------------------------------ RESPONSIVE MOBILE ------------------------------ */
@media screen and (max-width: 768px) {
    .header-band {
        min-height: 130px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 35px;
        margin: 0px 0px 0px 20px;
    }

    p {
        font-size: 18px;
        margin: 0px 0px 0px 20px;
    }

    .gros_titre {
        padding: 30px 0px 30px 20px;
    }

    .img-sticky {
        width: 60px;
        height: 60px;
        margin-left: 80%;
    }
}

@media screen and (max-width: 480px) {
    .header-band {
        min-height: 110px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
        margin: 0px 0px 0px 15px;
    }

    p {
        font-size: 16px;
        margin: 0px 0px 0px 15px;
        line-height: 1.5;
    }

    .gros_titre {
        padding: 20px 0px 20px 15px;
    }

    .img-sticky {
        width: 50px;
        height: 50px;
        margin-left: 75%;
    }
}