/* ---------------------------------- */
/* 1. إعادة التهيئة والتنسيقات العامة */
/* ---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}



/* ---------------------------------- */
/* 2. قسم الهيرو (الواجهة الرئيسية)  */
/* ---------------------------------- */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    
}

.hero-BG {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

.rectangle {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: -1;
}

.hero .BG {
    position: absolute;
    top: 50%;
    left: 50%;
   
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: rgba(80, 128, 107, 0.25);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero .BG h1 {
    color: #f6eae1;
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.BG .text p {
    font-size: 24px;
    color: #e1c5af;
    margin-bottom: 40px;
}

/* ---------------------------------- */
/* زر الدعوة لاتخاذ إجراء (CTA)      */
/* ---------------------------------- */
.cta-btn {
    display: flex;
    width: fit-content;
    margin: 20px auto;
    padding: 14px 40px;
    background-color: #f6eae1;
    border: 2px solid #66774a;
    border-radius: 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: #66774a;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #66774a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 119, 74, 0.2);
}

/* ---------------------------------- */
/* 3. الوضع الداكن (عام وشريط التنقل) */
/* ---------------------------------- */
body.dark-mode {
    background-color: #2b1d12;
    color: #efe7d9;
}




body.dark-mode .hero .BG {
    background-color: rgba(43, 29, 18, 0.6);
    border: 1px solid rgba(212, 224, 192, 0.2);
}

body.dark-mode .cta-btn {
    background-color: #3d2b1f;
    color: #efe7d9;
    border-color: #a3b899;
}



/* ---------------------------------- */
/* 4. التصميم المتجاوب مع الشاشات    */
/* ---------------------------------- */
@media (max-width: 1024px) {
    .hero .BG { width: 75%; }
    .hero .BG h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  
    .hero .BG { width: 90%; }
    .hero .BG h1 { font-size: 32px; }
}
