/* ---- Classes Page ---- */

.reformer-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 20px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero {
  text-align: center;
}

.booking-link {
  font-family: "Playfair Display", serif;
  text-decoration: underline;
}

.reformer-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

/* ردیف معکوس: عکس راست، متن چپ */
.reformer-card.reverse {
  flex-direction: row-reverse;
}

.reformer-card img {
  width: 45%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.reformer-text {
  flex: 1;
}

.reformer-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.reformer-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
/* FOOTER*/

@media (max-width: 768px) {
  .reformer-page {
    padding: 40px 20px;
  }

  .reformer-card,
  .reformer-card.reverse {
    flex-direction: column;
    padding: 1.2rem;
  }

  .reformer-card img {
    width: 100%;
  }

  .reformer-text {
    text-align: center;
  }
}
