@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: ease-out 200ms;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease-out 200ms;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  background: rgba(0, 0, 0, 0.6);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 130%;
  background-position: 50% top;
  width: 100%;
  height: 100%;
}

.icon {
  width: 1em;
  height: 1em;
}

main {
  width: 100%;
  height: 110vh;
}
main .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px 70px;
}
main .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #fff;
}
main .header .logo {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
main .header nav {
  display: flex;
  align-items: center;
  height: 33px;
}
main .header nav a {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
}
main .header nav a:not(:last-child) {
  margin-right: 80px;
}
main .header nav a:hover {
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}
main .header nav a.active {
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}
main .header .right .search svg {
  fill: #fff;
  font-size: 23px;
  cursor: pointer;
}
main .hero {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
main .hero-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70px;
}
main .hero-left a:not(:last-child) {
  margin-bottom: 40px;
}
main .hero-left a svg {
  font-size: 20px;
  fill: #fff;
}
main .hero-content {
  flex: 1;
  text-align: center;
}
main .hero-content .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  width: 100%;
  position: relative;
  margin-top: 60px;
}
main .hero-content .title h1 {
  font-size: 133px;
  font-weight: 900;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.55);
}
main .hero-content .title img {
  position: absolute;
  top: 120px;
  left: -35px;
  pointer-events: none;
  width: 100%;
  max-width: 441px;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 5s;
}
@-webkit-keyframes run {
  0% {
    left: 0;
  }
  50% {
    left: 10%;
  }
  100% {
    left: 0;
  }
}
main .hero-content .title h2 {
  width: 60%;
  font-size: 37px;
  font-weight: 600;
  z-index: 1;
  margin-top: -27px;
}
main .hero-content .title button {
  height: 40px;
  background-color: #dd3012;
  padding-left: 30px;
  padding-right: 30px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
}
main .hero-right {
  display: flex;
  justify-content: center;
  width: 70px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
}
main .footer {
  display: flex;
  justify-content: flex-end;
  text-align: left;
}
main .footer .item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 310px;
  height: 115px;
  color: #fff;
  padding: 20px 30px;
  position: relative;
}
main .footer .item.active {
  background: rgba(0, 0, 0, 0.11);
}
main .footer .item h3 {
  font-size: 18px;
  font-weight: 600;
}
main .footer .item p {
  font-size: 16px;
  margin-top: 5px;
}
main .footer .item .cancel-btn {
  position: absolute;
  top: 20px;
  right: 30px;
}
main .footer .item .cancel-btn svg {
  fill: #fff;
  font-size: 14px;
}

.owner-coding {
  right: 1em;
}
.owner-design {
  left: 1em;
}
.owner-design, .owner-coding {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  color: #fff;
  bottom: 1em;
  text-decoration: none;
  font-size: 12px;
}
.owner-design .avatar, .owner-coding .avatar {
  width: 26px;
  height: 26px;
  margin: 0 5px;
  border-radius: 100px;
  overflow: hidden;
}
.owner-design .avatar img, .owner-coding .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff; /* Texte en blanc pour un meilleur contraste sur un fond sombre */
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
     /* Fond semi-transparent pour améliorer la lisibilité du texte */
    border-radius: 10px;
    
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #ffffff; /* Bordure blanche en bas de l'en-tête */
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a.active {
    border-bottom: 2px solid #ffffff;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.hero-content {
    text-align: center;
}

.title .toptitle {
    font-size: 48px;
    margin: 0;
}

.subtitle {
    font-size: 24px;
}

.icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    margin: 0 10px;
}

.hero-right {
    font-size: 18px;
}

.container {
    position: relative;
    z-index: 1;
    /* Le reste de votre style pour la mise en page */
}

/* Pour le formulaire spécifique, si nécessaire */
form {
    background: rgba(255, 255, 255, 0.8); /* Fond semi-transparent pour contraste */
    /* Le reste du style du formulaire */
}
/* Styles pour la galerie d'images */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Occupe toute la hauteur de la fenêtre */
}

.gallery-frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.frame-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.image-container {
    position: relative;
    width: 300px; /* Ajustez la taille des images */
    height: 300px;
    margin: 0 15px; /* Espace entre les images */
    border: 2px solid #ddd; /* Bordure autour des images */
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* Styles pour la galerie d'images */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Occupe toute la hauteur de la fenêtre */
}

.gallery-frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.frame-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.image-container {
    position: relative;
    width: 300px; /* Ajustez la taille des images */
    height: 300px;
    margin: 0 15px; /* Espace entre les images */
    border: 2px solid #ddd; /* Bordure autour des images */
    overflow: hidden;
    cursor: pointer; /* Curseur pointer pour indiquer que c'est cliquable */
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

/* Styles pour la navigation */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Styles pour le modal de zoom */
.modal {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Fond semi-transparent */
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%; /* Ajustez la taille de l'image modale */
    max-width: 700px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Couleur d'arrière-plan douce pour toute la page */
    color: #333; /* Couleur de texte principale */
    margin: 0;
    padding: 0;
}

.header {
    
    color: #fff;
    padding: 10px;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a.active {
    border-bottom: 2px solid #ff5722; /* Indicateur de lien actif */
}

.contact-section {
    background-color: #fff; /* Couleur d'arrière-plan blanc pour la section de contact */
    padding: 40px;
    max-width: 800px; /* Largeur maximale de la section */
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre douce autour de la section */
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacement entre les éléments */
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px; /* Espacement entre les colonnes */
    justify-content: space-between; /* Distribution de l'espace */
}

.form-group {
    flex: 1; /* Chaque groupe occupe une largeur égale */
    min-width: 0; /* Pour éviter que les champs ne soient trop larges */
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

input {
    width: 100%; /* Les inputs utilisent toute la largeur du conteneur */
    padding: 12px;
    border: 1px solid #ccc; /* Bordure légère pour les champs de saisie */
    border-radius: 4px;
    box-sizing: border-box; /* Inclut la bordure et le padding dans la largeur totale */
    font-size: 16px;
    transition: border-color 0.2s ease;
}

input:focus {
    border-color: #ff5722; /* Couleur de bordure lors de la mise au point */
    outline: none;
}

button {
    background-color: #ff5722; /* Couleur de fond du bouton */
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    text-align: center;
    width: 100%; /* Le bouton utilise toute la largeur du conteneur */
}

button:hover {
    background-color: #e64a19; /* Couleur du bouton au survol */
}

.response-message {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.response-message.success {
    color: #4caf50; /* Couleur pour les messages de succès */
}

.response-message.error {
    color: #f44336; /* Couleur pour les messages d'erreur */
}
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: ease-out 200ms;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease-out 200ms;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 130%;
  background-position: 50% top;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 1em;
  height: 1em;
}

main {
  width: 100%;
  height: 110vh;
}

main .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px 70px;
}

main .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #fff;
}

main .header .logo {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

main .header nav {
  display: flex;
  align-items: center;
  height: 33px;
}

main .header nav a {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
}

main .header nav a:not(:last-child) {
  margin-right: 80px;
}

main .header nav a:hover {
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}

main .header nav a.active {
  border: 1px solid #fff;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}

main .hero {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

main .hero-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70px;
}

main .hero-left a:not(:last-child) {
  margin-bottom: 40px;
}

main .hero-left a svg {
  font-size: 20px;
  fill: #fff;
}

main .hero-content {
  flex: 1;
  text-align: center;
}

main .hero-content .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  width: 100%;
  position: relative;
  margin-top: 60px;
}

main .hero-content .title h1 {
  font-size: 133px;
  font-weight: 900;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.55);
}

main .hero-content .title img {
  position: absolute;
  top: 120px;
  left: -35px;
  pointer-events: none;
  width: 100%;
  max-width: 441px;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 5s;
}

@-webkit-keyframes run {
  0% {
    left: 0;
  }
  50% {
    left: 10%;
  }
  100% {
    left: 0;
  }
}

main .hero-content .title h2 {
  width: 60%;
  font-size: 37px;
  font-weight: 600;
  z-index: 1;
  margin-top: -27px;
}

main .hero-content .title button {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  border: none;
  background-color: #e9b9a6;
  color: #fff;
  font-size: 16px;
  margin-top: 60px;
  cursor: pointer;
  transition: ease-out 200ms;
}

main .hero-content .title button:hover {
  background-color: #e9a6a6;
}

main .hero-content .title button span {
  margin-left: 10px;
}

.main-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px;
}

.main-img img {
  max-width: 100%;
  max-height: 100%;
}

.image-gallery {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.frame-group {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}

.image-container {
  position: relative;
  flex: 1;
  padding: 10px;
}

.gallery-image {
  width: 100%;
  border-radius: 8px;
}

.price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev, .next {
  background-color: black;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: background-color 0.3s ease;

}

.prev:hover, .next:hover {
  background-color: #333;
}

.prev:focus, .next:focus {
  outline: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}
.navigation1{
    text-align: right;
}
.subtitle{
    color: white;
}
.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    color: white;
}

.message.success {
    background-color: green;
}

.message.error {
    background-color: red;
}
.toptitle{ 
  font-size: 15rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.logo{
  

  
  line-height: 0.70em;
  animation: animate 5s linear infinite;
  outline: none;
}
@keyframes animate
{
  0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92%
  {
    color: #0e3742;
    box-shadow: none;
  }
  18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100%{
    color: #fff;
    box-shadow: 0 0 10px #03bcf4,
    0 0 20px #03bcf4,
    0 0 40px #03bcf4,
    0 0 80px #03bcf4,
    0 0 160px #03bcf4;
    
  }
}

.toptitle{
  color: transparent;
  -webkit-text-stroke: 3px red;
}
.toptitle::before{
  content: "Wolftn";
  position: absolute;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: red;
  border-right: 8px solid red;
  transition: 1s ease-in-out;

}
.toptitle:hover::before{
  width: 100%;
  filter: drop-shadow(0 0 25px red);
}
/* Style pour le menu principal */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu-nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Style pour le bouton hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-btn .bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
}

/* Style pour le menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Style pour le menu dans le menu overlay */
.menu-nav-overlay a {
  color: #fff;
  font-size: 24px;
  margin: 10px 0;
  text-decoration: none;
}

/* Style pour la croix de fermeture du menu overlay */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* Responsivité */
@media (max-width: 768px) {
  .menu-nav {
    display: none; /* Masquer le menu principal */
  }

  .menu-btn {
    display: flex; /* Afficher le bouton hamburger */
  }

  .menu-overlay.active {
    display: flex; /* Afficher le menu overlay lorsque la classe active est ajoutée */
  }
}
/* Style général du corps */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Style du conteneur principal */
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Style de l'en-tête */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  
  border-bottom: 1px solid #ddd;
}

/* Style du logo */
.logo {
  font-size: 1.5em;
  font-weight: bold;
}

/* Style des boutons du menu */
.menu-btn {
  display: none; /* Masquer le bouton du menu pour les grands écrans */
  cursor: pointer;
  padding: 10px;
}

/* Style des barres du menu hamburger */
.menu-btn .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
}

/* Style du menu */
.menu-nav {
  display: flex;
}

/* Style des éléments de menu */
.menu-nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-nav ul li {
  margin: 0 10px;
}

.menu-nav ul li a {
  text-decoration: none;
  color: white;
  padding: 10px;
  display: block;
}

/* Style du menu overlay */
.menu-overlay {
  display: none; /* Masquer le menu overlay par défaut */
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: gray;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow-y: auto;
}

/* Style du bouton de fermeture du menu overlay */
.menu-close {
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
}

/* Style du menu dans l'overlay */
.menu-nav-overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-nav-overlay ul li {
  margin: 0;
  
}

.menu-nav-overlay ul li a {
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
  
  
}

/* Styles pour les petits écrans */
@media (max-width: 768px) {
  .menu-nav {
      display: none; /* Masquer le menu pour les petits écrans */
  }

  .menu-btn {
      display: block; /* Afficher le bouton du menu pour les petits écrans */
  }
}
/* Style du menu overlay */
.menu-nav-overlay {
  display: flex;
  flex-direction: column; /* Aligne les éléments en colonne */
  justify-content: center; /* Centre horizontalement */
  align-items: center;     /* Centre verticalement */
  height: 100%;            /* Assure que le menu prend toute la hauteur disponible */
}

.menu-nav-overlay ul {
  display: flex;
  flex-direction: column; /* Aligne les éléments en colonne */
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu-nav-overlay ul li {
  margin: 10px 0; /* Espacement entre les liens */
}

.menu-nav-overlay ul li a {
  text-decoration: none;
  color: #fff; /* Couleur des liens, ajustez selon vos préférences */
  font-size: 18px; /* Taille de la police */
  transition: color 0.3s; /* Effet de transition pour la couleur */
  
}

.menu-nav-overlay ul li a:hover {
  color: #f00; /* Couleur des liens au survol */
}
/* Style du menu overlay */
.menu-overlay {
  display: none; /* Masqué par défaut */
  position: fixed;
  top: -100;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fond semi-transparent */
  z-index: 1000; /* S'assure que le menu est au-dessus des autres éléments */
}

.menu-nav-overlay {
  display: flex;
  flex-direction: column; /* Aligne les éléments en colonne */
  justify-content: center; /* Centre verticalement */
  align-items: center; /* Centre horizontalement */
  height:50%; /* Hauteur totale */
  width: 100%; /* Largeur totale */
  margin-top: 300px;
}

.menu-nav-overlay ul {
  display: flex;
  flex-direction: column; /* Aligne les éléments en colonne */
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu-nav-overlay ul li {
  margin: 10px 0; /* Espacement entre les éléments */
}

.menu-nav-overlay ul li a {
  text-decoration: none;
  color: #fff; /* Couleur du texte des liens */
  font-size: 18px; /* Taille de la police */
  transition: color 0.3s; /* Effet de transition pour la couleur */
}

.menu-nav-overlay ul li a:hover {
  color: #f00; /* Couleur du texte au survol */
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.ferr {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.ferr button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.ferr button:hover {
  background-color: #555;
  transform: scale(1.05);
}

.ferr button a {
  color: white;
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
}

.ferr button a:hover {
  text-decoration: none;
}
.ferr .current {
    background-color: #FF4C4C;
    color: white;
    transform: scale(1.05); /* Pour mettre en évidence */
}

.ferr .current a {
    color: white;
}

.ferr .current:hover {
    background-color: #FF0000; /* Un rouge plus vif au survol */
    transform: scale(1.08);
}
.price{
  margin-bottom: -10px;
}
/* styles.css */

/* Général */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Menu */
.menu-container {
  position: relative;
}

.menu-button {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: #333;
  color: white;
  padding: 20px;
}

.menu-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 0;
}

.menu-close {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Section des Produits */
.product-section {
  padding: 20px;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product {
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: calc(25% - 20px);
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
}

.add-to-cart {
  background-color: #f7c744;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.add-to-cart:hover {
  background-color: #e0b73e;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 25px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

footer nav a {
  color: white;
  text-decoration: none;
  padding: 0 10px;
}

/* Media Queries pour Téléphones */
@media (max-width: 768px) {
  .menu-overlay {
      width: 100%;
  }

  .product {
      width: calc(50% - 20px); /* Deux produits par ligne */
  }
}

@media (max-width: 480px) {
  .menu-button {
      font-size: 20px;
  }

  .menu-overlay {
      width: 100%;
      padding: 10px;
  }

  .product {
      width: 100%; /* Un produit par ligne */
  }

  .product img {
      max-width: 100%;
  }

  .add-to-cart {
      padding: 8px;
  }
}


/* styles.css */

/* Page d'accueil */
.home-background {
  background: url('path/to/your/background-image.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Media Queries pour Téléphones */
@media (max-width: 768px) {
  .home-background {
      background: none; /* Supprimer le fond d'écran sur les petits écrans */
  }
}
body{
  background-color: rgb(68, 65, 65);
}

/* Ajoutez ces styles à votre fichier CSS */

@media (max-width: 768px) {
  .image-gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .gallery-frame {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .image-container {
      width: 90%;
      margin-bottom: 20px;
  }

  .gallery-image {
      width: 100%;
      height: auto;
  }

  .price {
      font-size: 18px;
      text-align: center;
      display: block;
      margin-top: 10px;
  }

  
}
@media only screen and (max-width: 768px) {
  .image-container img {
      border: none;
      width: 100%; /* Pour s'assurer que les images sont grandes et s'adaptent à l'écran */
      box-shadow: none; /* Supprime également toute ombre si nécessaire */
  }
  .frame-group {
      flex-direction: column; /* Place les images les unes sous les autres */
  }
}
@media only screen and (max-width: 768px) {
  .image-container img {
      border: none;
      width: 100%; /* Pour rendre les images grandes */
      box-shadow: none; /* Supprime l'ombre */
  }
  
  .frame-group {
      display: flex;
      flex-direction: column; /* Les images s'empilent verticalement */
  }

 
.navigation1{
  margin-top: -1px;
}
  

  .prev, .next {
      background-color: transparent;
      border: none;
      font-size: 2em;
      cursor: pointer;
      color: #000; /* Couleur de la flèche */
  }
}
@media only screen and (max-width: 768px) {
  .price {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgb(68, 65, 65); /* Couleur de fond */
      padding: 10px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* Ombre au-dessus */
      z-index: 10; /* Pour s'assurer que le paragraphe est au-dessus des autres éléments */
  }
  
  /* Assurez-vous que le reste de la page a assez de marge pour que le paragraphe ne cache pas le contenu */
  body {
      padding-bottom: 60px; /* Ajustez en fonction de la hauteur du paragraphe .price */
  }
}
@media only screen and (max-width: 768px) {
  .navigation2 {
      display: flex;
      justify-content: space-between; /* Espacement égal entre les flèches */
      align-items: center;
      margin: 20px 0; /* Espace au-dessus et en dessous des flèches */
  }

  .navigation2 .prev,
  .navigation2 .next {
      background-color: #ccc; /* Couleur de fond des boutons */
      border: none;
      padding: 10px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 5px;
  }
}
/* Styles pour les petits écrans */
@media only screen and (max-width: 768px) {
  .image-gallery {
      display: flex;
      flex-direction: column; /* Disposer les images les unes sous les autres */
      align-items: center;
  }

  .gallery-frame {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .frame-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px; /* Espacement entre les groupes d'images */
  }

  .image-container {
      width: 90%; /* Largeur des images */
      max-width: 300px; /* Limite la largeur maximale des images */
      border: 2px solid #ccc; /* Bordure autour des images */
      margin-bottom: 20px; /* Espacement sous chaque image */
  }

  .gallery-image {
      width: 100%; /* Assurez-vous que les images remplissent leur conteneur */
      height: auto;
      display: block;
  }

  .price {
      text-align: center;
      margin-top: 10px;
      font-size: 16px;
  }

 

  
}
/* Styles pour les petits écrans */
@media only screen and (max-width: 768px) {
  .image-gallery {
      display: flex;
      flex-direction: column; /* Disposer les images les unes sous les autres */
      align-items: center;
  }

  .gallery-frame {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .frame-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px; /* Espacement entre les groupes d'images */
  }

  .image-container {
      width: 100%; /* Largeur des images */
      
      max-width: 400px; /* Limite la largeur maximale des images */
      border: 4px solid #ccc; /* Bordure autour des images */
      margin-bottom: 20px; /* Espacement sous chaque image */
      box-sizing: border-box; /* Inclut la bordure dans le calcul de la largeur totale */
  }

  .gallery-image {
      width: 100%; /* Assurez-vous que les images remplissent leur conteneur */
      height: auto;
      display: block;
      height: 100%;
  }

  .price {
      text-align: center;
      margin-top: 10px;
      font-size: 16px;
  }

  .navigation2 {
      display: flex;
      justify-content: space-between; /* Espacement égal entre les flèches */
      align-items: center;
      width: 25%;
      padding: 0 10px;
    
  }

  
  .navigation2 .prev,
  .navigation1 .next {
      background-color: #ccc;
      border: none;
      padding: 10px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 7px;

      
      

  }
  
 
}
/* Styles spécifiques pour les appareils mobiles */
@media only screen and (max-width: 768px) {
  .contact-section {
      width: 100vw; /* Utilise toute la largeur de l'écran */
      margin-left: calc(-50vw + 50%); /* Centre le contenu tout en s'étendant à 100% */
      padding: 20px;
      box-sizing: border-box; /* Inclut le padding dans la largeur */
      background-color: white; /* Arrière-plan blanc */
  }

  .container {
      padding: 0;
      width: 100%; /* Assure que le conteneur occupe toute la largeur */
      box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
  }

  .hero-left {
      margin-bottom: -50px;
      font-size: 10px;
  }

  .hero-content {
      margin-bottom: 20px;
      
  }

  .toptitle {
      font-size: 20px;
  }

  .hero-right {
      font-size: 16px;
      margin-right: 38px;
  }
  

 
}
/* Styles généraux pour le bouton "Voir Boutique" */
.shop-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: red;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

/* Animation de zoom */
@keyframes zoom {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.shop-button {
  animation: zoom 1.5s infinite; /* Zoom répétitif */
}

/* Styles pour les petits écrans */
@media (max-width: 768px) {
  .shop-button {
      padding: 6px 12px; /* Réduit le padding */
      font-size: 14px; /* Réduit la taille de la police */
      margin: 10px auto; /* Centre le bouton avec une marge réduite */
  }
}

@media only screen and (max-width: 768px) {
  .gallery-image {
      width: 100%;
      height: auto;
  }

  .prev, .next {
      width: 20px;
      height: 20px;
      font-size: 14px;
      
      
  }

  .frame-group {
      display: block;
      text-align: center;
  }

  .image-container {
      display: block;
      margin-bottom: 20px;
  }
  
}
.toptitle {
  color: transparent;
  -webkit-text-stroke: 3px red;
  font-size: 10px; /* Taille réduite du texte */
  position: relative;
}

.toptitle::before {
  content: "Wolftn";
  position: absolute;
  width: 0;
  height: 100%;
  overflow: hidden;
  color: red;
  border-right: 8px solid red;
  animation: typing 3s steps(20, end) infinite;
}

@keyframes typing {
  0%, 100% {
    width: 0;
    filter: none;
  }
  50% {
    width: 100%;
    filter: drop-shadow(0 0 25px red);
  }
}
@media screen and (max-width: 768px) {
  .frame-group {
    flex-direction: column;
    align-items: center;
  }

  .gallery-image {
    width: 100%;
    height: 100%; /* La largeur de l'image sera de 90% de la largeur de l'écran */
    max-width: 10000px; /* Taille maximale de l'image */
    max-height: 10000px;
  }

  .price {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
  }
}
