header {
  background: var(--creme-douce);
  padding: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  height: 60px;
  filter: brightness(1.1);
}

.logo-link {
  text-decoration: none;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gris-anthracite);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
}

.nav-links li a {
  color: var(--gris-anthracite);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: var(--or-pale);
}

.btn-devis {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--vert-olive);
  color: var(--blanc-pur);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(107, 112, 92, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-devis:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(107, 112, 92, 0.6);
}

/* Styles pour les sections spécifiques */
.service-card {
  padding: 1.5rem;
  background: var(--creme-douce);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.delivery-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.delivery-section img {
  flex: 1;
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.delivery-section p {
  flex: 2;
  margin: 0;
}

.contact-info {
  background: var(--blanc-pur);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background: var(--blanc-pur);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--vert-olive);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  max-width: 200px;
  margin: 0 auto;
  display: block;
  padding: 0.8rem;
  background: var(--vert-olive);
  color: var(--blanc-pur);
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(107, 112, 92, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(107, 112, 92, 0.6);
}

.devis-form {
  max-width: 800px;
  margin: 2rem auto;
  display: grid;
  gap: 1.5rem;
}

.devis-form div {
  background: var(--blanc-pur);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.devis-form label {
  text-align: left;
  font-weight: 600;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--vert-olive);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.devis-form textarea {
  min-height: 120px;
}

.devis-form button {
  max-width: 200px;
  margin: 0 auto;
  display: block;
  padding: 0.8rem;
  background: var(--vert-olive);
  color: var(--blanc-pur);
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(107, 112, 92, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.devis-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(107, 112, 92, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--creme-douce);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }

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

  .nav-links li {
    margin: 0.8rem 0;
  }

  .service-grid, .delivery-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .contact-form, .devis-form div {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .intro, .discover-services {
    margin: 1.5rem auto;
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  .service-card img {
    height: 120px;
  }

  .delivery-section img {
    height: 150px;
  }
}

/* Élimination des interférences avec le footer */
footer, .footer-container, .footer-column {
  margin: 0 !important;
  padding: 0 !important;
}