/* ======================================================================
   RDV — STYLES SPÉCIFIQUES À LA PAGE DE RENDEZ-VOUS
   Ce fichier complète style.css. À charger après style.css.
====================================================================== */

/* ======================================================================
   RDV — STRUCTURE COMMUNE
====================================================================== */
.rdv-page {
  align-items: center;
}

.rdv-container {
  max-width: 980px;
  text-align: center;
}

/* ======================================================================
   RDV — INTRO
====================================================================== */
.rdv-hero {
  max-width: 760px;
  margin: 0 auto 32px;
}

.rdv-hero-compact {
  margin-bottom: 24px;
}

.rdv-profile-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 2px solid rgba(211,154,139,0.75);
  border-radius: 50%;
  background: rgba(211,154,139,0.22);
  color: #D39A8B;
  font-family: 'Caveat', cursive;
  font-size: 44px;
  font-weight: 700;
}

.rdv-profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rdv-owner-name,
.rdv-owner {
  margin: 0 0 10px;
  color: #6F9785;
  font-size: 14px;
  font-weight: 700;
}

.rdv-intro-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.55;
}

/* ======================================================================
   RDV — CARTES
   Pour ajouter une carte : copier/coller un bloc <article class="rdv-card">.
====================================================================== */
.rdv-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.rdv-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  background: rgba(255,255,255,0.46);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 26px rgba(63,94,82,0.12);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rdv-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--rdv-accent, #D39A8B);
}

.rdv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(63,94,82,0.18);
}

.rdv-card-content {
  padding: 22px 22px 24px 28px;
}

.rdv-card h2 {
  margin: 0 0 8px;
  color: #3F5E52;
  font-family: 'Caveat', cursive;
  font-size: 30px;
}

.rdv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.rdv-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(175,207,193,0.35);
  color: #3F5E52;
  font-size: 12px;
  font-weight: 700;
}

.rdv-description {
  margin: 0 0 18px;
  color: #3F5E52;
  font-size: 14px;
  line-height: 1.6;
}

.rdv-button {
  margin-top: 0;
  font-size: 13px;
}

.rdv-fallback-link {
  max-width: 720px;
  margin: 10px auto 0;
  color: #6F9785;
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
}

.rdv-fallback-link a {
  color: #D39A8B;
  text-decoration: underline;
}

/* ======================================================================
   RDV — POLITIQUE D'ANNULATION
====================================================================== */
.rdv-policy-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: #6F9785;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.rdv-policy-note h2 {
  margin: 0 0 8px;
  color: #D39A8B;
  font-family: 'Caveat', cursive;
  font-size: 24px;
}

.rdv-policy-note p {
  margin: 5px 0;
}

/* ======================================================================
   RDV — RESPONSIVE
====================================================================== */
@media (max-width: 768px) {
  .rdv-container {
    width: 100%;
    max-width: 430px;
    text-align: center;
  }

  .rdv-hero {
    margin-bottom: 24px;
  }

  .rdv-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 16px;
  }

  .rdv-card-content {
    padding: 20px 18px 22px 24px;
  }
}

@media (max-width: 480px) {
  .rdv-profile-photo {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .rdv-card h2 {
    font-size: 27px;
  }

  .rdv-description {
    font-size: 13px;
  }
}
