@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Pacifico&display=swap");

:root {
  --landing-red: #bf4342;
  --landing-red-dark: #8f2f2f;
  --landing-cream: #fff2dc;
  --landing-ink: #2a1a1a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255, 205, 120, 0.25), transparent 35%),
    linear-gradient(140deg, #d45e5d 0%, #b14241 45%, #8f2f2f 100%);
}

.landing-shell {
  width: min(760px, 100%);
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 224, 0.95));
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.24);
  padding: 32px 34px;
  text-align: center;
}

.landing-logo {
  width: min(360px, 88%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.landing-shell h1 {
  margin: 0;
  font-family: "Pacifico", cursive;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--landing-red-dark);
}

.landing-shell p {
  margin: 12px auto 0;
  max-width: 540px;
  color: #5f4141;
  font-weight: 700;
  line-height: 1.45;
}

.landing-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.landing-legal {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: #6a4f4f;
}

.landing-legal a {
  color: #8f2f2f;
  font-weight: 700;
  text-decoration: none;
}

.landing-legal a:hover {
  text-decoration: underline;
}

.bouton {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 14px 26px;
  min-width: 200px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 5px 0 #962f2f;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bouton:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #962f2f;
}

.bouton:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #962f2f;
}

.bouton-secondary {
  background: linear-gradient(145deg, #f2c14a, #d99b18);
  color: #432700;
  box-shadow: 0 5px 0 #8a5c00;
}

.bouton-secondary:hover {
  box-shadow: 0 7px 0 #8a5c00;
}

.bouton-secondary:active {
  box-shadow: 0 2px 0 #8a5c00;
}

@media (max-width: 640px) {
  body {
    padding: 14px;
  }

  .landing-shell {
    padding: 24px 18px;
  }

  .landing-actions {
    flex-direction: column;
  }

  .bouton {
    width: 100%;
    min-width: 0;
  }

  .landing-legal {
    flex-wrap: wrap;
  }
}
