html {
    scroll-behavior: smooth;
  }

body {
    margin: 0;
    padding: 0;
    background-color: #ece6e6;
    font-family: 'lora';
    
}
.container {
    width: 1080px;
}

nav {
    font-family: 'Lora';
    background-color: #ece6e6;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav a {
    color: #000000;
    font-size: 22px;
    padding: 30px 4px;
    text-decoration: none;
    display: block;
    margin: 0 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ece6e6;
}

nav a.active {
    background-color: #ece6e6;
    color: black;
    font-weight: bold;
}

#monTableau {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#monTableau th, #monTableau td {
    padding: 15px;
    text-align: left;
    border-bottom: 4px solid #fff;
}

#monTableau th {
    background-color: #2b2b2b;
    color: rgb(255, 255, 255);
}

#monTableau td {
    background-color: #f5f0e9d0;
}

#monTableau tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

#monTableau tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}

.dataTables_wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 10px;
    margin-left: 50px;
    border: 2px solid #ccc;
    border-radius: 1px;
    font-size: 14px;
    width: 80px;
}

.dataTables_wrapper .dataTables_length select {
    padding: 80px;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_info {
    font-size: 14px;
    color: #000000;
}

.dataTables_wrapper .dataTables_paginate {
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate a {
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000000;
    text-decoration: none;
}

.dataTables_wrapper .dataTables_paginate a:hover {
    color: black;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #a8a8a8;
    color: rgb(0, 0, 0);
}

.main-header {
    text-align: center;
    margin: 5px auto;
    max-width: 800px;
}

.main-header h1 {
    font-family: 'Lora';
    font-size: 2.1rem;
    margin-bottom: 10px;
    font-weight: bold;

}


.h1{
    font-family: 'Lora';
    font-size: 2.1rem;
    margin-bottom: 10px;
    font-weight: bold;

}

.main-header p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    margin: 0;
    border: none;
}

.image-header {
    float: left;  
    width: 150px; 
    height: auto; 
    margin-right: 30px; 
}

.image-header img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    background-color:#ece6e6;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

footer ul li a:hover {
    color: #000000;
}

footer p {
    font-size: 15px;
    margin-top: 10px;
    color: #000000;
}

.presentation {
    font-family: 'Lora';
    font-size: 21px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ece6e6;
    border-radius: none;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
    line-height: 1.5;
    color: #000000;
    width: 1080px;
}

.savoir{
    font-family: 'Lora';
    font-size: 21px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ece6e6;
    border-radius: none;
    box-shadow: 0 2px 2px rgba(172, 172, 172, 0);
    line-height: 1.5;
    color: #000000;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    width: 1080px;
     margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 10px;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel img:hover{
transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}


.formulaire {
    width: 650px;
    margin: 50px auto;
    padding: 20px;
    border: 2px solid #000000;
    border-radius: 10px;
    background-color: #ece6e6;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.en-tete {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.champ {
    display: flex;
    flex-direction: row
}

.formulaire label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.formulaire input,
.formulaire textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.formulaire input {
    height: 35px;
}

.formulaire input::placeholder,
.formulaire textarea::placeholder {
    color: #888;
}

.formulaire button {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.formulaire .form-group {
    margin-bottom: 20px;
}

.formulaire {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.formulaire label {
    margin-bottom: 8px;
}

.radio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* Style personnalisé des boutons radio */
.radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    appearance: none; 
    border: 2px solid #333;
    border-radius: 50%;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

/* Ajout du point au centre quand sélectionné */
.radio-group input[type="radio"]:checked {
    border: 2px solid #333;
}

.radio-group input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease-in-out;
}

/* Quand sélectionné, le point apparaît */
.radio-group input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}
.container {
    width: 100%;
    margin: 0 auto;
}

header {
    padding: 1em 0;
    text-align: center;
}

main {
    padding: 2em 0;
    text-align: center;
    font-size: 1em;
}

footer {
    text-align: center;
    padding: 1em 0;
}
.dizidef{
    float: left;
    font-family: 'lora';
}


.image-footer{
    margin-right: 300px; 
    margin-left: 300px;
    width: 200px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2px;
    position: relative;
    font-size: 1px;
}

.footer-menu li a {
    text-decoration: none;
    color: #000000;
    font-weight: normal;
}

footer {
    padding: 20px 0;
    text-align: center;
}

.favorites {
    font-family: 'Poppins';
    text-align: center;
    padding: 40px 0;
}

.favorites-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.favorite-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    width: 220px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.favorite-item img {
    width: 100%;
    border-radius: 10px;
}

.favorite-item h3 {
    font-size: 1.1em;
    margin: 10px 0;
}

.favorite-item p {
    font-size: 0.9em;
    color: #555;
}

.rating {
    font-size: 1.2em;
    margin: 8px 0;
    color: #FFD700;
}

.discover-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.favorites {
    text-align: center;
    padding: 20px;
  }
  
  .favorites-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
  }
  
  .favorite-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    text-align: center;
  }
  
  .favorite-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .favorite-item h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  
  .favorite-item p {
    font-size: 14px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    overflow: hidden;
  }
  
  .rating {
    font-size: 20px;
    margin-top: 10px;
  }
  
  .logo {
    display: block;
    position: absolute; 
    top: 5px; 
    left: 25px; 
    width: 100px; 
    height: auto;
    z-index: 10; 
}



.galerie {
    width: 1080px; /* Largeur fixe */
    margin: 0 auto; /* Centre la galerie */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    justify-items: center; 
  }
  
  
  .galerie img {
    width: 213px;
    height: 340px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease-out;
    filter: grayscale(100%);
    border-radius: 8px; 
  }
  
  
  .galerie img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
  }


  .nous {
    display: flex;
    max-width: 80%;
    justify-content: flex-start;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0);
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
}

.nous p {
    font-size: 17px;
    color: #000000;
}

.cmts {
    position: absolute;
    width: 9%;
    top: 68%;
    left: 75%;
}

.myriam, .thais, .sherazade, .camille {
    display: flex;
    max-width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.808);
    margin-top: 50px;
}

.myriam {
    margin-left: 15px;
    margin-right: 300px;
}

.myriam p {
    margin-left: -50px;
    font-size: 20px;
    color:#ffffff;
}

.thais {
    margin-left: 300px;
    margin-right: 15px;
}
.thais p {
    margin-left: 20px;
    font-size: 20px;
    color:#ffffff;
}

.sherazade {
    margin-left: 15px;
    margin-right: 300px;
}
.sherazade p {
    margin-left: -50px;
    font-size: 20px;
    color:#ffffff;
}

.camille {
    margin-left: 300px;
    margin-right: 15px;
    margin-bottom: 50px;
}
.camille p {
    margin-left: 20px;
    font-size: 20px;
    color:#ffffff;
}


.myriam img, .thais img, .sherazade img, .camille img {
    width: 33.33%; 
    height: 100%; 
    object-fit: cover; 
    flex-shrink: 0; 
}

.partenaires{
width: 1110px;
}

.partenaires h2, h3, h4 {
    display: flex;
    align-items: flex-start;
    font-family: "Outfit";
    margin-top: 5px;
    margin-left: 15px;
    font-size: 27px;
    color: #ffffff;
}

.image {
    position: relative;
    width: 30%;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffd3;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: "Outfit";
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.image:hover .link {
    opacity: 1;
    transform: translateY(0);
}

.largeur {
    width: 1080px;
    margin: 0 auto;
}

.texte {
   position: absolute;
   justify-content: center;
}

.texte p {
    font-size:20px;
    margin-right: 450px;
    margin-left: 10px;
    color:#ffffff
}

.textea {
    position: absolute;
    justify-content: center;
 }
 
 .textea p {
     font-size:20px;
     margin-right: 180px;
     margin-left: 0 auto;
     color:#ffffff
 }

 .gprojet {
    display: flex;
    justify-content: center;
  }
  .gprojet a {
    margin-left: 8px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.822);;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .gprojet a:hover {
    background-color: #00000069;
    transform: scale(1.03);
  }
