body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-size: 14px;}

.logo {
    align-items: center;
    display: flex;
    font-weight: bold;
    color: #333;
    font-size: x-large;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
}

.navbar a {
    font-size: medium;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin-left: 40px;
    margin-right: 20px;
  }

.navbar div:first-child img {
  max-height: 100px; 
  width: auto; 
  margin-right: 10px; 
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin: 0 0px;
  background-color: #f8f8f8; 
}

.header-text,
.header-image {
  width: 50%;
  padding: 0 20px; 
}

.header img {
    max-width: 100%;
    height: auto;
  }

/* STYLE BOUTON */

.button {
  background-color: #D8AE5F;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px; 
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #a08e6d; 
}

/* STYLE DE TEXTES */

.text-bold {
  font-size: 60px;
  font-weight: bold;
  color: #333;
}

.text-small {
  font-size: 20px;
  color: rgb(122, 122, 122);
}

.text-normal {
    font-size: 40px;
    color: #333;
  }

.text-alternative {
  font-size: 40px;
  color: #D8AE5F;
}

/* PIED DE PAGE STYLE */

footer {
  background-color:#D8AE5F; 
    padding: 40px 20px; 
    text-align: center; 
    margin-top: 40px;
  }
  .social-links {
    margin-top: 40px; 
  }
  
  .social-link {
    text-decoration: none;
    color: #333;
    margin: 10px 20px;
  }
  
  .social-link:hover {
    color: #fff; 
  }

/* FORMULAIRE INSCRIPTION STYLE */

.signup-header {
    background-color: #f8f8f8; 
    padding: 20px; 
    text-align: center; 
    margin-bottom: 30px; 
  }
  

.signup-input {
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  #logo {width:100px;
    height:200px; float: left;
  }

  main{min-height: 800px;}

  .espace{margin-top: 30px;}