* {
    margin: 10;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat',;
}

body {
    margin: 0 auto;
    background-color: #f0f0f0;
}

.devant{
    z-index: 100;
}


/* Header et Navigation */
header.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px;
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header.header img {
    width: 60px;
    height: auto;
}



nav.nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap: 170px;
}

nav.nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s;
}

nav.nav li a:hover {
    color: #ddd;
}


.onglet{
    background-color: white;
    color: rgb(238, 200, 165);
}

#iconecoin{
    margin: 20px;
    padding: 0;
    position : fixed;
    right : 0;
    bottom : 0;
    filter: opacity(1);
    z-index: 100;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgb(238, 200, 165);
    padding: 30px;
    text-align: center;
}

header h1 {
    color: white;
    font-size: 60px;
    margin: 0px;
    height: 50px;
    font-family: 'Georgia', serif;
}

nav ul {
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
    
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    font-family: 'Verdana', sans-serif;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: white;
    color: rgb(238, 200, 165);
}

nav{
    position: sticky;
    top: 0px;
    background-color: rgb(238, 200, 165);
    padding: 2px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    font-family: 'Verdana', sans-serif; /* Police de la navigation */
}

section.service {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
}

section.service h2 {
    color: rgb(238, 200, 165);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

section.service p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.images img {
    width: 250px;
    height: 180px;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}


.sour-gummy {

  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.marges{
    margin-left: 10%;
    margin-right: 10%;
}



.boutonstyled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgb(255, 146, 44);
    background-image: linear-gradient(
      to top left,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0)
    );
    box-shadow:
      inset 2px 2px 3px rgba(255, 255, 255, 0.6),
      inset -2px -2px 3px rgba(0, 0, 0, 0.6);
  }
  
  .boutonstyled:hover {
    background-color: rgb(156, 76, 0);
  }
  
  .boutonstyled:active {
    box-shadow:
      inset -2px -2px 3px rgba(255, 255, 255, 0.6),
      inset 2px 2px 3px rgba(0, 0, 0, 0.6);
  }

#name{
    border-radius: 10px;
    border-color: #EEC8A5;
}

/* Section d'accueil */
section.top-page {
    background: url("../image/BannerVaiselle.png") ;
    background-size: cover ;
    height: 90vh;
    position: relative;
    padding: 0px;
}

.landing-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.big-title {
    color: #fff;
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Coolsville;
}

.scroll-down {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    position: absolute;
    bottom: 30px;
}
#contact {
    padding: 50px 20px;
    background-color: #eaeaea;
    text-align: center;
}

form {
    max-width: 500px;
    margin: auto;
}

form label {
    display: block;
    margin-bottom: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #333;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #555;
}


/* Footer */
footer {
    
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons a:hover {
    text-decoration: underline;
}
/* Conteneur de la barre de progression */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Épaisseur de la barre */
    background-color: #e0e0e0; /* Couleur de fond */
    z-index: 1000; /* Toujours visible */
  }
  
  /* Barre de progression elle-même */
  #progress-bar {
    height: 100%;
    width: 25; /* Commence vide */
    background-color: #333; /* Couleur de la barre */
  }
  

  .descriptif{
      text-align: justify;
      margin: 30px;
  }