* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
  background:url('../src/noir1.jpg') center center/cover no-repeat;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

nav {
  position: relative;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

nav ul li a {
  color: #e30613;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  height: 60px; 
  width: auto;
}

.titre h1{
  font-size: 1.5rem;
  color:white;
  font-weight: bold;
  margin-top: 120px;  
  padding: 5px ;
}

.titre p {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
  padding: 5px;
}

.micro, .micro1, .mixage {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px; /* espace entre les images */
  margin-top: 30px; /* descend les images vers le bas */
}

.micro img,
.micro1 img,
.mixage img {
  width: 470px;
  height: 330px;
}


.contact-btn-wrapper {
  width: 100%;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  background-color: #e30613;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.2s;
}

.contact-btn:hover {
  background-color: #b30000;
}

.bouton{
  margin-top: 40px;
}

/* Burger menu styles */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: black;
}

@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    display: none;
    background: white;
    width: 100%;
    padding: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .scroll-down {
    font-size: 1.5rem;
  }

  footer {
    padding: 1.5rem;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.logo {
  height: 60px; 
  width: auto;
}

nav ul li a {
  color: #e30613;
  text-decoration: none;
  font-weight: bold;
}


