body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F1F1E2;
    color: #4a4a4a;
}

h1,
h2,
h3,
h5 {
    margin: 0;
}

h1 {
    color: #F1F1E2;
}

h2 {
    color: #6D6B64;
    margin-bottom: 2vh;
    text-align: center;
}


h3 {
    font-family: "Just Me Again Down Here", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    color: #7A7E4F;
}

h4 {
    color: #6D6B64;
    margin-bottom: 1.3vh;
}

h5 {
    font-size: 2em;
}

section{
    padding : 50px 0;
}

p{
    font-size: 0.8em;
    text-align: justify;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SCROLL BAR                                              */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

::-webkit-scrollbar {
    width: 0.8vw;
}

::-webkit-scrollbar-track {
    background: #363D46;
    border-radius: 0vw;
}

::-webkit-scrollbar-thumb {
    background: #959965;
    border-radius: 0.4vw;
}

::-webkit-scrollbar-thumb:hover {
    background: #8c915c;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  NAVIGATEUR                                              */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 2vw;
    z-index: 1000;
    background: rgba(221, 220, 185, 0.7);
}

.navbar-brand img {
    width: 8vw;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    margin-right: 1vw;
}

.nav-link {
    text-decoration: none;
    color: #fff !important;
    padding: 1vh 1.5vw;
    position: relative;
    font-size: 1.1em;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2vh;
    background: #fff;
    left: 0;
    bottom: -1vh;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION 1                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.fullscreen-section {
    background: url('../Image/Site/Dons_fond.jpg') no-repeat center center;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: white;
    text-align: left;
    position: relative;
    padding-bottom: 10px !important;
}
.creditphoto{
    margin: 0;
    padding: 0;
    right: 0;
    position: absolute;
    padding-right: 10px;
    font-size: 0.6em !important;
}

.fullscreen-section .bottom-left-text {
    padding: 1.85vh 1.04vw 10vh 9vw;
    border-radius: 0.93vh 0.52vw;
    margin: 1.85vh 1.04vw 0 0;
}

.fullscreen-section h1 {
    margin: 0;
    font-size: 3.5em;
}

.fullscreen-section p {
    font-size: 1em;
}

.button-container {
    display: flex;
    gap: 20px;
}

.btn-donation,
.btn-sponsor {
    background-color: #F1F1E2;
    color: #7A7E4F;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.8em;
    text-decoration: none;
}

.btn-donation:hover,
.btn-sponsor:hover {
    background-color: #BABA99;
    color: #4a4a4a;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION 2                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/


.donation-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.donation-content p {
    font-size: 0.8em;
    line-height: 1.6;
}

.container {
    max-width: 83%;
}

.btn-project {
    background-color: #7A7E4F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.8em;
    text-decoration: none;
}

.btn-project:hover {
    background-color: #BABA99;
    color: #4a4a4a;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION DON                                             */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.dons {
    background-color: #363D46;
}

.dons h2 {
    color: #F1F1E2;
}

iframe {
    height: 1300px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  SECTION CONTACT                                         */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.contact-section {
    display: flex;
    justify-content: space-between;
    max-width: 83%;
    background-color: #F1F1E2;
    align-items: center;
    margin: auto;
}

.contact-text {
    flex: 1;
    padding-right: 20px;
}

.contact-form {
    flex: 1;
    background-color: #F1F1E2;
    padding: 20px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #7A7E4F;
    color: #fff;
    font-size: 0.8em;
}

.contact-form button {
    margin-bottom: 15px;
    border: none;
    background-color: #363d46 !important;
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.8em;
    text-decoration: none;
}

::placeholder {
    color: #cccccc;
}

.contact-form button {
    background-color: #5a6268;
}

.contact-form button:hover {
    background-color: #4a4a4a;
}

.contact-text h2 {
    text-align: left !important;
}

#thank-you-message {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/************************************************************************************************************/
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/*                                                  TELEPHONE                                               */
/*                                                                                                          */
/*                                                                                                          */
/*                                                                                                          */
/************************************************************************************************************/

.telephone {
    display: none !important;
}

/* Styles généraux pour les téléphones */
@media (max-width: 768px) {
    body {
        font-size: 0.9em;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    .fullscreen-section {
        height: auto;
        padding: 20vh 2vw;
        background-size: cover;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .fullscreen-section .bottom-left-text {
        padding: 15vh 0 2vw 0;
        margin: 0;
    }

    .fullscreen-section h1 {
        font-size: 2.5em;
        padding-bottom: 30px;
    }

    .fullscreen-section p {
        display: none;
    }

    .navbar {
        padding: 0 4vw;
    }

    .navbar-brand img {
        width: 20vw;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        margin-right: 0;
        margin-bottom: 1vh;
    }

    .nav-link {
        font-size: 1.2em;
        padding: 1vh 2vw;
    }

    .telephone {
        display: block !important;
    }

    .ordinateur {
        display: none !important;
    }

    .nav-link {
        color: #3E412E !important;
    }

    .navbar {
        background: rgba(221, 220, 185, 0.9);
    }

    section {
        padding: 3em 1em;
        border-bottom: 0.1vh solid;
    }

    iframe {
        height: 200px;
    }

    .col-12,
    .col-md-6 {
        text-align: center;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .contact-text,
    .contact-form {
        padding: 10px;
        width: 100%;
    }

    .container {
        max-width: 100%;
    }

    .contact-section {
        padding: 20px 0px;
    }

    .contact-section {
        max-width: 100%;
    }
}
