/* ==========================
   RESET + GLOBAL
========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: url("/Images/background.png") center/cover no-repeat fixed;
  color: #222;
  overflow-x: hidden;
}

/* ==========================
   BARRE DE PROGRESSION
========================== */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;

  width: 0%;
  height: 4px;

  background: rgb(241, 130, 173);

  z-index: 999999;

  transition: width 0.15s ease;
}

/* ==========================
   HEADER
========================== */

header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 9999;

  padding: 18px 5%;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(12px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================
   LOGO
========================== */

.logo {
  text-decoration: none;
  color: inherit;

  display: flex;
  align-items: center;
}

.logo p {
  font-family: "Archivo Black", sans-serif;

  font-size: 28px;
  color: #111;

  cursor: pointer;
}

/* ==========================
   MENU DESKTOP
========================== */

header ul {
  display: flex;
  align-items: center;
  gap: 15px;

  list-style: none;
}

header ul li {
  position: relative;
}

header ul li a {
  text-decoration: none;

  color: #111;

  font-size: 16px;
  font-weight: 600;

  padding: 10px 18px;

  border-radius: 14px;

  transition: 0.3s ease;
}

header ul li a:hover {
  background: rgba(241, 130, 173, 0.16);

  color: rgb(241, 130, 173);
}

/* ==========================
   SOUS MENU
========================== */

.sousnav {
  position: absolute;

  top: 115%;
  left: 0;

  min-width: 220px;

  display: none;
  flex-direction: column;
  gap: 8px;

  padding: 14px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(14px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

header ul li:hover .sousnav {
  display: flex;
}

.sousnav li a {
  display: block;
  padding: 12px;
}

/* ==========================
   BURGER
========================== */

.menu-toggle {
  display: none !important;

  border: none;
  background: none;

  font-size: 34px;

  cursor: pointer;
}

/* ==========================
   HOME SECTION
========================== */

.home-section {
  min-height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 130px 5% 40px;
}

/* HERO */

.hero-image {
  width: 100%;
  max-width: 1250px;

  height: 520px;

  object-fit: cover;

  border-radius: 35px;

  margin-bottom: 45px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* TEXTE */

.right {
  width: 100%;
  max-width: 1000px;

  text-align: left;
}

.text-right {
  display: block;

  color: rgb(241, 130, 173);

  font-weight: 700;
  letter-spacing: 4px;

  margin-bottom: 12px;
}

.right h1 {
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  

  margin-bottom: 25px;
}

.right p {
  color: #444;

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 20px;
}

/* ==========================
   INTRO
========================== */

#intro {
  padding: 30px 5% 80px;
}

.text-bas {
  max-width: 1150px;

  margin: auto;

  padding: 50px;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(10px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.text-bas p {
  color: #444;

  font-size: 18px;
  line-height: 1.9;

  text-align: left;

  margin-bottom: 18px;
}

.text-bas i {
  color: rgb(241, 130, 173);
}

/* ==========================
   FOOTER
========================== */

.site-footer {
  margin-top: 60px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(12px);

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  padding: 45px 5% 20px;
}

.footer-content {
  max-width: 1200px;

  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;

  gap: 40px;
}

.footer-brand h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.footer-brand p {
  color: #555;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #444;

  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: rgb(241, 130, 173);
}

.footer-contact p {
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;

  margin-top: 35px;
  padding-top: 20px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  color: #777;
  font-size: 14px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {
  /* BURGER */

  .menu-toggle {
    display: block !important;
  }

  header ul {
    position: fixed;

    top: 85px;
    right: -100%;

    width: 280px;

    flex-direction: column;
    align-items: stretch;

    gap: 12px;

    padding: 25px;

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(20px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);

    transition: 0.35s ease;
  }

  header.active ul {
    right: 20px;
  }

  header ul li a {
    text-align: center;
    padding: 14px;
  }

  /* SOUS MENU MOBILE */

  .sousnav {
    position: static;
    display: none;

    background: rgba(240, 240, 240, 0.7);

    box-shadow: none;
  }

  li.open .sousnav {
    display: flex;
    flex-direction: column;
  }

  /* HERO */

  .home-section {
    padding: 110px 5% 25px;
  }

  .hero-image {
    height: 320px;

    border-radius: 25px;

    margin-bottom: 30px;
  }

  .right h1 {
    font-size: 34px;
  }

  .right p {
    text-align: justify;
    font-size: 16px;
  }

  /* INTRO */

  #intro {
    padding: 20px 5% 50px;
  }

  .text-bas {
    padding: 30px;
  }

  .text-bas p {
    text-align: justify;
    font-size: 16px;
  }

  /* FOOTER */

  .footer-content {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 30px;
  }

  .footer-links {
    align-items: center;
  }

}
