/* public/css/hero.css */

/* Root container üçün minimal hündürlük */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Swiper konteyneri ümumi ayarlar */
.hero-swiper {
    width: 100%;
    height: 100%;
}

/* Hər slide üçün box-sizing və mərkəzləşdirmə */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide məzmunu (başlıq + düymə) */
.slide-content {
    text-align: center;
    color: #fff;
    max-width: 80%;
    z-index: 2;
}

/* Başlıq stili */
.slide-content h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Düymə stili */
.slide-content .btn.more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #1b7402;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Düymə hover effekti */
.slide-content .btn.more-btn:hover {
    background-color: #155e02;
}

/* Hər slaydın üst qatına gradient əlavə etmək üçün: */
.swiper-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

/* Pagination (göstərici) mərkəzləşdirilməsi */
.swiper-pagination {
    bottom: 20px !important;
}

/* Prev/Next düymələrinin rəngi */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

/* Responsiv düzəlişlər kiçik ekranlar üçün */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content .btn.more-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}
