/* ================================
   All Sermons Archive Styling
================================ */
.all-sermons-section {
  position: relative;
  background: url('../images/heros.jpg') no-repeat center center/cover;
  padding: 100px 30px;
  color: #f5f5f5;
  z-index: 1;
}

.all-sermons-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.85));
  z-index: -1;
}

/* Section Title */
.all-sermons-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #ff3b3f;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,59,63,0.7), 0 0 20px rgba(255,59,63,0.4);
  position: relative;
}

.all-sermons-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #ff3b3f;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Subtitle/Lead */
.all-sermons-section .lead {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* ================================
   Sermon Cards
================================ */

/* Grid Layout */
.all-sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 35px;
}

/* Card */
.all-sermon-card {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,59,63,0.2);
}

.all-sermon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(255,59,63,0.3);
  border-color: rgba(255,59,63,0.5);
}

/* Title */
.all-sermon-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff3b3f;
  text-shadow: 0 0 5px rgba(255,59,63,0.6);
}

/* Meta */
.all-sermon-card .sermon-meta {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 12px;
  font-style: italic;
}

/* Key Verse */
.all-sermon-card .sermon-verse {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  border-left: 4px solid #ff3b3f;
  padding-left: 10px;
  font-size: 0.95rem;
}

/* Summary */
.all-sermon-card .sermon-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* Video Embed */
.all-sermon-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 15px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ================================
   Filter/Search Bar
================================ */
.filter-controls {
  text-align: center;
  margin-bottom: 40px;
}

.filter-controls .search-bar {
  width: 60%;
  max-width: 500px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ff3b3f;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.filter-controls .search-bar::placeholder {
  color: #aaa;
}

.filter-controls button {
  background: #111;
  color: #fff;
  border: 1px solid #ff3b3f;
  padding: 10px 20px;
  margin: 5px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-controls button:hover,
.filter-controls button.active {
  background: #ff3b3f;
  color: #fff;
  box-shadow: 0 0 12px rgba(255,59,63,0.6);
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
  .all-sermons-section {
    padding: 60px 15px;
  }
  .all-sermons-section h2 {
    font-size: 2rem;
  }
  .all-sermon-card {
    padding: 20px;
  }
  .filter-controls .search-bar {
    width: 100%;
  }
}
