
/* ====================== */
/* HERO SECTION */
/* ====================== */
.hero1 {
    background-image: url('./image/w7.jpg'); /* تأكد من المسار الصحيح */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh; /* شاشة كاملة */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-attachment: scroll; /* إزالة التأثير الثابت */
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.15); /* شفافية خفيفة للمحتوى فقط */
    backdrop-filter: blur(5px); /* تأثير ضبابي خفيف للمحتوى */
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hero {
        background-size: cover; /* تأكد من التغطية الكاملة على الهواتف */
        height: 80vh;
    }
    
    .hero-content {
        padding: 1rem;
        margin: 0 15px;
    }
}


.hero1 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
