* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #fff;
}

/* PARTIE SUPERIEURE */
.top-section {
  background-color: #FFBD00;
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
}

.top-text {
  transform: rotate(-3deg);
  margin-bottom: 50px;
}

.top-section h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.top-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.event-image {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
}

/* LOGO ENTRE LES BLOCS */
.logo-center {
  position: relative;
  text-align: center;
  margin-top: -150px; 
  z-index: 2;
}

.logo-center img {
  width: 230px;
  height: auto;
}

/* PARTIE INFERIEURE */
.bottom-section {
  background: linear-gradient(to right, #070707, #4A4747);
  padding: 90px 20px 100px;
  text-align: center;
  position: relative;
  margin-top: -88px; 
  z-index: 1;
}

.bottom-section .description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
}

.bottom-section .contact {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 16px;
  text-align: left;
}

/* Style du bouton */
.bottom-section button {
  background-color: #FFBD00;
   border: 6px groove grey;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}*


/* Enlever le bleu du lien dans le bouton */
.bottom-section button a {
  text-decoration: none;
  color: #000; 
  display: inline-block;
  width: 100%;
  height: 100%;
}


/* Responsive Design */
@media screen and (max-width: 1200px) {
  .top-section h1 {
    font-size: 42px;
  }
  .top-section h2 {
    font-size: 28px;
  }
  .event-image {
    width: 100%;
    border-radius: 10px;
  }
  .logo-center {
    margin-top: -100px;
  }
  .logo-center img {
    width: 200px;
  } 

  .bottom-section {
    margin-top: -108px;
  }
  
}
@media (max-width: 992px) {
  .top-section h1 {
    font-size: 36px;
  }
  .top-section h2 {
    font-size: 26px;
  }
  .event-image {
    width: 100%;
    border-radius: 10px;
  }
  .logo-center {
    margin-top: -80px;
  }
  .logo-center img {
    width: 160px;
  }

  .bottom-section {
    margin-top: -90px;
  }
  .bottom-section .description {
    font-size: 16px;
    padding: 0 10px;
  }
  .bottom-section .description h1 {
    font-size: 27px;
    padding: 0 10px;
  }
  .bottom-section .contact {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
  .bottom-section button {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}


@media (max-width: 600px) {
  .top-section h1 {
    font-size: 28px;
  }
  .top-section h2 {
    font-size: 20px;
  }
  .event-image {
    width: 100%;
    border-radius: 10px;
  }
  .logo-center {
    margin-top: -50px;
  }
  .logo-center img {
    width: 100px;
  }

  .bottom-section {
    margin-top: -60px;
  }
  .bottom-section .description {
    font-size: 16px;
    padding: 0 10px;
  }
  .bottom-section .description h1 {
    font-size: 27px;
    padding: 0 10px;
  }
  .bottom-section .contact {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
  .bottom-section button {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

