/*
* Header & Slider Fix CSS
* ئەم فایلە بۆ چارەسەری گرفتی سەری پەڕە و سلایدەکانە
*/

/* چارەسەری جێگیرکردنی هێدەر و سلایدەکان */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* سپەیس بۆ ناوەڕۆک بۆ ئەوەی لە ژێر ناڤبار دەرنەکەون */
main {
    padding-top: 70px; /* بەرزایی ناڤبار */
}

/* هەمواری سلایدەر بۆ بینینی تەواو */
.hero-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: -70px; /* نێگەتیڤ مارجن بۆ ئەوەی بگاتە سەرەوە */
    padding-top: 70px; /* پادینگ بۆ ئەوەی ناوەڕۆک لە ژێر ناڤبار دەرنەکەوێت */
}

.hero-item {
    height: calc(100vh - 70px); /* کەمکردنەوەی بەرزایی ناڤبار */
    min-height: 530px;
}

/* هەمواری مۆبایل */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
    
    .main {
        padding-top: 60px;
    }
    
    .hero-banner {
        margin-top: -60px;
        padding-top: 60px;
    }
    
    .hero-item {
        height: calc(100vh - 60px);
        min-height: 500px;
    }
}

/* سلایدەر بنەڕەتی */
.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

/* چاککردنی ناونیشانی سلایدەکان */
.hero-content {
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* دڵنیابوون لە ڕەنگی ڕوون بۆ دوگمەکان */
.hero-content .btn {
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0 0.5rem;
}

/* چاککردنی دۆتەکانی سلایدەر */
.hero-slider .swiper-pagination {
    bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    opacity: 0.7;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* چارەسەری دووپاتبوونەوەی شوێنگۆڕکێی سەر هێدەر */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        margin-top: 0;
    }
}

/* هەمواری ڕەنگی پێشەوەی سایت بۆ مۆبایل و تابلێت */
@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* هەمواری تاریککردنی سلایدەکان */
.hero-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}