/* ================= HERO ================= */
.watch-hero {
  background: linear-gradient(135deg, #0a2a66 0%, #1a3b99 100%);
  color: #ffffff;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.watch-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.watch-hero p {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #FFD700; /* gold */
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background: #FFD700;
  color: #0a2a66;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-gold:hover {
  background: #fff;
  color: #D32F2F;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.btn-blue {
  background: #0a2a66;
  color: #FFD700;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-blue:hover {
  background: #1a3b99;
  color: #FFD700;
  transform: translateY(-2px);
}

/* ================= FEATURE CARDS ================= */
.feature-cards .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-cards .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #FFD700;
}

/* ================= LATEST SERMONS CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.cards .card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cards .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cards .card-content {
  padding: 16px;
  flex: 1; /* make content stretch so button stays at bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cards .card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #0a2a66;
}

.cards .card-content p {
  font-size: 1rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.cards .card-content .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #FFD700;
  background: #0a2a66;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cards .card-content .btn:hover {
  background: #1a3b99;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .watch-hero h1 {
    font-size: 2.2rem;
  }

  .watch-hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #0a2a66;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #FFD700;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
}

.btn-live{
  background:#D32F2F;
  color:white;
  border:none;
}

.btn-live:hover{
  background:#b71c1c;
}

.service-times{
  margin-top:20px;
  color:#FFD700;
}

.service-times p{
  margin:4px 0;
}