* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nowrap-link{
    white-space: nowrap;
}

a {
  text-decoration: none;
}

button{
    white-space: nowrap;
}

body {
  font-family: 'Nunito', sans-serif;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-around;
  width:100%;
  transition: background-color 0.3s ease;
  min-height: 75px;
  height: 8%;
  z-index: 1;
}

.header{  
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px 0px;
  background-color: transparent;
  position: relative;
  width:65%;
border-bottom:1px;
}

.logo img {
  margin-right: 15px;
  height:9vh;
  min-height: 75px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.buttons {
  display: flex;
  gap: 6px;
  
}

.btn {
  padding: 8px 16px;
  background: none;
  cursor: pointer;
  border-radius:25px;
  white-space: nowrap;
}

.fullscreen-menu .btn{
    background-color: #2ec0cf;
    color: white;
}

.header .buttons .btn{
    color: white;
    background-color: #002b4b;
    margin-left:15px;
}
.section-button .btn{
    color: white;
    background-color: #2ec0cf;
}

.fullscreen-menu .menu-content a{
    color: white;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #002b4b;
}

.close{
  color: white;
}



@media (max-width: 1080px) {
  header{
    justify-content: space-between;
 }

  .header{
    width:100%;
}

  .nav-links,
  .buttons {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0px;
    right: 0px;
    background: #2ec0cf;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width:100%;
  }

  .nav-links.active,
  .buttons.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header {
    flex-wrap: wrap;
  }
}

header.scrolled {
  background-color: #002b4b; /* ou une autre couleur */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* optionnel */
}

header.scrolled a {
  color: white;
}

header.scrolled .header .buttons .btn{
  background-color: #2ec0cf;
}

header.scrolled .header .hamburger{
    color: white;
}

.fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #002b4b;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  transition: left 0.4s ease-in-out;
}

.fullscreen-menu.active {
  display: flex;
}

.fullscreen-menu .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  cursor: pointer;
}

.fullscreen-menu nav a {
  display: block;
  margin: 20px 0;
  font-size: 24px;
  color: #333;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links,
  .buttons {
    display: none;
  }



