/* إعدادات عامة */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #222222; /* نفس لون أطراف الصورة */
    color: #ffffff;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* المسار الذي طلبته */
    background: url('img/bg.jpeg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* طبقة التلاشي الاحترافية (Vignette Effect) */
/* هذه الطبقة تضمن اختفاء أي حواف حادة من الصورة ودمجها مع الخلفية */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle, 
        transparent 20%, 
        #222222 95%
    );
    /* إضافة تدرج خطي من الأعلى والأسفل لضمان التلاشي الكامل */
    box-shadow: inset 0 0 100px 50px #222222;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37; /* لون ذهبي قانوني */
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* الأزرار */
.btn-primary {
    background-color: #d4af37;
    color: #222222;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover { background-color: #b8962d; }
.btn-secondary:hover { background-color: #ffffff; color: #222222; }