/* ================= FONTS ================= */

@font-face {
  font-family: 'Amoura Rosbele';
  src: url('fonts/Amoura Rosbele.otf') format('opentype');
}

@font-face {
  font-family: 'Acumin-BdPro';
  src: url('fonts/Acumin-BdPro.otf') format('opentype');
}

@font-face {
  font-family: 'Acumin-Variable-Concept';
  src: url('fonts/Acumin-Variable-Concept.ttf') format('truetype');
}


/* ================= RESET ================= */

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

/* ================= NAVBAR ================= */

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;

  width:97%;
  height:80px;

  padding:0 40px;

  background:#ffffff;
}

/* ================= LOGO ================= */

.logo{
  display:flex;
  align-items:center;
  height:85px;
  text-decoration:none;
}

.logo img{
width: 160px;
  height:auto;
  margin-left:40px;
  display:block;
}

/* ================= MENU ================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:25px;
  margin-left:auto;

  list-style:none;
}

.nav-links li{
  list-style:none;
}

.nav-links a{
  font-family:'Acumin-BdPro';
  font-size:1rem;

  color:#111;
  text-decoration:none;

  transition:0.3s;
}

.nav-links a:hover{
  color:#00bcd4;
}

/* ================= DROPDOWN ================= */

.dropdown{
  position:relative;
}

.submenu{
  display:none;

  position:absolute;
  top:100%;
  left:0;

  background-color:white;

  padding:10px;

  border-radius:5px;

  min-width:200px;

  z-index:10000;
}

.submenu li{
  margin:5px 0;
}

.submenu li a{
  font-family:'Acumin-Variable-Concept';

  color:#010101;

  font-size:0.9rem;

  text-decoration:none;
}

.dropdown:hover .submenu{
  display:block;
}

/* ================= LANGUAGE ================= */

/* TOGGLE */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.dropdown-lang{
  position:relative;

  list-style:none;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:5px;

  cursor:pointer;

  text-decoration:none;

  font-weight:bold;

  color:#000;
}

.dropdown-menu{
  display:none;

  position:absolute;
  top:100%;
  right:0;

  background:rgba(80,80,80,0.95);

  border-radius:4px;

  min-width:180px;

  padding:8px 0;

  z-index:1000;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu li a{
  display:flex;
  align-items:center;
  gap:8px;

  padding:10px 15px;

  text-decoration:none;

  color:#fff;
}

.dropdown-menu li a:hover{
  background:rgba(100,100,100,0.9);
}

.dropdown-lang:hover .dropdown-menu{
  display:block;
}

/* ================= LANGUAGE SWITCH ================= */

.lang-switch a{
  text-decoration:none;

  color:#888;

  font-weight:600;

  padding:4px 8px;

  border-radius:6px;

  transition:0.3s;
}

.lang-switch a.active[data-lang="fr"]{
  background:#00bcd4;
  color:#fff;

  box-shadow:0 0 10px rgba(0,188,212,0.5);
}

.lang-switch a.active[data-lang="en"]{
  background:#ff6b6b;
  color:#fff;

  box-shadow:0 0 10px rgba(255,152,0,0.5);
}

.lang-switch a:hover{
  color:#080505;
}

/* ================= NOTIFICATION ================= */

.notification-bubble{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:18px;
  height:18px;

  padding:0 6px;

  margin-left:8px;

  background:#ff3b30;
  color:#fff;

  font-size:11px;
  font-weight:700;

  border-radius:50px;

  box-shadow:0 4px 10px rgba(255,59,48,0.25);
}


/* ================= TOGGLE ================= */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#111;
}

/* ================= MOBILE ================= */
@media (max-width: 768px){

  /* ================= NAVBAR ================= */
  .navbar{
    width:100%;
    height:75px;
  padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* ================= LOGO ================= */
.logo{
  display:flex;
  align-items:center;
  height:75px;
  margin-left:20px; /* IMPORTANT */
     margin-bottom :10px;

}

.logo img{
  width:120px;
  height:auto;
  margin:0;
}
  /* ================= HAMBURGER ================= */
.menu-toggle{
  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
  cursor:pointer;
  color:#111;
  margin-right :20px;
   margin-bottom :20px;

  height:75px;
}

  /* ================= MENU MOBILE ================= */
  .nav-links{
  align-items:center;
  gap:20px;
  list-style:none;
  margin-left:auto; 
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    z-index:9999;
  }

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

  .nav-links li{
    width:100%;
    border-bottom:1px solid #eee;
  }

  .nav-links a{
    display:block;
    padding:14px 20px;

    font-size:15px;
  }

  /* ================= DROPDOWN MOBILE (ACCORDION) ================= */
  
.dropdown{
  position:relative;
}

.submenu{
  display:none;

  position:absolute;
  top:100%;
  left:0;

  background:#fff;

  min-width:200px;

  padding:10px 0;

  border-radius:10px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  z-index:9999;
}

.submenu li a{
  display:block;

  padding:10px 15px;

  font-size:0.9rem;

  color:#111;
}

.submenu li a:hover{
  background:#f5f5f5;
}

.dropdown:hover .submenu{
  display:block;
}

  /* ================= LANGUAGE ================= */
  .lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
    padding:2px 6px;   /* 👈 réduit la zone hover */

  margin-bottom:20px;
}
  /* ================= NOTIFICATION ================= */
  .notification-bubble{
    margin-left:5px;
  }
}