/* ============================================
   ROYAL AYERS — Shared Page Styles
   ============================================ */

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
  padding: var(--space-16) var(--space-6);
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-hero-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-gold-light);
}

/* === ABOUT PAGE === */
.about-page-grid {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 768px) {
  .about-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-page-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.image-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-charcoal);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder.large {
  aspect-ratio: 3/4;
  min-height: 400px;
}

/* === GALLERY PAGE === */
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
  }

  .gallery-page-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-page-item .image-placeholder {
  height: 100%;
  min-height: 200px;
  aspect-ratio: auto;
}

.gallery-page-item-large .image-placeholder {
  min-height: 100%;
}

/* === BOOKING PAGE === */
.booking-layout {
  display: grid;
  gap: var(--space-12);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .booking-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.booking-form {
  background: var(--color-charcoal);
  padding: var(--space-10);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.booking-contact-block {
  padding: var(--space-8);
}

.booking-phone-display {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.booking-phone-display:hover {
  color: var(--color-gold-light);
}

/* === FAQ PAGE === */
.faq-list {
  margin-bottom: var(--space-12);
}

.faq-item-full {
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question-full {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.faq-answer-full {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
}
