/* ─── PROFIL PAGE ────────────────────────────── */

/* Hero */
.pr-hero {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 50px 48px;
}
.pr-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.pr-photo-wrap { position: relative; }
.pr-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  display: block;
}
.pr-dispo {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  backdrop-filter: blur(8px);
}
.pr-dispo svg { width: 8px; height: 8px; }
.pr-dispo-ok { background: rgba(0,0,0,0.6); color: #FFFFFF; border: 1px solid rgba(255,255,255,0.2); }
.pr-dispo-ok svg { fill: #FFFFFF; stroke: #FFFFFF; }
.pr-dispo-off { background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }

.pr-category-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.pr-category-badge svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

.pr-hero-info h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: #FFFFFF;
  margin-bottom: 4px;
}
.pr-realname { font-size: 15px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.pr-bio { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; max-width: 560px; }

.pr-stats-row { display: flex; gap: 32px; margin-bottom: 28px; }
.pr-stat { display: flex; flex-direction: column; gap: 2px; }
.pr-stat-val { font-size: 22px; font-weight: 700; color: #FFFFFF; }
.pr-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }

.pr-tarifs {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
}
.pr-tarif-item {
  display: flex; align-items: center; gap: 12px;
}
.pr-tarif-item > svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.3); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.pr-tarif-label { font-size: 11px; color: rgba(255,255,255,0.35); display: block; }
.pr-tarif-prix { font-size: 15px; font-weight: 700; color: #FFFFFF; }

.pr-btn-book {
  display: inline-flex; align-items: center; gap: 9px;
  background: #FFFFFF; color: #000000;
  text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  transition: background 0.2s, transform 0.1s;
}
.pr-btn-book:hover { background: rgba(255,255,255,0.85); transform: translateY(-1px); }
.pr-btn-book svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Contenu */
.pr-content { background: #000000; padding: 50px 48px 90px; }
.pr-content-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: flex-start;
}

.pr-block {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 28px;
  margin-bottom: 24px;
}
.pr-block h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #FFFFFF;
  margin-bottom: 18px;
}
.pr-block h3 svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.4); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.pr-block p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.8; margin-bottom: 10px; }

/* Services list */
.pr-services-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pr-services-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
.pr-services-list li svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Galerie */
.pr-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pr-gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: #111; }
.pr-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-gallery-placeholder { display: flex; align-items: center; justify-content: center; }
.pr-gallery-placeholder svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.15); fill: none; stroke-width: 1.5; }

/* Calendrier */
.pr-cal-legend { display: flex; gap: 16px; margin-bottom: 16px; }
.pr-leg-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); }
.pr-dot { width: 10px; height: 10px; border-radius: 50%; }
.pr-dot-libre { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
.pr-dot-occupe { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }

.pr-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.pr-cal-day-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.25); text-align: center; padding: 4px 0; letter-spacing: 0.5px; }
.pr-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; border-radius: 8px; cursor: pointer;
  color: rgba(255,255,255,0.6);
  border: 1px solid transparent;
  transition: all 0.15s;
}
.pr-cal-day:hover { border-color: rgba(255,255,255,0.2); }
.pr-cal-day.libre { color: #FFFFFF; background: rgba(255,255,255,0.06); }
.pr-cal-day.occupe { color: rgba(255,255,255,0.2); background: transparent; text-decoration: line-through; cursor: default; }
.pr-cal-day.today { border-color: rgba(255,255,255,0.5); font-weight: 700; color: #FFFFFF; }
.pr-cal-day.empty { cursor: default; }

/* Formulaire réservation */
.pr-form { display: flex; flex-direction: column; gap: 16px; }
.pr-field { display: flex; flex-direction: column; gap: 7px; }
.pr-field label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.4px; }
.pr-field input, .pr-field select, .pr-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 14px;
  color: #FFFFFF; font-family: Arial, sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.pr-field input:focus, .pr-field select:focus, .pr-field textarea:focus { border-color: rgba(255,255,255,0.35); }
.pr-field input::placeholder, .pr-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.pr-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.pr-field select option { background: #000000; }
.pr-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req { color: rgba(255,255,255,0.3); }

.pr-btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #FFFFFF; color: #000000; border: none;
  border-radius: 50px; padding: 14px; font-family: Arial, sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; width: 100%;
  transition: background 0.2s;
}
.pr-btn-submit:hover { background: rgba(255,255,255,0.85); }
.pr-btn-submit svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

.pr-back-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: none; padding: 12px 0;
  transition: color 0.2s;
}
.pr-back-link:hover { color: #FFFFFF; }
.pr-back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Responsive */
@media (max-width: 900px) {
  .pr-hero { padding: 36px 20px; }
  .pr-hero-inner { grid-template-columns: 1fr; }
  .pr-photo { width: 200px; border-radius: 14px; }
  .pr-content { padding: 36px 20px 70px; }
  .pr-content-inner { grid-template-columns: 1fr; }
  .pr-gallery { grid-template-columns: repeat(2, 1fr); }
  .pr-row-2 { grid-template-columns: 1fr; }
}
