@import url("https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Libre+Baskerville&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: baseFontSize;
  background-color: black;
  color: white;
}

section {
  border-bottom: #00ff00 solid 1px;
  padding-bottom: 50px;
}
@media(min-width:769px) {
  section {
    padding: 5%;
  }
}

/* Styling for a Neon-Wave Button */
button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #00ff00; /* Neon green color */
  background-color: #000;
  border: 1px solid #00ff00;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 1px rgba(0, 255, 0, 0.5); /* Neon green shadow */
  cursor: pointer;
}

/* Neon glow effect on hover */
button:hover {
  color: #377c29;
  box-shadow: 0 0 0px 0px rgba(0, 255, 0, 0.9); /* Intensified neon green shadow */
}

/* Button pressed effect */
button:active {
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); /* Slight shadow on button press */
}

/* Pseudo-element for the neon glow effect */
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.4) 0%, rgba(0, 255, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

button:hover::before {
  opacity: 1;
}

nav {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  border-bottom: #00ff00 1px solid;
  align-items: center;
  padding: 10px;
}
nav div {
  height: 90%;
  width: 33%;
  display: flex;
  justify-content: center;
}
@media(max-width: 768px) {
  nav div {
    font-size: 0.5em;
  }
}
nav div .burger-menu-button {
  border: none;
  box-shadow: none;
  font-size: 35px;
  font-weight: 100;
}
nav div .clicked {
  transform: rotate(180deg);
}
nav .burger-menu {
  display: none;
}
nav .visible {
  display: flex;
}

.prendre-rendez-vous-button {
  font-size: 0.5em;
  text-transform: none;
  color: back;
  border: none;
  background-color: rgb(190, 190, 190);
  color: black;
  width: auto;
  padding: 5px;
}

h3 {
  color: white;
}

footer {
  max-height: 200px;
  font-size: 0.45em;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  color: #5f5f5f;
  align-items: center;
}
footer div {
  padding: 10px;
}
footer .company-info {
  color: white;
}
footer a {
  color: #5f5f5f;
}

/*# sourceMappingURL=main.css.map */
