@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}


/* --- HEADER --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: #F7F7F7;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  align-content: center;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 15px 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 65px;
  margin-right: 10px;
}

/* Navbar */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #00c48c;
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.actions .btn-primary {
  
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.actions .btn-primary:hover {
  background: #e89e00;
}

.actions .login {
  color: #00c48c;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    display: none; /* tu peux rajouter un menu burger plus tard */
  }
}


/* Décalage pour éviter que le header masque les sections */
section {
  padding-top: 80px;
}
