/* * {
  outline: 1px solid red;
} */

*, *::before, *::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  max-width: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* NAVBAR */

.navbar {
  background-color: #5f5e5e62;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.402);
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logo img {
  height: 70px;
  width: auto;
}

.navLinks {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navLinks a {
  text-decoration: none;
  color: #164283;
  font-weight: bold;
  transition: color 0.3s ease;
}
.navLinks a:hover {
  color: #e94e1b;
}

.navLinks a.active {
  color: #e94e1b;
}


.appointementButton .btn {
  background-color: #e94e1b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.appointementButton .btn:hover {
  background-color: #164283;
}

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

.burger span {
  width: 30px;
  height: 3px;
  background-color: #164283;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(48deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* PAGES */
main {
  flex: 1;
  padding-bottom: 2rem; /* espace avant le footer */
}

/* ---------------------------------- / / HOME PAGE STYLES (src/pages/acceuil.html) / / ---------------------------------- */

/* ---------------------------------- / / A PROPOS PAGE STYLES (src/pages/about.html) / / ---------------------------------- */

/* ---------------------------------- / / SERVICES PAGE STYLES (src/pages/service.html) / / ---------------------------------- */

/* ---------------------------------- / / CONTACT PAGE STYLES (src/pages/contact.html) / / ---------------------------------- */

/* ---------------------------------- / / FOOTER STYLES (src/components/footer.html) / / ---------------------------------- */



@import url("../components/appointment/popup.css");



