body,
html,
#app {
    margin: 0;
    width: 100%;
    height: 100vh;
}


#app {
    height: 100%;
    font-family: "Montserrat", serif;
}

#app a {
    text-decoration: none;
    color: #fff;
}

.hero {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

h1,
h2,
p {
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    line-height: 100%;
    user-select: none;
}

h1 {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
}

#canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1; /* أرسل الكانفاس إلى الخلفية */
    background: #000; /* تأكد من وجود خلفية سوداء */
}

.content-wrapper {
    position: relative; /* ضروري ليعمل الـ z-index */
    z-index: 10; /* ارفع المحتوى فوق الكانفاس */
    pointer-events: none; /* يسمح بمرور حركة الماوس للكانفاس بالخلف */
}

/* اجعل العناصر داخل المحتوى قابلة للتفاعل (مثل الأزرار والروابط) */
.content-wrapper a,
.content-wrapper button,
.content-wrapper input,
nav,
footer {
    pointer-events: auto;
}


.l{
    color: #3b8d7c;
    color: #8be6d42a;
}

/* تعطيل تفاعل اللمس مع الكانفاس في الشاشات الصغيرة (الهواتف) للسماح بالتمرير */
@media (max-width: 768px) {
    #canvas {
        pointer-events: none !important;
    }
    
    /* لضمان أن اللمس يعمل على محتوى الموقع نفسه */
    .content-wrapper {
        pointer-events: auto; 
    }
}