body {
    background-color: #000000;
    color: white;
    margin: 0;
    font-family: "Nunito", sans-serif !important;
    padding-top: 80px;
}

html {
    scroll-behavior: smooth;
}

p {
    font-weight: 500 !important;
}

h2, h3 {
    font-weight: 700 !important;
}

/*======================
    SCROLL BAR
======================*/

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #00000000;
}

::-webkit-scrollbar-thumb {
    background: #d23434d2;
    border-radius: 100px;
}

/*======================
    NAV BAR
======================*/

#Nav-Bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;

    display: flex;
    flex-direction: row !important;

    transition: 1s;

}

#Nav-Bar h2 {
    margin-left: 3%;
    z-index: 9999;
}

#Pulse {
    color: #d23434d2;
}

.nav-btn {
    border: none;
    background: none;
    color: white;
    font-size: clamp(20px, 2vw, 50px);
    font-family: "Nunito", sans-serif !important;
    font-weight: 700;
    z-index: 9999;
    text-decoration: none;
    transition: 1s;
}

@media (min-width: 768px) {
    .nav-btn:hover {
        color: #d23434d2;
    }
}

#nav-bouton {
    margin-left: auto;
    margin-top: 1.3%;
    padding: 0 2%;
    display: flex;
    gap: 20px;
}

@media (min-width: 768px) {
    .nav-btn:hover {
        cursor: pointer !important;
    }
}

/*======================
    ANIMATION
======================*/

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*=================
    ACCEUIL
=================*/

#accueil {
    width: 100%;
    height: 100vh ;
    display: flex;
    flex-direction: column !important;
    overflow: hidden;
}

#accueil::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("Image/Acceuil.jpg") right no-repeat !important;
    background-size: 70% !important;
    z-index: 0;
    filter: blur(0px);
    overflow: hidden !important;
}

#accueil h2{
    color: #d23434d2;
    position: relative;
    margin-top: 10%;
    margin-left: 2%;
    font-size: clamp(20px, 3vw, 50px);
    width: 100%;

    /* Animation de slide (gauche vers droite) */
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

#accueil p{
    color: #ffffffd2;
    margin-top: 0%;
    margin-left: 2%;
    font-size: 15px;
    z-index: 3;
    width: 40%;

    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

#accueil a{
    color: #ffffffd2;
    margin-top: 1%;
    margin-left: 2%;
    font-size: 15px;
    width: 16%;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(20px, 1.3vh, 50px);
    transition: 1s;

    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

@media (min-width: 768px) {
    #accueil a:hover{
        color: #d23434d2;
    }
}

/*=================
    SERVICES
=================*/

#services {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    box-shadow: 0 -20px 40px #d234347b;
    position: relative;
    z-index: 5;
}

#services h2 {
    color: #d23434d2;
    margin-top: 4%;
    font-weight: 300;
    font-size: clamp(20px, 3vw, 50px);
}

#services-block {
    display: flex;
    flex-direction: row;
    margin: 40px auto;
    gap: 1%;
}

.services-card {
    border: 1px solid #d23434d2;
    border-radius: 15px;
    flex: 1;
    padding: 0 10px;
    margin: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
    text-align: center;
}

/*=================
    PRIX
=================*/

#prix {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    align-items: center;
    margin-top: -10%;
    margin-bottom: 10%;
}

#prix h2 {
    color: #d23434d2;
    margin-top: 4%;
    font-weight: 300;
    font-size: clamp(20px, 3vw, 50px);
}

#bloc-prix {
    display: flex;
    flex-direction: row;
    margin: 3%;
    gap: 5%;
    margin-left: 5%;
}

/*=================
    A PROPOS
=================*/

#a-propos {
    width: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    z-index: 5;
    margin: auto; 
    border: 2px solid #d234347b;
    border-radius: 20px;
    background-color: #202020c4;
    padding: 1%;
}

#a-propos h2 {
    font-size: clamp(20px, 3vw, 50px);
}

#propos-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    align-items: flex-start;
}

#propos-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -19%;
    align-items: flex-end;
}

#propos-1 p, #propos-2 p {
    flex: 1;
    font-size: clamp(20px, 1.3%, 40px);
}

#img-propos-1 {
    width: 50%;
    height: auto;
    border-radius: 20px;
    transform: translate(6%, 6%);
}

#img-propos-2 {
    width: 50%;
    height: auto;
    border-radius: 20px;
    transform: translate(-6%, -6%); 
    position: relative;
}

/*=================
    CONTACT
=================*/

/* #contact {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    box-shadow: 0 -20px 40px #d234347b;
    position: relative;
    z-index: 5; 
} */

/*=================
    FOOTER
=================*/

#footer {
    width: 100%;
    height: 25vh;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    box-shadow: 0 -5px 40px #d234347b;
    border-top: 2px solid #d234347b;
    position: relative;
    z-index: 5; 
    margin-top: 5%;
}

#footer-gauche {
    display: flex;
    flex-direction: column;
    text-align: left !important;
    position: relative; 
    margin: 0 2%;
    
}

#bloc-footer-gauche {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

#footer-mail {
    display: flex;
    flex-direction: column;
}

.text-footer {
    color: white;
    text-decoration: none;
}

#footer-lieux {
    margin-left: 4%;
}

#footer-contact {
    margin-left: 5%;
}

#footer-titre {
    margin-left: 1%;
}

#copyright {
    gap: 3%;
    margin-top: 7%;
    margin: auto;
}

#footer-btns {
    display: flex;
    gap: 20px;
}

.footer-btn {
    border: none;
    background: none;
    color: white;
    font-size: clamp(20px, 2vw, 50px);
    font-family: "Nunito", sans-serif !important;
    font-weight: 700;
    text-decoration: none;
    transition: 1s;
}

@media (min-width: 768px) {
    .footer-btn:hover {
        color: #d23434d2;
    }
}