/* ========================================
   ARCHE — Worship Page Styles
   ======================================== */

/* ---- HERO ---- */

.worship-hero {
  position: relative;
  overflow: hidden;
}

.worship-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 80% 50%, rgba(201,169,110,0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(122,158,126,0.04), transparent 60%);
}

/* ---- SERVICE OPTIONS ---- */

.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-option {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out);
}

.service-option:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-option-featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(180deg, rgba(201,169,110,0.03) 0%, var(--white) 60%);
  position: relative;
}

.service-option-featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0;
}

.service-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-option-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.service-option-time {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.service-option h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-option p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.service-option-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

/* ---- WHAT TO EXPECT ---- */

.expect-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.expect-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expect-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
}

.expect-item:first-child { padding-top: 0; }
.expect-item:last-child { border-bottom: none; padding-bottom: 0; }

.expect-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}

.expect-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- SERMONS ---- */

.sermons-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.yt-channel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}

.yt-channel-art {
  height: 120px;
  background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(201,169,110,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}

.yt-logo-big { color: rgba(255,255,255,0.25); }

.yt-channel-info {
  padding: 24px;
}

.yt-channel-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.yt-channel-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.yt-channel-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sermon-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sermon-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s;
  cursor: pointer;
}

.sermon-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.2);
}

.sermon-card-thumb {
  width: 80px;
  height: 54px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(122,158,126,0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-circle {
  width: 32px;
  height: 32px;
  background: rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.sermon-card-info {
  flex: 1;
}

.sermon-series {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.sermon-card-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.sermon-date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */

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

  .expect-split,
  .sermons-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-option-time { font-size: 40px; }
}
