body {
    font-family: 'Archivo', sans-serif;
    margin: 0;
    background-color: #7845AD;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    margin: 0;
}

h2 {
   font-family: 'Clash Display', sans-serif;
   font-weight: 600;
   font-display: swap;
   font-style: normal;
   margin: 0;
}

a {
   font-family: 'Clash Display', sans-serif;
   font-weight: 600;
   font-display: swap;
   font-style: normal;
   font-size: clamp(25px, 4vw, 40px); 
}

.Logo {
    text-decoration: none;
    color: #EBD66C;
    font-weight: bolder;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #371A51;
    padding: clamp(10px, 2vw, 20px) clamp(15px, 4vw, 40px);
    z-index: 50;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #371A51;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 99;
    padding: 40px;
    padding-top: 70px;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.menu-links {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.menu-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.fullscreen-menu.active .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .menu-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .menu-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.menu-links a {
    color: #F8F2CD;
    text-decoration: none;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-links a:hover {
    transform: scale(1.1);
    color: #EBD66C;
}

.navbar {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(80px, 12vw, 100px);
    background-color: #371A51;
    z-index: 200;
}

.burger-icon {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: fixed;
    top: clamp(25px, 4vw, 40px);
    right: clamp(25px, 4vw, 40px);
    z-index: 200;
}

.burger-icon span {
    width: 100%;
    height: 3px;
    background: #E8DDF7;
    transition: all 0.3s ease;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.form_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(30px, 5vw, 80px) clamp(30px, 5vw, 80px);
    margin-top: clamp(130px, 10vw, 180px);
    margin-bottom: clamp(50px, 10vw, 100px);
}

form {
    background-color: #371A51;
    max-width: 1000px;
    width: 100%;
    padding: clamp(30px, 5vw, 60px);
    width: clamp(300px, 61vw, 1000px);
}

form h1 {
    color: #EBD66C;
    margin-bottom: 20px;
}

form h2 {
    color: #F8F2CD;
}

input {
    background-color: white;
    border: none;
    width: 100%;
    padding: 20px;
}

.champ_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

textarea {
    resize: none;
    width: 100%;
    height: 150px;
}

.buttons_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit_button {
    font-family: clash display;
    font-weight: 600;
    width: 60%;
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    background-color: #EBD66C;
    color: #371A51;
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    font-size: clamp(12px, 2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit_button:hover {
    background-color: #7845AD;
    color: #EBD66C;
    transform: scale(1.05);
}

.reset_button {
    font-family: clash display;
    font-weight: 600;
    width: 40%;
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    background-color: #7845AD;
    color: #EBD66C;
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    font-size: clamp(12px, 2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.reset_button:hover {
    background-color: #EBD66C;
    color: #371A51;
    transform: scale(1.05);
}


@media (min-width: 300px) {
    form h1 {
        font-size: 24px;
    }

    form h2 {
        font-size: 18px;
    }
}

@media (min-width: 990px) {
    form h1 {
        font-size: 36px;
    }

    form h2 {
        font-size: 24px;
    }
}


footer {
    background-color: #371A51;
    padding-right: clamp(50px, 7vw, 132px);
    padding-left: clamp(50px, 7vw, 132px);
    padding-top: clamp(20px, 3vh, 50px);
    padding-bottom: clamp(20px, 3vh, 50px);
    color: #F8F2CD;
    margin-top: auto;
}

footer h1 {
    color: #EBD66C;
    margin: 0;
    font-size: clamp(20px, 3vw, 32px);
}

footer h2 {
    color: #EBD66C;
    margin: 0;
    font-size: clamp(16px, 3vw, 24px);
}

footer p {
    margin: 0;
    font-size: 1rem;
}

.footer_content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(5px, 5vw, 20px);
}

.coordonnées {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 2vw, 20px);
}

.détails_coo {
    display: flex;
    flex-direction: column;
}

.plan_site {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 2vw, 20px);
}

.plan_site a {
    color: #F8F2CD;
    text-decoration: none;
    font-size: 1rem;
    font-family: Archivo;
    font-weight: normal;
}

.plan_site a:hover {
    color: #EBD66C;
}

.liens_plan {
    display: flex;
    flex-direction: column;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(5px, 2vw, 20px);
}

.contact p {
    width: clamp(50px, 30vw, 218px);
}

.contact_button {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-display: swap;
    font-style: normal;
    background-color: transparent;
    border: 1px solid #EBD66C;
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact_button {
    text-decoration: none;
    font-size: 1rem;
    color: #EBD66C;
}

.contact_button:hover {
    background-color: #EBD66C;
    color: #371A51;
    transform: scale(1.05);
}

.social_media {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.social_media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid #EBD66C;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social_media a:hover {
    background-color: #EBD66C;
    transform: scale(1.1);
}

.social_media a svg {
    width: 20px;
    height: 20px;
    fill: #EBD66C;
    transition: fill 0.3s ease;
}

.social_media a:hover svg {
    fill: #7845AD;
}