@import "animations.css";
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/Outfit-Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Outfit", sans-serif;
}

body {
  overflow-x: hidden;
}

section {
  min-height: 100vh;
  width: 100vw;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(30%);
}

.poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  filter: brightness(30%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.hero-content img {
  max-width: 300px;
  margin: 0;
  animation: fadeIn 2s ease-in-out;
}

.cta-button {
  margin-top: 20px;
  background: #71350D;
  padding: 12px 24px;
  color: white;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  cursor: pointer;
  animation: fadeIn 3s ease-out;
}

section#about {
  width: 100vw;
  padding: 3rem;
  background-color: #ffffff;
  color: #262626;
}
section#about .about-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
section#about .about-left {
  flex: 2;
  min-width: 300px;
}
section#about .about-left .description {
  margin-bottom: 2rem;
}
section#about .about-left .description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
section#about .about-left .description p {
  font-size: 1.1rem;
  line-height: 1.6;
}
section#about .about-left .accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#about .about-left .accordion .accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
section#about .about-left .accordion .accordion-item .accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
section#about .about-left .accordion .accordion-item .accordion-header i {
  transition: transform 0.3s ease;
}
section#about .about-left .accordion .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 1rem;
  opacity: 0;
}
section#about .about-left .accordion .accordion-item.active .accordion-content {
  opacity: 1;
}
section#about .about-left .accordion .accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}
section#about .about-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#about .about-right .video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}
section#about .about-right .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
section#about .about-right .cta-button {
  background: #7B8A88;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
section#about .about-right .cta-button:hover {
  background: rgb(98.6746987952, 111.3253012048, 109.6385542169);
}
@media (max-width: 768px) {
  section#about {
    min-height: 100vh;
  }
}

.form-section {
  background: #ffffff;
  padding: 2rem 0;
  margin-top: 2rem;
  width: 100%;
}

.form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 3rem;   /* aligné avec le texte */
}

.form-section iframe {
  width: 100%;
  max-width: 700px;
  height: 600px;        /* hauteur compacte idéale pour scroll interne */
  border: none;
}


@media (max-width: 768px) {
  section#about .about-container {
    flex-direction: column;
  }
  section#about .about-right {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
footer#main-footer {
  background-color: #71350D;
  color: white;
  padding: 2rem 1rem 1rem;
  position: relative;
  z-index: 1;
}
footer#main-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
footer#main-footer .footer-container .footer-logo {
  width: 60px;
  height: auto;
}
footer#main-footer .footer-container .footer-cta {
  background: white;
  color: #71350D;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
footer#main-footer .footer-container .footer-cta:hover {
  background: white;
}
footer#main-footer .footer-container .social-icons {
  display: flex;
  gap: 1rem;
}
footer#main-footer .footer-container .social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
  text-decoration: none;
}
footer#main-footer .footer-container .social-icons a:hover {
  transform: scale(1.2);
}
footer#main-footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
}
footer#main-footer .footer-bottom a {
  color: white;
  text-decoration: underline;
  transition: color 0.3s;
}
footer#main-footer .footer-bottom a:hover {
  color: white;
}

@media (max-width: 600px) {
  footer#main-footer .footer-container {
    gap: 1rem;
  }
  footer#main-footer .social-icons {
    font-size: 1.2rem;
  }
}

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