/* ----- BASE ----- */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- NAVBAR ----- */
.navbar {
  background: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.3s;
}

.logo {
  height: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: white;
  white-space: nowrap;
}

.mentions-container {
  max-width: 900px;
  margin: 120px auto 60px auto;
  padding: 0 20px;
}

.mentions-container h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  margin-bottom: 30px;
  color: #C4A654;
}

.mentions-container h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  margin-top: 40px;
  color: #333;
}

.mentions-container p {
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0;
}



/* ----- FOOTER ----- */
footer {
  background: #333;
  color: white;
  font-size: 14px;
}

.footer-container {
  background: #666;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex-wrap: wrap;
}

.footer-left,
.footer-mid,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 150px;
  margin-bottom: 10px;
}

.footer-mid p {
  margin: 5px 0;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right a {
  color: white;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 10px;
}

/* ----- HAMBURGER MENU ----- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #555;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
}
