/* Carousel Gallery Styles */
.carousel-section {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 2rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Asap', sans-serif;
    margin-bottom: 3rem;
    color: var(--black);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.carousel-slide:first-child {
    background: var(--black);
}

.carousel-slide:first-child img {
    object-fit: contain;
    padding: 0 10%;
}

.carousel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: transparent;
    color: var(--white);
    border-radius: 0 0 12px 12px;
    display: block;
}

.carousel-slide-title {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Asap', sans-serif;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-slide-description {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Asap', sans-serif;
    margin: 0;
    opacity: 0.9;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--navy);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--black);
}

/* Autoplay Progress */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--grey);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 0 0 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .carousel-title {
        font-size: 2rem;
        font-weight: 600;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-slide-title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .carousel-slide-description {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .carousel-slide-content {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .carousel-section {
        padding: 2rem 1rem;
    }

    .carousel-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        font-weight: 600;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        font-weight: 600;
    }

    .carousel-slide-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .carousel-slide-description {
        font-size: 0.8125rem;
        font-weight: 600;
    }

    .carousel-slide-content {
        padding: 1rem;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }
}
