.carousel {
    background-color: #1a1a1a;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 193, 7, 0.8);
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #ffc107;
}

.carousel-indicators button {
    background-color: rgba(255, 193, 7, 0.6);
    border: 1px solid #ffc107;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators button.active {
    background-color: #ffc107;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffc107;
}

.carousel-caption h5 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.carousel-caption p {
    font-size: 0.95rem;
    color: #fff;
}