/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

/* Carousel overlay styles */
.carousel-content-wrapper {
    position: relative;
}

.carousel-image {
    padding: 0;  /* Remove padding for full-width image */
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);  /* Semi-transparent dark overlay */
}

.carousel-title {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-title h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-description {
    font-size: 1.2em;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-title h1 {
        font-size: 1.8em;
    }
    
    .carousel-description {
        font-size: 1em;
    }
}
