/* ============================================
   Bethel Presbyterian Church /worship/stream Stylesheet
   ============================================ */

/* ---------------------
   Stream Intro Section
   --------------------- */
.stream-intro {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  font-family: 'Goudos', serif;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: sectionFadeIn 1s ease-out forwards;
}
@keyframes sectionFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------
   Headings
   --------------------- */
.stream-header {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.stream-subheader {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ---------------------
   Description & Schedule
   --------------------- */
.stream-description,
.stream-schedule,
.stream-instructions {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.stream-schedule {
  font-weight: 600;
  color: var(--primary-green-dark);
}

/* ---------------------
   Stream Logo Link
   --------------------- */
.stream-logo {
  margin: 2rem auto;
}
.stream-logo a {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.stream-icon {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  opacity: 0;
  transform: translateY(-10px);
  animation: logoFadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.stream-logo a:hover .stream-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(255,0,0,0.5));
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------
   Resources Section
   --------------------- */
.stream-resources {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.resource-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.resource-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}
.resource-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.resource-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}
.resource-link:hover {
  text-decoration: underline;
}
