/* ================================================
   carousel.css - Hero Carousel Only
   ================================================ */

.hero-carousel {
    position: relative;
    max-width: 100%;
    height: auto;
    background: white;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 130px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Arrows - Positioned below the image */
.carousel-btn {
    position: absolute;
    bottom: -65px;
    background: #9C2A2A;
    color: white;
    border: none;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev { left: 30px; }
.carousel-btn.next { right: 30px; }

.carousel-btn:hover {
    background: #7a2121;
}

/* Dots - Above the arrows */
.carousel-dots {
    position: absolute;
    bottom: -105px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #9C2A2A;
    transform: scale(1.4);
}

