/* ==========================================================================
   #HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  padding-top: 80px; /* Space for the header */
  display: flex;
  align-items: center;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  margin: 0;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-overlay {
  display: none; /* Remove the dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.hero-image-container {
  flex: 0 0 45%;
  padding: 0;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.5s ease;
  transform: scale(1.1);
}

.hero-text-content {
  flex: 0 0 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000000; /* Black */
  line-height: 1.2;
  text-shadow: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 400;
  color: #555555; /* Light black/gray */
  margin: 0.5rem 0 1.5rem;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
  color: #333333; /* Dark gray */
  max-width: 600px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin: 2.5rem 0 1rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  align-items: center;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.hero-cta {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

/* Ensure buttons stay on the same line on mobile */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

/* For very small screens, make buttons stack but still full width */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.hero-cta .btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform, box-shadow;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Primary Button (Listen/Watch Now) */
.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary:hover::before {
  opacity: 1;
}

.hero-cta .btn-primary:active {
  transform: translateY(1px) scale(0.98);
}

.hero-cta .btn-primary:hover i {
  transform: translateX(3px);
}

/* Outline Button (Join the Movement) */
.hero-cta .btn-outline {
  background: transparent;
  border: 2px solid #000000;
  color: #000000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta .btn-outline:hover {
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-cta .btn-outline:active {
  transform: translateY(1px) scale(0.98);
}

.hero-cta .btn-outline:hover i {
  transform: translateX(3px);
}

/* Ripple Effect for Both Buttons */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero-cta .btn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  opacity: 1;
  pointer-events: none;
}

.hero-cta .btn:active::after {
  animation: none;
}
}

.hero-cta .btn i {
  transition: transform 0.3s ease;
}

.hero-cta .btn:hover i {
  transform: translateX(5px);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

/* Smooth scrolling and scroll padding for fixed header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

.scroll-down:hover i {
  transform: translateY(5px);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* ==========================================================================
   #MISSION SECTION
   ========================================================================== */
.mission-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), 
              url('../images/professional-website-hero-background-for-homepage_251S.webp') center/cover no-repeat fixed;
  color: var(--color-white);
  text-align: center;
}

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

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-statement {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

.mission-statement::before,
.mission-statement::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  line-height: 1;
}

.mission-statement::before {
  top: -1.5rem;
  left: -1rem;
}

.mission-statement::after {
  bottom: -3.5rem;
  right: -1rem;
}

/* ==========================================================================
   #FEATURED VIDEO
   ========================================================================== */
.featured-video {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

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

.video-caption {
  font-size: 1.1rem;
  color: var(--color-gray);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ==========================================================================
   #SCRIPTURE SECTION
   ========================================================================== */
.scripture-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.scripture-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.scripture-content .fa-quote-left {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.scripture {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0 auto 1rem;
  max-width: 700px;
}

.scripture footer {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--color-gray);
  font-style: italic;
  margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-image-container {
    margin: 0 auto 3rem;
    flex: 0 0 100%;
    max-width: 80%;
    transform: scale(1.05);
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text-content {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-tagline {
    font-size: 1.5rem;
  }
  
  .mission-statement {
    font-size: 1.6rem;
  }
  
  .scripture {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .mission-statement {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  
  .scripture {
    font-size: 1.4rem;
  }
  
  .scripture footer {
    font-size: 1rem;
  }
}
