body {
    font-family: "Fredoka One", Arial, sans-serif;
}

main {
    margin-top: 1rem;

}

.about-gallery {
    width: 100%;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-btn-left {
    left: 15px;
}

.carousel-btn-right {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    border: none;
    background: rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 5px;
    border-radius: 3px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.carousel-indicator.current-indicator {
    background: rgba(255, 255, 255, 1);
}