/*==========
1. Menü
2. Texte
3. Footer
============*/
* {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
/*==========Menü============*/
#menue {
  background-color: #D4BE99;
  height: 70px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14pt;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 2px solid white;
}
.display {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#logo {
  height: 50px;
  flex-shrink: 0;
}
#logo-back {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  height: 70px;
  display: flex;
  align-items: center;
}
nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  float: right;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
nav ul li {
  position: relative;
  margin: 0 60px 0 0;
  float: left;
  display: inline-block;
}
li > a:after {
  content: ' »';
}
li > a:only-child:after {
  content: '';
}
nav ul li a {
  padding: 20px;
  display: inline-block;
  color: white;
  text-decoration: none;
}
nav ul li a:hover {
  color: #0E0E0E;
  transition: 0.5s;
}
nav ul li ul {
  display: none;
  position: absolute;
  left: 0;
  background: #E6E6E6;
  float: right;
  min-width: 100%;
  white-space: nowrap;
}
nav ul li ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
nav ul li ul li a {
  width: 100%;
  display: block;
  padding: 20px 30px;
  background: #E6E6E6;
  color: #1A1A1A;
}
nav ul li ul li a:hover {
  background: #686868;
  color: #FFF;
}
nav ul li:hover ul {
  display: block;
}
/*==========Texte============*/
h1 {
  color: #1F1F1F;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 26pt;
  text-align: center;
}
h2 {
  color: #1F1F1F;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 21pt;
}
h3 {
  color: #1F1F1F;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 21pt;
}
p {
  color: #1F1F1F;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  line-height: 1.7;
  text-align: left;
}
/*==========Footer============*/
.bottom {
  background-color: #D4BE99;
  height: 80px;
  margin-top: 60px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Textlinks */
#float2 {
  display: flex;
  gap: 10px;
  align-items: center;
  float: left;
}
#float2 a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #1F1F1F;
  font-size: 14px;
}
#float2::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #EEC535;
  transition: all 0.3s;
}
.social {
  display: flex;
  gap: 15px;
  float: right;
}
.social a {
  border: 2.5px solid #1F1F1F;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  float: left;
}
.social a:hover {
  background-color: #FFF;
  border-color: #FFF;
  font-weight: bold;
}
.social a > i {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.whatsapp_link {
  background-image: url("../images/icon_whatsapp.png");
}
.facebook_link {
  background-image: url("../images/icon_facebook.png");
}
.insta_link {
  background-image: url("../images/icon_instagram.png");
}