/* إعادة تعيين الأنماط الأساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0705;
    color: #fff;
    overflow-x: hidden;
}

/* تصميم القائمة العلوية */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(11, 7, 5, 0.9), transparent);
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 15px;
}

.navbar ul li a {
    color: #e0d5c1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: #ffd700;
}

/* قسم الواجهة الرئيسية */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    text-align: center;
    padding-bottom: 60px; 
}

/* خلفية التصميم الكاملة المتناسقة */
.globe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* تم تعديل المسار هنا لضمان قراءة الصورة المرفوعة مباشرة */
    background-image: url('./globe.jpg') !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6; /* زيادة النسبة لضمان وضوح معالم الخلفية والصندوق المدمج */
    z-index: 1;
}

/* حاوية المحتوى فوق الخلفية */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

/* العناوين والنصوص المجهزة لشاشات الموبايل */
.main-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.9);
}

.subtitle {
    font-size: 15px;
    color: #d1c7bd;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

/* الأزرار التفاعلية */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #aa7c11);
    color: #0b0705;
    box-shadow: 0 4px 12px rgba(170, 124, 17, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #aa7c11;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}
