/* Hero Section Styles */
.hero-section.carousel {
    height: 100vh; /* Full viewport height */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-section .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dark overlay for better text visibility */
    color: #fff;
    /* Adjustments to ensure content is well-placed */
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.hero-section .carousel-caption h1 {
    font-size: 3rem; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section .carousel-caption p {
    font-size: 1.25rem; /* Adjust as needed */
    margin-bottom: 1.5rem;
}

.hero-section .carousel-indicators {
    bottom: 20px; /* Adjust position if needed */
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 5%; /* Adjust size/position if needed */
}

/* Ensure hero content from previous static design doesn't interfere */
.hero-background, .hero-overlay {
    display: none; 
} 