/* Apple-Style Carousel */
.carousel-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
}

.carousel-caption {
  z-index: 3;
  padding: 0 1.5rem;
}

.caption-content {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.headline {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: 'San Francisco', 'Helvetica Neue', sans-serif;
}

.scripture-card {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: 'San Francisco', 'Helvetica Neue', sans-serif;
  backdrop-filter: blur(6px);
}

.verse {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.reference {
  font-size: 1rem;
  font-weight: 500;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'San Francisco', 'Helvetica Neue', sans-serif;
}

.btn.primary {
  background-color: #0071e3;
  color: #fff;
  border: none;
}

.btn.primary:hover {
  background-color: #005bb5;
}

.btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #000;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .headline {
    font-size: 2.5rem;
  }

  .scripture-card {
    padding: 0.75rem 1.5rem;
  }

  .verse {
    font-size: 1.1rem;
  }

  .reference {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .verse {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .headline {
    font-size: 1.75rem;
  }

  .verse {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
