/* public/landing.css */
/* 1. Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.6;
}

/* 2. Variables de thème */
:root {
  --color-primary: #F7C841;
  --color-accent:  #EA580C;
  --overlay:      rgba(0, 0, 0, 0.1);
}

/* 3. Bouton principal du header */
header a.inline-flex {
  background-color: var(--color-accent);
  color: #ffffff;
  padding: .85rem 1rem;
  border-radius: .75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: filter .25s, transform .3s;
  text-decoration: none;
}
header a.inline-flex:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* 4. Cartes et ombres */
.rounded-2xl {
  border-radius: 1.5rem;
}
.shadow-2xl {
  box-shadow: 0 10px 20px var(--overlay);
}

/* 5. Styles de l’accordéon FAQ */
details {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
details summary {
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
  cursor: pointer;
  font-weight: 600;
}
details div {
  padding: 0.75rem 1rem;
  background-color: #ffffff;
}

/* 6. QR-code card */
.bg-gradient-to-br {
  background: linear-gradient(135deg, #FFF7E6 0%, #FFE8CC 100%);
}

/* 7. Utilitaires custom (si tu préfères les CSS plutôt que des classes Tailwind) */
.max-w-\[300px\] { max-width: 300px; }
.max-w-\[420px\] { max-width: 420px; }
.gap-6 { gap: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
