/* Réinitialisation de quelques styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  box-sizing: inherit;
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

body,
html {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

body {
  /* background: $red; */
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  /* background: rgba(0, 0, 0, 0.6); */
  height: 80px;
  background: white;
}

/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: max-content;
  background: white;
  flex-direction: row;

  margin-right: 2em;
  margin-left: 2em;
} */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  margin-top: auto;
  margin-bottom: auto;
  /* height: 100%; */
  max-height: 80px;
  /* height: 100%; */
  margin-bottom: 5px;
}


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

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #0078d7;
}

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

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
  }

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

  .burger-menu {
    display: flex;
  }
}

nav ul {
  list-style: none;
  text-align: center;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}

nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

/* .cta-button {
  background: transparent;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  color: white;
  padding: 10px 20px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 5px;
  transition: border-width 0.5s ease, border-color 0.5s ease;
}

.cta-button:hover {
  border-width: 2px 2px 2px 2px;
  border-color: white;
  color: #fff;
} */

.btn {
  color: #fff;
  cursor: pointer;
  /* display: block; */
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  /* margin: 0 0 2em; */
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 20px;
  text-align: center;
  justify-content: center;
  width: 100%;

  /* texte non centré */

  justify-self: center;
  align-self: center;
  /* display: flex;
  margin: auto; */
  /* justify-content: center; */
  /* align-items: center; */
}

.btn:hover {
  text-decoration: none;
}

@media (min-width: 600px) {
  .btn {
    margin: 0 1em 2em;
  }
}

.cta-button {
  /* background: darken($red, 1.5%); */
  background: transparent;
  font-weight: 200;

}
.cta-button svg {
  height: 45px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cta-button rect {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  transition: all 0.35s linear;
}

.cta-button:hover {
  /* background: rgba($red, 0); */
  /* background: darken(tra,); */
  font-weight: 900;
  letter-spacing: 1px;
}

.cta-button:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.brand-title {
  color: #0085cc;
  font-size: 1.9rem;
}

/* Section de contenu */
.content-section {
  padding: 80px 20px;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  /* margin: 0 auto; */
}

/* Pour éviter que le contenu soit caché sous la navbar */
body {
  padding-top: 80px;
}

/* Section de contenu */
.content-section {
  padding: 80px 20px;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;

}

.hero-overlay {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* le footer */
.site-footer {
  background: #333;
  color: #fff;
  padding: 40px 20px;
  font-size: 0.9em;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


.site-footer .containerfooter {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-links li {
  /* Styles additionnels si nécessaire */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
}
.read-more:hover{
  color: #005384;
}
.read-more:hover h3{
  color: #005384;
}