/* Police locale Josefin Sans */
@font-face {
  font-family: 'JosefinSans';
  src: url('fonts/JosefinSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'JosefinSans';
  src: url('fonts/JosefinSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'JosefinSans';
  src: url('fonts/JosefinSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'JosefinSans', Arial, sans-serif;
}

/* SECTION PRINCIPALE */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/LandingPage1.png");  /* ← modifié */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Couche sombre */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Contenu centré */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fddb7c;
  max-width: 700px;
  padding: 20px;
}

/* Titre */
.content h1 {
  font-family: 'JosefinSans', sans-serif;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 20px;
  white-space: nowrap;
}

/* Texte */
.content p {
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 15px;
  color: white;
}

/* Bouton */
button {
  position: relative;
  z-index: 4;
  font-family: 'JosefinSans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid #f5d77a;
  border-radius: 50px;
  background: #f5d77a;
  color: #2c2d30;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: transparent;
  color: #f5d77a;
}

.hero2-right p {
  font-family: 'JosefinSans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff !important;
  max-width: 450px;
  text-align: center;
}
@keyframes rippleEffect {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}