/* ====== LAUSHOP ATELIERS - DA laushop.fr ====== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --pink: #ffc2e7;
  --pink-medium: #f893b8;
  --pink-pale: #fff0f7;
  --pink-hot: #ff6eb4;
  --black: #111111;
  --dark: #222222;
  --gray: #6b7280;
  --gray-light: #f5f5f5;
  --gray-border: #e5e5e5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.22s var(--ease);
}

.header__logo:hover { opacity: 0.8; }

.header__logo img {
  height: 40px;
  width: auto;
}

/* ====== WELCOME SECTION ====== */
.welcome-section {
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.welcome__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 750px) {
  .welcome__inner { grid-template-columns: 1fr 1.1fr; }
}

.welcome__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.welcome__photo:hover { transform: rotate(-1deg) scale(1.02); }

.welcome__content h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.welcome__content h1 em {
  font-style: normal;
  color: var(--pink-hot);
}

.welcome__content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 749px) {
  .welcome__content { text-align: center; }
  .welcome__content .btn { width: 100%; }
}

/* ====== FEATURES STRIP ====== */
.features-strip {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-medium) 100%);
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.feature-chip {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.3rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-chip:hover {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ====== SECTIONS ====== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__title {
  font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  color: var(--black);
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* ====== TYPE CARDS (landing page) ====== */
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 750px) {
  .types-grid { grid-template-columns: repeat(4, 1fr); }
}

.type-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.type-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink));
}

.type-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.type-card:hover .type-card__image-wrap img {
  transform: scale(1.08);
}

.type-card__body {
  padding: 1.1rem 1rem;
  text-align: center;
}

.type-card__title {
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.type-card__cta {
  font-size: 0.78rem;
  color: var(--pink-hot);
  font-weight: 600;
  transition: letter-spacing 0.2s var(--ease);
}

.type-card:hover .type-card__cta {
  letter-spacing: 0.5px;
}

/* ====== CALENDRIER ====== */
.calendrier-section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Calendar tabs */
.cal-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.cal-tabs::-webkit-scrollbar { display: none; }

.cal-tab {
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all 0.22s var(--ease);
  flex-shrink: 0;
}

.cal-tab:hover {
  border-color: var(--pink);
  color: var(--pink-hot);
}

.cal-tab--active {
  background: var(--pink-hot);
  border-color: var(--pink-hot);
  color: var(--white);
}

.cal-tab--active:hover {
  color: var(--white);
}

.cal-panel {
  display: none;
  animation: fadeIn 0.3s var(--ease);
}

.cal-panel--active {
  display: block;
}

.calendrier__events {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calendrier__event {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.calendrier__event:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(255, 194, 231, 0.3);
  transform: translateX(6px);
}

.calendrier__event--complet {
  opacity: 0.45;
  pointer-events: none;
}

.calendrier__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  flex-shrink: 0;
}

.calendrier__day {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--black);
}

.calendrier__weekday {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-top: 0.2rem;
}

.calendrier__event-photo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink));
}

.calendrier__event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calendrier__event-info {
  flex: 1;
  min-width: 0;
}

.calendrier__event-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calendrier__event-time {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.1rem;
}

.calendrier__event-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.calendrier__event-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.calendrier__event-places {
  font-size: 0.75rem;
  color: var(--gray);
}

.calendrier__event-low {
  font-size: 0.75rem;
  color: var(--pink-hot);
  font-weight: 600;
}

.calendrier__event-arrow {
  font-size: 1.2rem;
  color: var(--gray-border);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s var(--ease);
}

.calendrier__event:hover .calendrier__event-arrow {
  color: var(--pink-hot);
  transform: translateX(4px);
}

@media (max-width: 500px) {
  .calendrier__event-photo { display: none; }
  .calendrier__event { gap: 0.75rem; padding: 0.8rem 1rem; }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.22s var(--ease);
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

/* ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn:active::after { opacity: 1; }

.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn--pink {
  background: var(--pink-hot);
  color: var(--white);
  border-color: var(--pink-hot);
}
.btn--pink:hover {
  background: #ff57a5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 110, 180, 0.35);
}

.btn--outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn--outline:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  min-height: 38px;
  border-radius: var(--radius-xs);
}

.btn--danger {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}
.btn--danger:hover { background: #fecaca; }

.btn--full { width: 100%; }

/* ====== ATELIER DETAIL / TYPE DETAIL ====== */
.atelier-hero {
  position: relative;
  height: clamp(280px, 50vw, 450px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink));
}

.atelier-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}

.atelier-hero:hover img {
  transform: scale(1.05);
}

.atelier-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink));
}

.atelier-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.atelier-hero__back {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.22s var(--ease);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.atelier-hero__back:hover { transform: scale(1.1); }

.atelier-detail {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.atelier-detail__header {
  animation: fadeUp 0.6s var(--ease) both;
}

.atelier-detail h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.atelier-detail__tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--pink-pale);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
}

.tag--price {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.atelier-detail__desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s var(--ease) 0.1s both;
  white-space: pre-line;
}

/* ====== CRENEAUX ====== */
.creneaux-section {
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

.creneaux-title {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.creneau-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  transition: all 0.22s var(--ease);
}

.creneau-card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(255, 194, 231, 0.3);
  transform: translateX(4px);
}

.creneau-card--complet {
  opacity: 0.4;
  pointer-events: none;
}

.creneau-card__info { flex: 1; }

.creneau-card__date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
}

.creneau-card__time {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.creneau-card__places {
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: var(--gray);
}

.creneau-card__places--low {
  color: var(--pink-hot);
  font-weight: 600;
}

.badge-complet {
  background: var(--pink-pale);
  color: var(--pink-hot);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

/* ====== MODAL ====== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s var(--ease);
}

@media (min-width: 640px) {
  .modal-overlay { align-items: center; padding: 1rem; }
  .modal { border-radius: var(--radius) !important; max-height: 90vh !important; }
}

.modal {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 2rem 1.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s var(--ease);
}

.modal__handle {
  width: 36px;
  height: 4px;
  background: var(--gray-border);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
  .modal__handle { display: none; }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  color: var(--black);
}

.modal__close:hover {
  background: var(--gray-border);
  transform: rotate(90deg);
}

.modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.modal__sub {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.modal__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.modal__pay-notice {
  font-size: 0.82rem;
  color: var(--pink-hot);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

/* ====== FORMS ====== */
.form__group {
  margin-bottom: 1.15rem;
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
}

.form__input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-xs);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  background: var(--white);
  color: var(--black);
}

.form__input:focus {
  outline: none;
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(255, 110, 180, 0.15);
}

.form__input::placeholder { color: #bbb; }

textarea.form__input {
  resize: vertical;
  min-height: 80px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ====== CONFIRMATION ====== */
.confirmation {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  max-width: 550px;
  margin: 0 auto;
  animation: fadeUp 0.7s var(--ease) both;
}

.confirmation__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--pink), var(--pink-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s var(--ease) 0.2s both;
  box-shadow: 0 15px 40px rgba(248, 147, 184, 0.4);
}

.confirmation h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.confirmation__sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.confirmation__box {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
  border: 1.5px solid var(--pink);
}

.confirmation__box p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.confirmation__box strong {
  font-family: 'Montserrat', sans-serif;
}

.confirmation__email-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pink);
}

/* ====== FAQ ====== */
.faq {
  background: linear-gradient(160deg, var(--pink-pale) 0%, var(--pink) 100%);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.faq__inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq details {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.22s var(--ease);
}

.faq details[open] {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq summary {
  padding: 1.1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details[open] summary {
  color: var(--pink-hot);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.82rem;
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--pink);
  transition: color 0.2s;
}

.footer a:hover { color: var(--pink-hot); }

/* ====== 404 ====== */
.not-found {
  text-align: center;
  padding: 6rem 1.5rem;
}

.not-found h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  background: linear-gradient(135deg, var(--pink), var(--pink-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.not-found p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ====== EMPTY STATE ====== */
.empty {
  text-align: center;
  padding: 4rem 1.5rem;
}

.empty__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.empty p {
  color: var(--gray);
  font-size: 1rem;
}

/* ====== ADMIN ====== */
.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-header h1 { font-size: 1.5rem; }

.admin-header__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1.5px solid var(--gray-light);
  transition: transform 0.22s var(--ease);
}

.stat-card:hover { transform: translateY(-3px); }

.stat-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pink-hot);
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-light);
}

.admin-table th,
.admin-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th {
  background: var(--gray-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}

.admin-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--gray-light);
}

.admin-table .actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, var(--pink-pale) 0%, var(--pink) 100%);
}

.admin-login__box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: scaleIn 0.4s var(--ease);
}

.admin-login__box h1 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.admin-sub {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.error-msg {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1rem;
}

.admin-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-light);
  max-width: 600px;
}

.admin-form h3 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}

.image-preview {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  margin-bottom: 0.5rem;
  border: 2px solid var(--gray-light);
}

.status-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.status-badge--active {
  background: #dcfce7;
  color: #16a34a;
}

.status-badge--hidden {
  background: var(--gray-light);
  color: var(--gray);
}

/* ====== ADMIN DASHBOARD ====== */
.admin-section {
  margin-bottom: 2.5rem;
}

.admin-section__title {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--pink-pale);
  color: var(--black);
}

/* Timeline */
.admin-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.admin-timeline__item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.admin-timeline__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  flex-shrink: 0;
}

.admin-timeline__day {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pink-hot);
}

.admin-timeline__month {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.15rem;
}

.admin-timeline__card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: all 0.22s var(--ease);
}

.admin-timeline__card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(255, 194, 231, 0.25);
}

.admin-timeline__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  flex-shrink: 0;
}

.admin-timeline__info {
  flex: 1;
  min-width: 0;
}

.admin-timeline__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-timeline__time {
  font-size: 0.78rem;
  color: var(--gray);
}

.admin-timeline__bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.admin-timeline__bar {
  flex: 1;
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  max-width: 120px;
}

.admin-timeline__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-hot));
  border-radius: 3px;
  transition: width 0.5s var(--ease);
}

.admin-timeline__bar-label {
  font-size: 0.72rem;
  color: var(--gray);
  white-space: nowrap;
}

/* Atelier cards grid */
.admin-ateliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .admin-ateliers-grid { grid-template-columns: repeat(2, 1fr); }
}

.admin-atelier-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

.admin-atelier-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.admin-atelier-card--hidden {
  opacity: 0.55;
}

.admin-atelier-card__img {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink));
}

.admin-atelier-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-atelier-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.admin-atelier-card__badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.admin-atelier-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.admin-atelier-card__body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.admin-atelier-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.admin-atelier-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.admin-atelier-card__next {
  font-size: 0.78rem;
  color: var(--pink-hot);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.admin-atelier-card__actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* ====== TYPE PICKER (admin) ====== */
.type-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .type-picker { grid-template-columns: repeat(4, 1fr); }
}

.type-picker__option input { display: none; }

.type-picker__card {
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-align: center;
}

.type-picker__option input:checked + .type-picker__card {
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(255, 110, 180, 0.2);
}

.type-picker__card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.type-picker__img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.type-picker__label {
  display: block;
  padding: 0.5rem 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ====== PLACES BAR ====== */
.creneau-card__places-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.places-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  max-width: 100px;
}

.places-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-hot));
  border-radius: 3px;
  transition: width 0.5s var(--ease);
}

.places-bar__text {
  font-size: 0.72rem;
  color: var(--gray);
  white-space: nowrap;
}

.creneau-card__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.badge-en-attente {
  background: #fef3c7;
  color: #b45309;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

/* ====== INFO NOTICE ====== */
.info-notice {
  background: #fef3c7;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #92400e;
  margin-bottom: 2rem;
}

.info-notice strong {
  display: block;
  margin-bottom: 0.2rem;
}

/* ====== RESPONSIVE ====== */
@media (min-width: 750px) {
  .section { padding: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
}

@media (max-width: 640px) {
  .admin-table { font-size: 0.82rem; }
  .admin-table th, .admin-table td { padding: 0.7rem 0.6rem; }
  .form__row { grid-template-columns: 1fr; }
}
