/* ========================================
   SECTIONS CSS - Arise Band_KE
   Page sections and layout styles
   ======================================== */

/* === Hero Slideshow Section === */
.hero-slideshow-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slideshow-section .carousel {
  height: 100vh;
  width: 100%;
}

.hero-slideshow-section .carousel-inner {
  height: 100vh;
  width: 100%;
}

.hero-slideshow-section .carousel-item {
  height: 100vh !important;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  z-index: 3;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
               0 0 30px rgba(255, 215, 0, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeInUp 1.5s ease-out;
}

.hero-content .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 1.8s ease-out;
}

.hero-content .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Individual Hero Slide Backgrounds */
.hero-slide-1 {
  background-image: url('../assets/images/slide1.jpg') !important;
}

.hero-slide-2 {
  background-image: url('../assets/images/slide2.jpg') !important;
}

.hero-slide-3 {
  background-image: url('../assets/images/slide3.jpg') !important;
}

.hero-slide-4 {
  background-image: url('../assets/images/concert.jpg') !important;
}

.hero-slide-5 {
  background-image: url('../assets/images/outreach.jpg') !important;
}

.hero-slide-6 {
  background-image: url('../assets/images/rehearsal.jpg') !important;
}

.hero-slide-7 {
  background-image: url('../assets/images/Ariseprac.jpg') !important;
}

.hero-slideshow-section .carousel-indicators {
  bottom: 3rem;
  z-index: 15;
}

.hero-slideshow-section .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-slideshow-section .carousel-indicators button.active {
  background-color: #ffd700;
  border-color: #ffd700;
}

.hero-slideshow-section .carousel-control-prev,
.hero-slideshow-section .carousel-control-next {
  width: 10%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.hero-slideshow-section .carousel-control-prev:hover,
.hero-slideshow-section .carousel-control-next:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  
  .hero-content .btn {
    font-size: 1rem;
    padding: 0.75rem 2rem !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* === Vision & Mission Section === */
#vision-mission {
  background-image: url('../assets/images/Ariseprac.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* === Vision/Mission Heading === */
#vmHeading.color-transition,
#vmHeading {
  color: #ffd580;
  font-weight: 700;
  transition: color 1s ease, background 1s ease, -webkit-background-clip 1s ease;
  -webkit-transition: color 1s ease, background 1s ease, -webkit-background-clip 1s ease;
}

#vmHeading.blend {
  color: transparent;
  background: linear-gradient(90deg,
    rgba(255,213,128,1) 0%,
    rgba(0,255,247,0.95) 50%,
    rgba(124,58,237,0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* === CTA Section (Donation/Support) === */
.cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* blurred, darkened Arise Band logo as background (fallback to Ariseprac.jpg) */
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/AriseLogo.png'), url('../assets/images/Ariseprac.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.28) saturate(0.9);
    transform: scale(1.06);
    z-index: 0;
    pointer-events: none;
    transition: filter .35s ease, transform .35s ease;
}

/* keep CTA content above the decorative background */
.cta > * {
    position: relative;
    z-index: 1;
}
.cta {
  color: #f7efe6;
}

.cta .vintage-container {
  font-family: Georgia, 'Times New Roman', serif;
}

.cta h2 {
  color: #fff8ee;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 10px rgba(255,238,210,0.06);
  letter-spacing: 0.6px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.cta p.lead {
  color: rgba(255, 250, 240, 0.95);
  font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  margin-bottom: 0.75rem;
}

.cta .accent-bar {
  height: 6px;
  width: 76px;
  background: linear-gradient(90deg, rgba(255,236,193,0.98), rgba(180,140,95,0.95));
  margin: 12px auto 22px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.cta .muted-note {
  color: rgba(247,239,230,0.9);
  font-size: .88rem;
}

/* === Contact Section === */
:root {
  --accent1: #00fff7;
  --accent2: #007bff;
  --accent3: #7c3aed;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(0,255,247,0.12);
}

#contact {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(124,58,237,0.08), transparent 10%),
              radial-gradient(900px 400px at 90% 80%, rgba(0,127,255,0.06), transparent 12%),
              linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
              url('../assets/images/logo.jpg');
  background-size: cover;
  background-position: center;
  color: #eaf9ff;
}

#contact::before,
#contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}

#contact::before {
  width: 420px;
  height: 420px;
  left: -80px;
  top: -60px;
  background: linear-gradient(135deg, var(--accent3), var(--accent1));
  transform: rotate(15deg);
}

#contact::after {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -80px;
  background: linear-gradient(135deg, var(--accent2), rgba(0,255,247,0.5));
}

.contact-heading {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #eaffff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6), 0 0 16px rgba(0,255,247,0.06);
}

.contact-sub {
  color: rgba(234,249,255,0.9);
  opacity: 0.95;
}

.contact-note {
  color: rgba(234,249,255,0.85);
}

/* === Notification Alert === */
.notification-alert {
  animation: slideInRight 0.8s ease;
}

/* === Text Effects === */
h2.text-warning {
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.8);
}
