/* ===============================
   HERO SLIDER
================================ */
/* Make all images responsive */

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Slides wrapper */
.slides {
    width: 100%;
    height: 90vh;
    position: relative;
}

/* Individual slide */
.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;   /* Desktop: full cover */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.banner-slide::before {
    display:none;
}

/* Content */
.content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 2;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 650px;
}

/* Button */
.btn {
    padding: 12px 30px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

/* Navigation arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

/* ===============================
   TABLET & MOBILE
================================ */

@media (max-width: 768px) {

    .hero-slider {
        height: 40vh;
    }
    
    .slides {
        height: 100%;
    }

    /* Avoid heavy crop on square images */
    .banner-slide {
        background-size: contain;
        background-color: #000;
		height:100%;
    }
}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .hero-slider {
        height: 30vh;
    }
    
    .slides {
        height: 100%;
    }
    
    /* Avoid heavy crop on square images */
    .banner-slide {
        background-size: contain;
        background-color: #000;
		height:100%;
    }
}
