/* about.css — match index.php typography & sizes */

/* Match homepage base */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #faf9f7;   /* same as index.css */
  color: #3e2e23;        /* same as index.css */
}

/* Keep buttons identical to index.css */
.btn-primary {
  background: #fff;
  color: #5a3e2b;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid #d8a75f;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { background: #d8a75f; color: #fff; }

/* Page container (same max width feel) */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* ------------ HERO (align with index hero look) ------------ */
.about-hero {
  position: relative;
  min-height: 44vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
  background: #eae2d8; /* fallback if no image yet */
}
.about-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.02);
  filter: contrast(1.03) saturate(1.02);
}
.about-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255,255,255,0.9);
  padding: 20px;                 /* same padding as index hero text */
  border-radius: 10px;           /* same radius */
  max-width: 720px;              /* same width as index hero text */
  box-shadow: 0 6px 20px rgba(0,0,0,.1); /* same shadow style */
  margin: 0 12px;                /* mobile breathing room */
}
.about-hero-text h1 {
  font-size: 2.3rem;             /* match index hero title size */
  margin: 0 0 10px;
  color: #5a3e2b;
}
.about-hero-text p {
  font-size: 1.1rem;             /* match index hero paragraph size */
  margin: 0 0 15px;
  color: #3e2e23;
}

/* ------------ Section structure (match spacing rhythm) ------------ */
.section { margin: 34px 0 }
.section h2 {
  margin: 0 0 12px;              /* match booking h2 rhythm on index */
  color: #5a3e2b;
  font-size: 1.6rem;             /* match booking h2 size on index */
  font-weight: 700;
}

/* Cards — visual parity with index “white card” look */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: 10px;           /* match index booking radius */
  border: 1px solid #e6d5c3;
  box-shadow: 0 4px 12px rgba(0,0,0,.08); /* match index card shadow */
  padding: 16px;
}
.card h3 {
  margin: 0 0 8px;
  color: #4b3a2d;
  font-size: 1.1rem;
  font-weight: 700;
}
.ticks { list-style: none; margin: 0; padding: 0 }
.ticks li {
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d8a75f;
  font-weight: 800;
}

/* Location info grid (same card feel) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.info {
  background: #fff;
  border: 1px solid #e6d5c3;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.info h4 { margin: 0 0 6px; color: #4b3a2d; font-size: 1.05rem }

/* Rules */
.rules ul { margin: 8px 0 16px; padding-left: 18px }
.rules li { margin: 6px 0 }

/* ------------ Responsive tweaks to mirror index ------------ */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards, .info-grid { grid-template-columns: 1fr; }
  .about-hero { min-height: 40vh; padding: 24px 16px; }
  .about-hero-text { padding: 16px; }
  .about-hero-text h1 { font-size: 1.9rem; }
  .about-hero-text p  { font-size: 1rem; }
  /* Slightly larger touch targets for links in content on mobile */
  .section a.btn-primary { padding: 12px 18px; }
}
