/* =========================
   VARIABLES / BASE CONTACT
   ========================= */
:root {
  --coral: #ff6b6b;
  --lemon: #ff6b6b;
  --ink: #2d2a32;
  --bg: #fff8fb;
  --card: #ffffff;
  --shadow: 0 10px 28px rgba(13,12,34,.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-y: scroll;
}

/* topbar */
.topbar {
  background: var(--coral);
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 8px 10px;
}

/* admin bandeau (même style que le reste du site) */
.admin-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #0ea5a5;
  color: #052;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 2px solid #ffc;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.admin-actions {
  display: flex;
  gap: 8px;
}
.btn-min {
  background: #fff;
  border: 1px solid #0b8;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* =========================
   HERO (même visuel que le site)
   ========================= */
.hero {
  position: relative;
  min-height: 300px;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px 80px;
  background-image: url('/assets/hero-island.png?v=307');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid var(--lemon);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,248,251,1) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero .hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  color: #1f2937;
}
.hero .hero-inner h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  font-weight: 800;
}
.hero .hero-inner p {
  margin: 0 auto;
  max-width: 600px;
  opacity: .9;
}
.hero .hero-inner .cta {
  margin-top: 14px;
  display: inline-block;
  background: var(--lemon);
  color: #0f0e0f;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

/* =========================
   PAGE CONTACT
   ========================= */
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr; /* une seule colonne */
  gap: 32px;
  align-items: flex-start;
}

.contact-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-intro p {
  margin-bottom: 12px;
  color: #4b5563;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: grid;
  gap: 6px;
  color: #1f2937;
}

.contact-help {
  font-size: .9rem;
  color: #6b7280;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.03);
  padding: 20px 20px 24px;
  /* margin-top: 28px;  <- tu peux le retirer */
}


.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .85rem;
  color: #1f2937;
}

.contact-form-card input,
.contact-form-card textarea {
  border: 1px solid #f3e7f0;
  border-radius: 14px;
  padding: 8px 10px;
  background: #fff;
  font-size: .9rem;
}

.contact-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  background: #fff89a;
  border: none;
  border-radius: 9999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  color: #1f2937;
  margin-top: 4px;
  transition: transform .05s ease-out;
}

.contact-btn:hover {
  transform: translateY(-1px);
}

.contact-msg {
  margin-top: 8px;
  font-size: .8rem;
}

/* footer mini */
footer {
  text-align: center;
  padding: 14px 16px 28px;
  font-size: .75rem;
  color: #6b7280;
}

/* responsive */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    order: 2;
    margin-top: 0;
  }
}
