/* custom.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
}

.btn-primary {
    border-radius: 2rem;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
}

/* Hero Carousel Styles */
#heroCarousel .carousel-item {
  height: 70vh;
  min-height: 400px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

#heroCarousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 0.5rem;
}

#heroCarousel .carousel-caption h5 {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#heroCarousel .carousel-caption p {
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}