/* ============================================
   BOOKING PAGE — booking.css
   ============================================ */
.booking-page { padding: 5rem 2rem; background: var(--cream); }
.booking-inner {
  max-width: 860px;
  margin: 0 auto;
}
.booking-card {
  background: var(--white);
  padding: 3.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.booking-card h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.booking-card > p { color: var(--text-muted); margin-bottom: 2.5rem; }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.booking-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(0,0,0,0.13);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.booking-summary {
  background: var(--dark);
  color: var(--white);
  padding: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.booking-summary h4 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.summary-row:last-child { border: none; font-weight: 500; color: var(--gold); }

@media (max-width: 600px) {
  .booking-card  { padding: 2rem 1.5rem; }
  .booking-grid  { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY PAGE — gallery.css
   ============================================ */
.gallery-page { padding: 4rem 2rem; }
.gallery-inner { max-width: var(--max-w); margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-overlay span {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay span { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   AMENITIES PAGE — amenities.css
   ============================================ */
.amenities-page { padding: 5rem 2rem; }
.amenities-inner { max-width: var(--max-w); margin: 0 auto; }
.amenities-category { margin-bottom: 5rem; }
.amenities-category h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.amenities-category > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.amenities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.amenity-card-icon {
  width: 50px; height: 50px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.amenity-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.amenity-card p  { color: var(--text-muted); font-size: 0.88rem; }

@media (max-width: 768px) {
  .amenities-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .amenities-cards { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE — contact.css
   ============================================ */
.contact-page { padding: 5rem 2rem; }
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-detail h4 { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.contact-detail p  { font-size: 0.9rem; }

.contact-form-card {
  background: var(--white);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
