#main-nav {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  border-bottom: 2px solid #cc0000;
  font-size: 16px;
}

/* NOUVELLE BARRE FLEX */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* LOGO */
.nav-logo img {
  height: 100px; /* ajustable */
  width: auto;
  display: block;
}

/* MENU DESKTOP - pousse à droite */
.nav-desktop {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  padding: 15px 0;
}

/* LIENS */
.nav-link {
  color: #4a4a4a;
  text-decoration: none;
  margin: 0 15px;
  font-family: Montserrat, sans-serif;
}

.nav-link:hover {
  color: #d0021b;
}

/* CTA inchangé */
/* 
.cta {
  background: rgba(208, 2, 27, 0.08);
  color: #d0021b !important;
  padding: 6px 14px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #d0021b;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
 */
.cta {
  background: rgba(255, 250, 99, 1); /* doré léger */
  color: #000000 !important; /* rouge */
  padding: 6px 14px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #f07831; /* rouge vif */
  color: #FFFFFF !important; /* doré */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}




/* BURGER MOBILE */
.nav-mobile-bar {
  display: none;
  justify-content: flex-end;
}

.burger span {
  display: block;
  width: 33px;
  height: 4px;
  background: #4a4a4a;
  margin: 5px 0;
}

/* MENU MOBILE */
.side-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
}

.side-menu.open {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav-desktop { display: none; }
  .nav-mobile-bar { display: flex; }
}