.hero-section{
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    transform: translateX(100%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
}

.hero-slide.active{
    transform: translateX(0);
    z-index: 2;
}

.hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-slide .hero-section-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    height: 100%;
    padding: 0 5rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: var(--secondary-color, #ffffff);
}

.hero-slide .hero-section-container .hero-section-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    text-align: center;
}
.hero-slide .hero-section-container .hero-section-content h1{
    font-size: var(--heading-size-large, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-slide .hero-section-container .hero-section-content p{
    font-size: var(--text-size-medium, 1.1rem);
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-slide .hero-section-container .hero-section-content .call-to-action{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slide .hero-section-container .hero-section-content .call-to-action a{
    text-decoration: none;
    color: var(--secondary-color, #ffffff);
}

.hero-slide .hero-section-container .hero-section-content .call-to-action a:hover{
    color: var(--accent-color, #ffd700);
}

.hero-slide .hero-section-container .hero-section-content .call-to-action a.shop-now{
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--secondary-color, #ffffff);
    color: var(--secondary-color, #ffffff);
}

.hero-slide .hero-section-container .hero-section-content .call-to-action a.shop-now:hover{
    background-color: var(--secondary-color, #ffffff);
    color: var(--primary-color, #000000);
}

/* Slide indicators */
.hero-slide-indicators{
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slide-indicator{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color, #ffffff);
    background: transparent;
    cursor: default;
    pointer-events: none;
    transition: all 0.3s ease;
}

.slide-indicator.active{
    background: var(--secondary-color, #ffffff);
}

/* Remove hover effect since not clickable */
.slide-indicator:hover{
    background: var(--secondary-color, #ffffff);
    border-color: var(--secondary-color, #ffffff);
}

/* =========================== media queries =========================== */

@media (max-width: 850px) {
    .hero-slide .hero-section-container{
        width: 100%;
        padding: 0 2rem;
    }
    .hero-slide .hero-section-container .hero-section-content{
        width: 100%;
    }
    .hero-slide .hero-section-container .hero-section-content p,
    .hero-slide .hero-section-container .hero-section-content h1{
        text-align: center;
    }
    .hero-slide .hero-section-container .hero-section-content .call-to-action{
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .hero-slide .hero-section-container .hero-section-content h1{
        font-size: var(--heading-size-medium, 2rem);
    }
    .hero-slide .hero-section-container .hero-section-content p{
        font-size: var(--secondary-font-size, 2rem);
        margin-bottom: 0;
    }
    .hero-slide .hero-section-container .hero-section-content .call-to-action{
        margin-top: 1rem;
        flex-direction: column;
    }
}