/* PAGE BASE */
.service-page {
  background: #000;
  color: #efefef;
  width: 100%;
}

/* TOP SECTION */
.service-top {
  padding: 110px 20px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.meeting-day {
  color: #f37f2d;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.service-heading {
  color: #f37f2d;
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 900;
  font-family: 'Times New Roman', Times, serif;
}

.service-address {
  font-size: 30px;
  line-height: 1.6;
  color: #efefef;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* WATCH LIVE BUTTON */
.watch-live {
  margin-top: 10px;
  background: #f37f2d;
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.invite {
  margin-top: 6px;
  color: #efefef;
}

/* SERVICE CONTAINER */
.service-container {
  padding: 60px 20px; /* vertical spacing between services */
}

/* SERVICE ROWS */
.service-row {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; /* desktop gap between image and text */
  align-items: center;
}

.service-container.reverse .service-row {
  direction: rtl; /* flips image/text order */
}

.service-row > * {
  direction: ltr; /* keep text readable after reverse */
}

/* TEXT */
.service-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e5e5e5;
}

.service-text h2 {
  font-size: 26px;
}

.time {
  color: #f37f2d;
  font-weight: 600;
}

.highlight {
  font-size: 17px;
  font-weight: 500;
}

/* IMAGE */
.service-image {
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f37f2d;
}

/* VERSE */
.service-verse {
  padding: 100px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.service-verse p {
  font-size: 18px;
  line-height: 1.8;
  color: #efefef;
}

.service-verse span {
  display: block;
  margin-top: 10px;
  color: #f37f2d;
  font-weight: 600;
}

.events-btn {
  margin-top: 30px;
  background: transparent;
  border: 2px solid #f37f2d;
  color: #f37f2d;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* MOBILE RULES */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr; /* stack vertically */
    text-align: center;
    gap: 20px;
  }

  .service-image {
    order: 1;
    justify-content: center;
  }

  .service-text {
    order: 2;
  }

  .service-image img {
    width: 220px;
    height: 220px;
  }

  .service-text h2 {
    font-size: 22px;
  }

  .service-address {
    font-size: 22px;
  }

  .service-verse p {
    font-size: 16px;
  }
}
