/* Shared styles for inner pages */

/* Page Header */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.page-logo img {
  height: 38px;
  width: auto;
  transition: transform 0.3s ease;
  filter: invert(1);
}


.page-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.page-menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--black);
}

/* Nav Overlay */
.page-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: auto;
  background: var(--cream);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 2rem 2rem;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.page-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.page-nav-overlay a {
  font-family: var(--title-font);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  transition: color 0.2s;
}

.page-nav-overlay a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.close-menu::before,
.close-menu::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--black);
}

.close-menu::before {
  transform: rotate(45deg);
}

.close-menu::after {
  transform: rotate(-45deg);
}

/* Page Content */
.page-content {
  min-height: 70vh;
  padding: 8rem 2rem 4rem;
}

.page-header-text {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header-text h1 {
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.page-header-text p {
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto;
}

/* Menu Links */
.menu-links {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.menu-links a {
  display: block;
  font-family: var(--title-font);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
}

.menu-links a:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.menu-links a:hover {
  background: var(--black);
  color: var(--white);
}

.menu-links span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--title-font);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.contact-info p {
  font-family: var(--sans);
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.contact-info a:hover {
  opacity: 1;
}

.map-container {
  aspect-ratio: 1;
  background: var(--light-grey);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5);
  opacity: 0.9;
}

/* Spaces Grid */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.space-card {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 2rem;
}

.space-card h4 {
  font-family: var(--title-font);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.space-card p {
  font-family: var(--sans);
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.space-meta {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gold);
}

/* Enquiry Section */
.enquiry-section {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 0 auto;
}

.enquiry-section h3 {
  font-family: var(--title-font);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.enquiry-section p {
  font-family: var(--sans);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.enquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.enquiry-contacts a {
  font-family: var(--sans);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.enquiry-contacts a:hover {
  opacity: 1;
}

/* Booking Widget */
.booking-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  overflow: visible;
}

#rd-widget-frame {
  width: 100%;
  overflow: visible;
}

.booking-section p {
  font-family: var(--sans);
  opacity: 0.6;
  margin-bottom: 2rem;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 0;
}

.booking-contacts a {
  font-family: var(--sans);
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.booking-contacts a:hover {
  opacity: 1;
}

/* Info Grid */
.page-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 0;
}

.page-info-grid h4 {
  font-family: var(--title-font);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.page-info-grid p {
  font-family: var(--sans);
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
}

.page-info-grid a {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-container {
    aspect-ratio: 16/9;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .page-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.mobile-br {
  display: none;
}

@media (max-width: 600px) {
  .page-header {
    padding: 1.5rem;
  }

  .page-logo img {
    height: 28px;
  }

  .page-content {
    padding: 7rem 1.5rem 3rem;
  }

  .page-header-text p {
    line-height: 1.4;
  }

  .mobile-br {
    display: block;
  }
}
