/* images.css - reusable image styles */

.image-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-banner {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
}

.hero-text p {
    font-size: 20px;
}
