#lec-hero {
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.95), rgba(255, 215, 0, 0.2)),
              url('/Assets/divine-bg.jpg') center/cover no-repeat;
  text-align: center;
  font-family: 'Merriweather', serif;
  margin-top: 80px;
}

#lec-hero-text h1 {
  font-size: 2.8rem;
  color: #a67c00;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}

#lec-hero-text p {
  font-size: 1.1rem;
  color: #5a4634;
  max-width: 800px;
  margin: 10px auto 25px;
  line-height: 1.6;
}

#lec-srimad-title,
#lec-gita-title {
  font-size: 1.9rem;
  color: #7b5e2a;
  margin: 50px 0 15px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}

.lec-section-desc {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #5a4634;
  line-height: 1.6;
  font-style: italic;
}

.lec-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.lec-card {
  width: 100%;
  max-width: 700px; /* larger video cards */
  aspect-ratio: 16 / 9; /* keeps proper video shape */
  border: 4px solid #d4af37; /* golden border */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 28px rgba(0,0,0,0.15), inset 0 0 20px rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lec-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.link-lec {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: #5a4634;
}

.link-lec a {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
}

.lec-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0px 15px 35px rgba(0,0,0,0.2), inset 0 0 25px rgba(212,175,55,0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lec-card {
    max-width: 95%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lec-cards-container {
    flex-direction: column;
    align-items: center;
  }
}
