@font-face {
    font-family: "Cairo";
    src: url("../fonts/static/Cairo-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    background-color: #4c0000; /* اللون البرتقالي */
    color: #FF6F00;
    direction: rtl;
}

/* الحاوية الرئيسية */
.container {
    text-align: center;
    padding: 20px;
}

/* الهيدر */
header {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

/* الأزرار */
.actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-btn {
    background-color: #8B0000; /* اللون الأحمر */
    color: white;
    border-radius: 15px;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: #D32F2F; /* تأثير عند المرور على الأزرار */
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* الأيقونات */
.fas, .fab {
    font-size: 24px;
    margin-bottom: 10px;
}

/* تذييل الصفحة */
footer {
    margin-top: 50px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: white;
    font-size: 40px;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    color: #D32F2F;
    transform: rotate(360deg);
}

/* تحسين التصميم على الأجهزة المحمولة */
@media (max-width: 600px) {
    .actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .socials {
        gap: 15px;
    }
}

* {
    font-family: "Cairo", sans-serif;
    transition: all 0.3s ease;
}