/* ── Services page overrides ── */

.services-page {
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Nav backdrop */
/*.services-page nav {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(0);
}

.services-page .menu {
  background: rgba(0, 0, 0, 0.6);
  padding: 0 0.5rem;
}*/

/* Full-page background image */
.bg-image {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../img/services_background.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Wrapper — centers the block vertically */
.services-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;

  /* Fade in on load */
  opacity: 0;
  animation: fadeIn 2s ease 0s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* The black bar */
.services-block {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: rgba(0, 0, 0, 0.82);
}

/* Text side */
.services-text {
  gap: 0.75rem;
  padding: 2.5rem 3rem;
}

.services-text h1 {
  font-size: 28px;
  margin-bottom: 0;
}

.services-text p {
  font-size: 13px;
  line-height: 1.7;
}

.service {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 0.75rem;
}

.service h2 {
    font-style: italic;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
  text-underline-offset: 4px;
}

.rates {
  color: #C9A84C;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.locations {
  margin-bottom: 1.5rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.location-city {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.location-dates {
  color: #C9A84C;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.section-label {
  font-size: 18px;
}

/* Book Now link */
.book-now {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 0.5px solid #C9A84C;
  color: #C9A84C;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.book-now:hover {
  background: #C9A84C;
  color: #000;
}

/* Photo side */
.services-photo {
  flex: none;
  width: 380px;
}

.services-photo img,
.services-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-photo .photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #161616;
  border: none;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 320px;
  border-radius: 0;
}

.services-photo .photo-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .services-block {
    flex-direction: column;
  }

  .services-photo {
    width: 100%;
    min-height: 240px;
  }

  .services-text {
    padding: 2.5rem 1.5rem;
  }
}
a {
  color: #C9A84C;
}