body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.glass-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo .logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #cd904a;
  transform: translateX(-20px);
}

.logo-text {
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.magic-button {
  background: rgba(45, 28, 20, 0.95);
  color: white;
  border: 2px solid #e6a23c; /* Bordure orange-jaune */
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.magic-button:hover {
  background: rgba(65, 38, 24, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-color: #f0b654; /* Bordure plus claire au hover */
}

.magic-button.active {
  background: #f0b654; /* Fond jaune pour le bouton actif */
  color: #2d1c14; /* Texte en marron foncé pour meilleur contraste */
  border-color: #2d1c14; /* Bordure marron */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.nav-links li.active .magic-button {
  color: white !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #cd904a;
  border-radius: 3px;
}

main {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .glass-nav {
    padding: 0.25rem 1rem;
  }

  .nav-content {
    min-height: 40px;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
  }

  .logo-text {
    display: none;
  }
  
  .logo {
    position: relative;
    display: flex;
    align-items: center;
    transform: translateY(20px);
  }
  
  .logo img {
    height: 150px;
    width: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

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

  .magic-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(45, 28, 20, 0.95);
    margin: 0.25rem 0;
    border: 2px solid #e6a23c;
  }
  
  .magic-button:hover {
    background: rgba(65, 38, 24, 0.95);
    border-color: #f0b654;
  }
  
  .magic-button.active {
    background: #f0b654;
    color: #2d1c14;
    border-color: #2d1c14;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-top: -15px;
  }
}
