/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */

/* Splash Section */
.splash {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.splash-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.splash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.splash-content {
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Album / Single Announcements */
.album-announcement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}

.single-announcement {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  font-weight:700;
  padding-bottom: 2rem;
  font-style: italic;
}

/* Video Container (home page version) */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--color-primary-darker);
  box-shadow: 0 0px 60px rgba(0, 0, 255, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fundraiser Button */
.btn-fundraiser {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 8px;
}

.btn-fundraiser:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 0px 40px rgba(0, 0, 255, 0.6);
}

/* Album Description */
p.album-description {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-size: 1.2em;
}

/* Hero Content (home version with padding-top) */
.hero-content {
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

/* ==========================================================================
   RESPONSIVE - Smaller Screen
   ========================================================================== */
@media (max-width: 1125px) {
  .splash {
    padding: 10rem 2rem 4rem;
  }
}

/* Responsive - Tablet */
@media (max-width: 950px) {
  .splash {
    padding: 8rem 2rem 4rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .splash {
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }

  .album-announcement {
    margin-bottom: 0.5rem;
  }

  .single-announcement {
    margin-bottom: .5rem;
    padding-bottom: 1rem;
  }
}
