nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 1000;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, width 0.25s ease, margin 0.25s ease;
}

.floating {
  background-color: #FFFFFFDD;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 8px;
  width: calc(100% - 16px);
  margin: 0 auto;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-toggle span {
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 8px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.open span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    gap: 10px;
    align-items: center;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  #langSelect {
    width: 80%;
    margin: 5px auto;
  }
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-family: "Figtree", sans-serif;
}

body {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background-image: url('Cap-Bon-Ami.jpg');
  background-size: cover;
  background-position: center;
}

#hero-text {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 2;
  text-align: center;
  font-family: "Figtree", sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 2;
  background-color: rgba(0, 0, 0, 1);
  padding: 8px 16px;
  border-radius: 8px;
  width: auto;
  height: auto;
  text-align: center;
}

.arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  margin-top: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
  border-radius: 3px;
}

@keyframes bounce {
  0%, 100% {transform: translateX(-50%) translateY(0);}
  50% {transform: translateX(-50%) translateY(8px);}
}

#content {
  position: relative;
  background: white;
  z-index: 3;
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}