/* Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

a {
  color: #1e1f42;
  text-decoration: none;
}

a:hover {
  color: #008da5;
  transition: all 300ms ease;
}

body {
  background-color: #fbfbfb;
  font-family: Montserrat, sans-serif;
}

ul {
  list-style: none;
  margin: 0;
}

footer {
  position: relative;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  align-items: center;
  z-index: 999;
}

.footer-logo{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1e1f42;
}

.footer__img {
  max-height: 80px;
}

.main-container {
  width: 90%;
  margin: 0 auto;
}

/* header */
.header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 2%;
  left: 5%;
  width: 90%;
  height: 60px;
  padding: 2px;
  background-color: #fbfbfb;
  align-items: center;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 12px;
  z-index: 999;
}

.header__info {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  gap: 18px;
  list-style: none;
  font-weight: 700;
  font-size: 18px;
}

.header__content-logo {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.header-text {
  font-size: 22px;
  font-weight: bold;
  color: #1e1f42;
  font-family: Montserrat, sans-serif;
}

/* Intro*/

.hero {
    position: relative;
    text-align: center;
    margin-top: 2%;
    width: 90%;
    height: 94vh;
    margin-inline: auto;
    border-radius: 16px;
    overflow: hidden; /* Pour éviter le dépassement */
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/img/image_brouteur.png");
    background-position: center;
    background-size: cover;
    filter: blur(22px);
    z-index: -1; /* Pour mettre l’image floutée en arrière-plan */
  }

.hero__text {
  position: absolute;
  text-align: start;
  bottom: 26%;
  font-size: 36px;
  left: 6%;
  color: white;
  font-weight: 600;
  padding-right: 18%;
}

.hero__text_2 {
  margin-top: 6%;
}

.hero__text_gras {
  font-weight: 700;
}

.hero__arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
  width: 50px;
  height: 50px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.brouteurs-section {
  padding: 50px 0;
}

.brouteurs-section h2 {
  font-size: 2.4em;
  font-weight: bold;
  color: #191847;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease-in-out;
  cursor: default;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.card p {
  font-size: 1em;
  color: #333;
}

.sandoz-section {
  margin: 20px auto;
  color: black;
  text-align: center;
}

.sandoz-section h2 {
  text-align: start;
}

.sandoz-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin: 30px 0;
  margin-bottom: 50px;
}

.sandoz-text {
  max-width: 600px;
  text-align: left;
}

.sandoz-section h2 {
  font-size: 2.4em;
  font-weight: bold;
  color: #191847;
}

.sandoz-text p {
  font-size: 1.1em;
  line-height: 1.6;
}

.sandoz-image img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px #1E1F42;
}

.sandoz-video iframe {
  width: 80%;
  max-width: 1200px;
  height: 600px;
  border-radius: 12px;
}

.protection-section {
  padding: 50px 20px;
  background-color: #f8f8fc;
  color: #0d0d0d;
}

.protection-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #1E1F42;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
}

.protection-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 1.1em;
  cursor: default;
  max-width: 280px;
  min-height: 300px;
  margin: 10px auto;
  transition: transform 0.3s ease-in-out;
}

.protection-card:hover{
  transform: translateY(-5px);
}

.protection-card h3 {
  margin-bottom: 20px;
}

.protection-card p:first-child {
  font-weight: bold;
  font-size: 1.2em;
}

.event-section {
  text-align: left;
  background-color: #f8f8fc;
  color: #0d0d0d;
  padding: 50px 0;
}

.event-section h2 {
  font-size: 2.4em;
  font-weight: bold;
  color: #191847;
}

.event-section p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.event-section ul {
  list-style: none;
  padding: 0;
  font-size: 1.2em;
}

.event-section ul li {
  margin-bottom: 10px;
}

.event-content {
  max-width: 1200px;
  margin: 20px auto;
}

.event-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 30px auto;
  max-width: 1200px;
}

.image-row {
  display: flex;
  container: content;
  overflow: hidden;
  gap: 15px;
}

.image-row img {
  width: 49%;
  border-radius: 12px;
  object-fit: cover;
}

.large-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.event-details {
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 30px;
}

.event-details-content {
  max-width: 800px; 
  margin-left: 6%;
}

.instagram-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('/assets/img/mockup_insta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 25%;
  right: 5%;
  color: white;
  max-width: 500px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-size: 1.5em;
  font-weight: bold;
}

.icone{
  width: 60px;
  height: 60px;
  margin-top: 20px;
  transition: transform 0.3s ease-in-out;
}

.icone:hover{
  transform: translateY(-5px);
}