@font-face {
    font-family: "gladiola";
    font-weight: normal;
    src: url(./Font/gladiola-regular.ttf) format("truetype");
}

@font-face {
    font-family: "agrandir";
    font-weight: normal;
    src: url(./Font/Agrandir-Regular.otf) format("opentype");
}

@font-face {
    font-family: "sego";
    font-weight: normal;
    src: url(./Font/Sego.otf) format("opentype");
}

body {
    margin: 0 auto;
    text-align: center;
    background-color: rgb(239, 222, 215);
    overflow-x: hidden; /* Empêche le débordement horizontal */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.gladiola {
    font-family: gladiola, serif;
    font-size: 30px;
}

nav a {
    font-family: agrandir, serif;
}

h1 {
    font-family: sego, serif;
}

h2 {
    font-family: sego, serif;
    font-size: 40px;
}

h3 {
    font-family: agrandir, serif;
}

p {
    font-family: agrandir, serif;
}

nav {
    background-color: white;
    border-radius: 5px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #f6ba83;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

nav img {
    max-width: 100px;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 25px;
    transition: transform 0.5s ease, color 0.3s ease;
    display: inline-block;
}

nav a:hover {
    color: #fff; /* Devenir blanc au survol */
    transform: scale(1.25); /* Zoom à 120% */
}

#contact a {
    background-color: rgb(144, 174, 116);
    padding: 15px 10px;
    border-radius: 10px;
}

#rubrique {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.menuderoulant {
    list-style: none;
    display: flex;
    flex-direction: row;
    text-align: center;
}

.menuderoulant li {
    display: flex;
    flex-direction: row;
    width: 300px;
    position: relative;
    justify-content: center;
}

.menuderoulant li a:link, .menuderoulant li a:visited {
    display: block;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
    background-color: #f6ba83;
}

.menuderoulant li a:hover {background-color: #f6ba83;}
.menuderoulant li a:active {background-color: #f6ba83;}

.menuderoulant .sousmenuderoulant {
    list-style-type: none;
    display: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: #f6ba83;
    top: 110%;
    z-index: 1000;
}

.menuderoulant .sousmenuderoulant li {
    margin: 0;
    padding: 0;
    text-align: center;
}

.menuderoulant .sousmenuderoulant li a:link, .menuderoulant li a:visited {
    display: block;
    text-decoration: none;
}

.menuderoulant li:hover .sousmenuderoulant {
    display: block;
}

#section10 {
    margin-top: 100px;
    background-color: #e1b1b0;
    padding: 10px 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

#div32 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}

#div21 img {
    width: 35px;
}

#div21 {
    gap: 15px;
}

#div22 {
    gap: 30px;
}

#div23 img {
    width: 250px;
}

#div25 p {
    margin: 8px 0;
}

#div25 a {
    text-decoration: none;
    color: black;
    transition: transform 0.5s ease, color 0.3s ease;
    display: inline-block;
}

#div25 a:hover {
    color: #fff; /* Devenir blanc au survol */
    transform: scale(1.25); /* Zoom à 120% */
}

#div26 {
    margin: 0 auto;
}

#div26 h3 {
    transform: translateX(-10px);
}

#div27 a {
    text-decoration: none;
    color: black;
    transition: transform 0.5s ease, color 0.3s ease;
    display: inline-block;
}

#div27 a:hover {
    color: #fff; /* Devenir blanc au survol */
    transform: scale(1.25); /* Zoom à 120% */
  }

#instagram {
    width: 70px;
}

#facebook {
    width: 30px;
}

#div28 {
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin: 0 auto;
}

#div29 {
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    right: 80px;
}

.logo {
    display: inline-block;
    transition: all 0.3s ease-in-out;
    height: auto;
}

.logo:hover {
    transform: scale(1.3); /* Agrandit légèrement le logo */
    filter: brightness(1.2); /* Rend le logo plus lumineux */
}

#div1034 {
    align-items: center;
    width: 200px;
    margin: 0 auto;
}

#logohg {
    width: 50px;
}

#div1034 a {
    text-decoration: none;
    color: black;
    font-family: agrandir, sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: #90ae74;
}

label { 
    font-weight: bold;
    font-family: agrandir, sans-serif;
    text-align: left;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.LBDC {
    color: white;
    text-decoration: none;
    font-family: gladiola, sans-serif;
}