/* header image slider */
#header-image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0;
    overflow: hidden;
}

.slide-header-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
}

.slide-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.slide-title {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 10px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    max-width: 100%;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    opacity: 1;
    transition: transform 0.3s ease;
    border-radius: 50%;
    visibility: visible;
    pointer-events: auto;
}

.slide-arrow:hover {
    transform: scale(1.1) translateY(-50%);
}

.slide-arrow.left {
    left: 20px;
}

.slide-arrow.right {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 100;
    pointer-events: auto;
}

.dot {
    display: inline-block;
    height: 14px;
    width: 14px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.dot:hover {
    transform: scale(1.2);
    background-color: #fff;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(0,0,0, 0.8);
}





@media (max-width: 768px) {
    
    #header-image-slider {
        height: 250px;
    }

    .slide-title {
        font-size: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
        text-align: center;
    }

    .slide-arrow {
        font-size: 1.5rem;
        padding: 8px;
    }

}
























