/* === GLOBAL === */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #E19F02;
  margin: 0;
  padding: 0;
}

strong {
  font-weight: normal;
  color: #E19F02;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* === HEADER === */
.site-header {
  background-color: #000;
  border-bottom: 2px solid #E19F02;
  padding: 20px 5%;
  position: static;
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.brand-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  color: #E19F02;
  font-size: 2.5em;
  margin: 0;
}

.region-name {
  font-size: 1.2em;
  margin: 0;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
}

.logo {
  width: 25vw;
  max-width: 170px;
  min-width: 120px;
  height: auto;
  border: 3px solid #E19F02;
  border-radius: 1vw;
  padding: 1vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #E19F02;
}

.phone-number {
  font-size: 1.2em;
  font-weight: bold;
}

.phone-number a {
  color: #E19F02;
  text-decoration: none;
}

.bee {
  position: fixed; /* ou absolute si tu préfères, fixed marche bien ici */
  font-size: 24px;
  pointer-events: none;
  user-select: none;
  transition: transform 2s ease-out, opacity 2s ease-out;
  will-change: transform, opacity;
  z-index: 1000;
}

/* === PRESENTATION === */
.presentation {
  padding: 4vw 5vw;
  text-align: center;
  line-height: 1.6;
}

.coordonnees {
  word-break: break-word;
  padding: 1em 0;
}

.coordonnees a {
  color: #E19F02;
  text-decoration: none;
  font-weight: bold;
}

/* === MAP === */
.map-container {
  padding: 2em 5%;
  text-align: center;
}

.map-container h2 {
  margin-bottom: 1em;
  font-size: 1.8em;
}

/* === INTERVENTION ZONES === */
.intervention-zones {
  padding: 2em 5%;
}

.intervention-zones h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.intervention-zones ul {
  columns: 2;
  margin-top: 1em;
}

.intervention-zones li {
  margin-bottom: 0.5em;
}

/* === SLIDESHOW === */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 2em auto;
  overflow: hidden;
  background-color: #111;
  text-align: center;
}

.slide {
  display: none;
  padding: 1em;
}

.slide img {
  width: 300px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 3px solid #E19F02;
}

.slide p {
  margin-top: 0.5em;
  font-size: 1.2em;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2em;
}

/* === BOUTON D'APPEL FLOTTANT === */
.floating-call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E19F02;
  color: #000;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-call-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #FFD700;
}

.qr-code {
    display: block;
    margin: 1em auto;
    max-width: 150px;
    width: 100%;
    height: auto;
    border: 2px solid #E19F02;
    border-radius: 10px;
  }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 30vw;
    max-width: 120px; /* ne dépasse pas 120px même sur grand mobile/tablette */
  }

  .brand-name {
    font-size: 2em;
  }

  .phone-number {
    font-size: 5vw;
  }

  .presentation {
    font-size: 4vw;
  }

  .intervention-zones ul {
    columns: 1;
  }

  .floating-call-button {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 15px;
    right: 15px;
  }

}
