@charset "UTF-8";
/* --------------------------fonts------------------------------------------ */
/* Comic Neue-bold*/
@font-face {
  font-family: "Comic Neue";
  src: url("/fonts/ComicNeue-Bold.woff2") format("woff2"), url("/fonts/ComicNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Comic Neue-regular*/
@font-face {
  font-family: "Comic Neue";
  src: url("/fonts/ComicNeue-Regular.woff2") format("woff2"), url("/fonts/ComicNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Comic Luckiest Guy*/
@font-face {
  font-family: "Luckiest Guy";
  src: url("/fonts/LuckiestGuy-Regular.woff2") format("woff2"), url("/fonts/LuckiestGuy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Comic Neue", sans-serif;
  color: black;
  margin: 0;
  padding: 0;
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

main {
  margin: 0;
  padding-top: 1rem;
  min-height: 80vh;
  position: relative;
  z-index: 0;
}
main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/logo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -1;
}
@media (min-width: 768px) {
  main::before {
    background-attachment: fixed;
  }
}

h1 {
  font-family: "Luckiest guy", sans-serif;
  margin: 0 0 50px 0;
  font-size: 2em;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: #232729;
}

ul {
  list-style: none;
}

.contentWrapper {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contentWrapper {
    padding: 1rem;
  }
  .contentWrapper h2 {
    font-size: 1.75rem;
  }
  .contentWrapper h3 {
    font-size: 1.25rem;
  }
}
:root {
  --font-size: 1rem;
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbarLogo img {
  height: 82px;
  transition: transform 0.25s ease;
}

.navbarLogo:hover img {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  font-size: 1rem;
  background-color: #006a91;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  position: relative;
  z-index: 1000;
}
.navbar .navbarLinks {
  display: flex;
  gap: 30px;
}
.navbar .navbarLink a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.burger {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .navbarLinks {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 0;
    height: calc(100vh - 65px);
    position: absolute;
    top: 0px;
    right: 0;
    background: #006a91;
    transform: translateX(110%);
    transition: all 0.5s ease-in-out;
  }
  .show-nav .navbarLinks {
    width: 100vw;
    transform: translateX(0);
  }
  .navbarLink {
    transform: translateX(101%);
    transition: all 0.5s ease-in-out;
  }
  .show-nav .navbarLink {
    transform: translateX(0);
  }
  .navbarLink > a {
    display: block;
    padding: 1rem;
    font-size: 1.6rem;
    color: white;
    transition: all 0.4s ease-in-out;
  }
  .navbarLink > a:hover {
    padding-left: 2rem;
    letter-spacing: 5px;
  }
  /* Toggle menu */
  .burger {
    display: block;
    position: relative;
    padding: 0;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .bar {
    display: block;
    margin-right: 10px;
    width: 35px;
    height: 3px;
    border-radius: 3px;
    background: white;
    transition: all 0.5s ease-in-out;
  }
  .bar::before,
  .bar::after {
    content: "";
    width: 35px;
    height: 3px;
    position: absolute;
    left: 0;
    background: white;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
  }
  .bar::before {
    transform: translateY(-12px);
  }
  .bar::after {
    transform: translateY(12px);
  }
  .show-nav .bar {
    width: 0;
    background: transparent;
  }
  .show-nav .bar::before {
    transform: rotate(45deg);
  }
  .show-nav .bar::after {
    transform: rotate(-45deg);
  }
  /* Bonus - Animations */
  .show-nav .first {
    transition: all 1s ease-out;
  }
  .show-nav .second {
    transition: all 1.1s ease-out;
  }
  .show-nav .third {
    transition: all 1.2s ease-out;
  }
  .show-nav .fourth {
    transition: all 1.3s ease-out;
  }
}
/*  Medium device - Bonus */
@media screen and (min-width: 768px) {
  .navbarLink > a::after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.4s;
  }
  .navbarLink:hover > a::after {
    width: 100%;
  }
}
/* bonus */
.main-content,
#section2 {
  height: 100vh;
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  background-color: #f1c40f;
  color: #006a91;
  padding: 2rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.footer img {
  width: 24px;
  height: 24px;
  margin: 0 0.5rem;
}
.footer .footer-beatles {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 90px;
  height: auto;
  pointer-events: none;
}

/* Footer Top: icônes + lien Redon */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footer-top .social-links {
  display: flex;
  gap: 1.5rem;
}
.footer-top .social-links a {
  font-size: 32px;
  color: #006a91;
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}
.footer-top .social-links a:hover {
  color: #00d1ff;
  transform: scale(1.1);
}
.footer-top .link-redon-container {
  margin-top: 0.8rem;
}
.footer-top .link-redon-container .link-redon {
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #006a91;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}
.footer-top .link-redon-container .link-redon:hover {
  color: #00d1ff;
  transform: scale(1.05);
  text-decoration: underline;
}
.footer-top .link-redon-container .link-redon .favicon-link {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Footer Middle: Map + Contact */
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-middle .map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}
.footer-middle .contact-info {
  text-align: center;
}
.footer-middle .contact-info p {
  margin: 0.3rem 0;
  font-size: 1.2rem;
}
.footer-middle .contact-info .phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: rgba(236, 63, 40, 0.8862745098);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #006a91;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background-color 0.3s;
  cursor: pointer;
}
.footer-middle .contact-info .phone a:hover {
  background-color: #00d1ff;
  transform: scale(1.05);
}
.footer-middle .contact-info .phone a i {
  font-size: 1.4rem;
}

/* Footer Bottom: liens légaux + copyright */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}
.footer-bottom .legal-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-bottom .legal-links li {
  font-size: 1rem;
}
.footer-bottom .legal-links li a {
  color: #006a91;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-bottom .legal-links li a:hover {
  color: #00d1ff;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .all-levels {
    font-size: 2rem;
  }
  .seo,
  .about,
  .infos {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .footer-middle {
    flex-direction: row;
    gap: 3rem;
  }
  .footer-middle .map,
  .footer-middle .contact-info {
    flex: 1;
  }
  .footer-middle .contact-info {
    text-align: left;
  }
  .footer-bottom .legal-links {
    flex-direction: row;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 3rem 4rem;
  }
  .footer-middle .map iframe {
    height: 300px;
  }
}
.tarifs {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 2rem;
  font-family: "Luckiest guy", sans-serif;
  max-width: 1100px;
  margin: auto;
}
.tarifs .vignette {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #f1c40f;
  min-height: 200px;
  color: #f1c40f;
  /* rotation rétro */
}
.tarifs .vignette:nth-child(odd) {
  transform: rotate(-0.6deg);
}
.tarifs .vignette:nth-child(even) {
  transform: rotate(0.6deg);
}
.tarifs .vignette {
  /* CADRE ROUGE DERRIERE */
}
.tarifs .vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(236, 63, 40, 0.8862745098);
  z-index: -1;
}
.tarifs .vignette {
  /* -------- IMAGE + TITRE -------- */
}
.tarifs .vignette .titleImage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tarifs .vignette .titleImage h3 {
  margin-bottom: 0.5rem;
}
.tarifs .vignette .titleImage img {
  width: 70%;
  max-width: 260px;
  max-height: 380px;
  object-fit: contain;
  margin: 10px 0;
}
.tarifs .vignette {
  /* -------- TEXTE -------- */
}
.tarifs .vignette .texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tarifs .vignette .texte p {
  margin: 0.4rem 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* ---------------- DESKTOP ---------------- */
@media screen and (min-width: 768px) {
  .tarifs .vignette {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
  }
  .tarifs .vignette .titleImage {
    width: 50%;
    align-items: flex-start;
    text-align: left;
  }
  .tarifs .vignette .titleImage h3 {
    font-size: clamp(1.1rem, 4vw, 3rem);
  }
  .tarifs .vignette .titleImage img {
    width: 80%;
    max-width: none;
  }
  .tarifs .vignette .texte {
    width: 50%;
    align-items: flex-end;
    text-align: right;
  }
  .tarifs .vignette .texte p {
    font-size: clamp(1.1rem, 3vw, 3rem);
  }
  .tarifs {
    /* -------- VIGNETTE GAUCHE -------- */
  }
  .tarifs .vignette.left {
    flex-direction: row;
    clip-path: polygon(0 0, 100% 8%, 100% 90%, 0% 100%);
  }
  .tarifs .vignette.left::before {
    clip-path: polygon(-4% -2%, 104% 6%, 101% 92%, -3% 104%);
    transform: translate(-18px, 18px);
  }
  .tarifs {
    /* -------- VIGNETTE DROITE -------- */
  }
  .tarifs .vignette.right .titleImage {
    align-items: flex-end;
    text-align: right;
  }
  .tarifs .vignette.right {
    flex-direction: row-reverse;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 90%);
  }
  .tarifs .vignette.right::before {
    clip-path: polygon(-5% 18%, 104% -3%, 103% 103%, -3% 88%);
    transform: translate(18px, 18px);
  }
}
.vignetteMethode {
  font-family: "Comic Neue", sans-serif;
  padding: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  /* CADRE ROUGE (arrière) */
}
.vignetteMethode::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  z-index: 0;
  background: rgba(236, 63, 40, 0.8862745098);
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 90%);
}
.vignetteMethode {
  /* 📐 GRAND CADRE BLEU (avant) */
}
.vignetteMethode .methode-content {
  position: relative;
  z-index: 1;
  background: #006a91;
  color: white;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  clip-path: inset(0);
}
@media (min-width: 731px) {
  .vignetteMethode .methode-content {
    clip-path: polygon(-4% -2%, 104% 6%, 101% 92%, -3% 104%);
  }
}
.vignetteMethode .methode-content h2.title {
  text-align: center;
  font-family: "Luckiest guy", sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: 0.05em;
}
.vignetteMethode .methode-content h3 {
  font-family: "Luckiest guy", sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  color: #f1c40f;
}
.vignetteMethode .methode-content p,
.vignetteMethode .methode-content li {
  line-height: 1.6;
  color: white;
}
.vignetteMethode .methode-content ul {
  padding-left: 1rem;
}
.vignetteMethode .methode-content ul li {
  margin-bottom: 0.5rem;
}
.vignetteMethode .methode-content {
  /* ------------------- IMAGES PÊLE-MÊLE ------------------- */
}
.vignetteMethode .methode-content .methode-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4rem 0 5rem;
}
.vignetteMethode .methode-content .methode-images img {
  position: relative;
  margin: -15px;
  border: 3px solid white;
  border-radius: 6px;
  transition: transform 0.3s, z-index 0.3s;
}
.vignetteMethode .methode-content .methode-images img:nth-child(1) {
  width: 120px;
  transform: rotate(-8deg) translateY(8px);
  z-index: 1;
}
.vignetteMethode .methode-content .methode-images img:nth-child(2) {
  width: 110px;
  transform: rotate(6deg) translateY(-5px);
  z-index: 2;
}
.vignetteMethode .methode-content .methode-images img:nth-child(3) {
  width: 130px;
  transform: rotate(-3deg) translateY(10px);
  z-index: 3;
}
.vignetteMethode .methode-content .methode-images img:nth-child(4) {
  width: 115px;
  transform: rotate(7deg) translateY(-8px);
  z-index: 2;
}
.vignetteMethode .methode-content .methode-images img:nth-child(5) {
  width: 125px;
  transform: rotate(-5deg) translateY(5px);
  z-index: 1;
}
.vignetteMethode .methode-content .methode-images img:hover {
  transform: rotate(0deg) scale(1.1);
  z-index: 10;
}
@media (min-width: 768px) {
  .vignetteMethode .methode-content .methode-images img:nth-child(1) {
    width: 150px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(2) {
    width: 140px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(3) {
    width: 170px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(4) {
    width: 145px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(5) {
    width: 160px;
  }
}
@media (min-width: 1200px) {
  .vignetteMethode .methode-content .methode-images img:nth-child(1) {
    width: 180px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(2) {
    width: 170px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(3) {
    width: 200px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(4) {
    width: 175px;
  }
  .vignetteMethode .methode-content .methode-images img:nth-child(5) {
    width: 190px;
  }
}
.vignetteMethode .methode-content {
  /* ------------------- IMAGES INLINE ------------------- */
}
.vignetteMethode .methode-content .image-inline {
  display: block;
  margin: 2rem auto;
  width: 200px;
  max-width: 90%;
  height: auto;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .vignetteMethode .methode-content .image-inline {
    width: 180px;
    margin: 2.5rem auto;
  }
}
@media (min-width: 1200px) {
  .vignetteMethode .methode-content .image-inline {
    width: 220px;
    margin: 3rem auto;
  }
}
.vignetteMethode .methode-content {
  /* ------------------- PDF + BOUTON ------------------- */
}
.vignetteMethode .methode-content .pdf-preview {
  margin: 1rem 0;
  text-align: center;
}
.vignetteMethode .methode-content .pdf-preview iframe {
  width: 100%;
  max-width: 380px;
  height: 160px;
  border: 2px solid white;
  opacity: 0.9;
}
.vignetteMethode .methode-content .pdf-preview:hover iframe {
  opacity: 1;
}
.vignetteMethode .methode-content .pdf-preview .btn-pdf {
  display: inline-block;
  margin-top: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  transition: 0.2s;
}
.vignetteMethode .methode-content .pdf-preview .btn-pdf:hover {
  background: white;
  color: #006a91;
}
@media (min-width: 731px) {
  .vignetteMethode .methode-content .pdf-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vignetteMethode .methode-content .pdf-preview .btn-pdf {
    margin-top: 1rem;
  }
}
.vignetteMethode {
  /* ------------------- RESPONSIVE PADDING ------------------- */
}
@media (min-width: 768px) {
  .vignetteMethode {
    padding: 4rem;
  }
  .vignetteMethode .methode-content {
    padding: 3rem 4rem;
  }
}
@media (min-width: 1200px) {
  .vignetteMethode {
    padding: 6rem;
  }
  .vignetteMethode .methode-content {
    padding: 4rem 5rem;
  }
}

.instruments-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.instruments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.instruments .instrument-card {
  background-color: #f1c40f;
  color: rgba(236, 63, 40, 0.8862745098);
  font-family: "Comic Neue", sans-serif;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-origin: center center;
  padding: 2rem;
}
.instruments .instrument-card h3 {
  font-size: 2rem;
}
.instruments .instrument-card img {
  width: 60%;
  margin: 0 auto;
  display: block;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg) scale(0.95);
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease;
}
.instruments .instrument-card h3 {
  font-family: "Luckiest guy", sans-serif;
  text-align: center;
  margin: 0.5rem;
}
.instruments .instrument-card .description {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.instruments .instrument-card.open .description {
  max-height: 200px;
  padding: 0.5rem;
}
.instruments .instrument-card.open img {
  max-height: 250px;
  opacity: 1;
  transform: rotate(-1deg) scale(1);
  margin-bottom: 1rem;
}
.instruments .instrument-card.open .description {
  max-height: 200px;
  padding: 0.5rem;
}
.instruments .instrument-card.one {
  clip-path: polygon(3% 0%, 97% 2%, 95% 100%, 5% 98%);
}
.instruments .instrument-card.two {
  clip-path: polygon(5% 2%, 95% 0%, 97% 98%, 3% 100%);
  color: #006a91;
}
.instruments .instrument-card.three {
  clip-path: polygon(5% 2%, 95% 0%, 97% 98%, 4% 105%);
}
.instruments .instrument-card.four {
  clip-path: polygon(4% 1%, 96% 3%, 94% 99%, 6% 97%);
  color: #006a91;
}
.instruments .instrument-card.five {
  clip-path: polygon(3% 2%, 97% 4%, 95% 96%, 5% 94%);
}
.instruments .instrument-card.six {
  clip-path: polygon(2% 1%, 98% 3%, 96% 98%, 4% 96%);
  color: #006a91;
}
.instruments .instrument-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .instruments {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
  .instruments .instrument-card {
    width: 100%;
    height: auto;
  }
  .instruments .instrument-card.three {
    color: #006a91;
  }
  .instruments .instrument-card.four {
    color: rgba(236, 63, 40, 0.8862745098);
  }
  .instruments .instrument-card.six {
    color: #006a91;
  }
}

.videos-gallery-container {
  padding: 2rem;
}
.videos-gallery-container .intro {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.videos-gallery-container .videos-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.videos-gallery-container .videos-gallery .video-thumb {
  cursor: pointer;
  text-align: center;
  width: 250px;
  background-color: #fff;
  border: 2px solid #f1c40f;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.videos-gallery-container .videos-gallery .video-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.videos-gallery-container .videos-gallery .video-thumb img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.2s;
}
.videos-gallery-container .videos-gallery .video-thumb h3 {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  overflow: hidden;
}

.lightbox iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox .close {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 2rem;
  color: #f1c40f;
  cursor: pointer;
  font-weight: bold;
}

/* ================= HERO ================= */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background: rgba(236, 63, 40, 0.8862745098);
  color: white;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}
.hero .hero-content {
  flex: 1 1 600px;
  text-align: center;
  max-width: 700px;
}
.hero .hero-content h1 {
  font-family: "Luckiest guy", sans-serif;
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1rem;
}
.hero .hero-content .tagline {
  font-family: "Comic Neue", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero .hero-content .all-levels {
  font-family: "Luckiest guy", sans-serif;
  font-size: 2.4rem;
  color: #f1c40f;
  margin: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero .hero-illustration img {
  max-width: 300px;
}

/* ================= BOUTONS ================= */
.btn-primary,
.btn-secondary {
  margin: 2rem 0;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
  background: #f1c40f;
  color: #006a91;
}
.btn-primary:hover {
  background: rgb(193.7007874016, 157.3818897638, 11.2992125984);
  transform: scale(1.05);
}

.btn-secondary {
  background: #006a91;
  color: white;
}
.btn-secondary:hover {
  background: rgb(0, 68.7172413793, 94);
  transform: scale(1.05);
}

/* ================= SECTIONS POLYGON ================= */
.seo,
.about,
.infos {
  background: white;
  padding: 3rem 2rem;
  margin: 5rem auto;
  max-width: 1000px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.seo {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.about {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.infos {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

/* ================= ANIMATION SCROLL ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TEXTES ================= */
section h2 {
  font-family: "Luckiest guy", sans-serif;
  color: #006a91;
  margin-bottom: 1rem;
  font-size: 2rem;
}
section p, section li {
  font-family: "Comic Neue", sans-serif;
  color: #006a91;
  font-size: 1.1rem;
}
section ul {
  list-style: none;
  padding: 0;
}
section li {
  margin: 0.5rem 0;
}

/* ================= CTA ================= */
.cta {
  background: rgba(236, 63, 40, 0.8862745098);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  clip-path: polygon(0 0, 100% 10%, 100% 85%, 0% 100%);
}
.cta h2 {
  font-family: "Luckiest guy", sans-serif;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.2rem;
}

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