
body {
    margin: 0;
    padding: 0;
    background-color: #0f313c;
    font-family: 'Hatton', sans-serif;
    color: #fefefe;
}
  
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #092129;
    border-bottom: 2px solid #f9c87b;
    position: sticky;
    top: 0;
    z-index: 1000;
}
  
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  
.logo-container img {
    height: 50px; 
    margin-bottom: 5px;
}
  
.logo-container h1 {
    font-family: 'Arsenica Antiqua';
    font-size: 1.8rem;
    color: #f9c87b;
    margin: 0;
}
  
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}
  
nav ul li a {
    color: #fefefe;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}
  
nav ul li a:hover {
    color: #f9c87b;
}
/*fin du css du menu */
h1{
    font-family: 'Hatton';
    font-size: 60px;
    color:#d5c6b1;
    font-weight: normal;
    padding-left: 20px;
}
p{
    font-family: 'Garbata';
    font-size: 16px;
    color:#efe9e4;
    font-weight: normal;
    padding-left: 20px;
}
.texte-image{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 40px 40px;
    gap: 40px;
}
.texte{
    max-width: 50%;
}
.image{
    flex: 1;
    display: flex;
    overflow: visible;
    justify-content: center;
    padding: 5px;
   
}
.image video {
    width: 100%;
    max-width: 600px;  
    max-height: 550px; 
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  #search-form {
    display: none;
    margin-left: 10px;
  }
  
  #search-form input {
    padding: 5px 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  #search-icon {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  #search-icon img {
    width: 20px;
    height: 20px;
  }
 
  
