body{
  margin: 0;
  background-color: white;
  font-family: Arial, sans-serif;
  padding-top: 130px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  border-bottom: 2px solid gold;
}

.main-header {
  background: linear-gradient(to right, #000 65%, #4e3939 100%);
  color: gold;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


.top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px 0 20px;
}

.social-icons{
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-container img {
  height: auto;
  max-height: 60px;
}

.main-nav {
  padding: 10px 0;
  font-family: Arial, sans-serif;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: gold;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 15px;
  display: inline-block;
}

.nav-menu a:hover {
  color: white;
}

/* Dropdown Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1c1c1c;
  border-radius: 4px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
  z-index: 1000;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: gold;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #4e3939;
  color: white;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.cta-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-buttons .btn {
  background: linear-gradient(to right, #000 60%, #4e3939 100%);
  color: gold;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.cta-buttons .btn:hover {
  background: linear-gradient(to right, #000 60%, gold 100%);
  color: #c2b5b5;
  transform: scale(1.03);
  opacity: 0.9;
}


/* GENERAL */
.hamburger, .mobile-menu {
  display: none;
}

/* HAMBURGER ICON */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-icon {
  width: 26px;
  height: 3px;
  background-color: gold;
  margin: 5px 0;
}

/* MOBILE MENU */
.mobile-menu {
  background-color: #000;
  flex-direction: column;
  text-align: center;
}

.mobile-menu a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  padding: 15px;
  border-top: 1px solid #4e3939;
  display: block;
}

.mobile-menu a:hover {
  background-color: #4e3939;
  color: white;
}

.mobile-menu.active {
  display: flex;
}

/* SHRINK HEADER */
.main-header.shrink .header-content {
  padding: 5px 10px;
}

.main-header.shrink .logo-container img {
  max-height: 40px;
}

@media (max-width: 768px) {
  /* Réduction de la hauteur du header */
  .main-header {
    padding: 10px 15px;
  }

  .top-bar {
    display: none; /* Supprime la ligne sociale du haut */
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  .logo-container img {
    max-height: 50px;
  }

  .main-nav,
  .cta-buttons {
    display: none;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: gold;
    padding: 10px;
  }

  .hamburger-icon {
    width: 26px;
    height: 3px;
    background-color: gold;
    margin: 5px 0;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
  }

  .mobile-menu a {
    padding: 15px;
    border-top: 1px solid #4e3939;
    color: gold;
    font-weight: bold;
    text-decoration: none;
  }

  .mobile-menu a:hover {
    background-color: #4e3939;
    color: white;
  }

  .mobile-menu.active {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}



