/* ------------------------- Footer ------------------------- */

.footer {
    margin-top: 10%;
}

.footer h1 {
    text-align: center;
    padding-top: 50px;
}

.footer h1::after {
    content: '';
    background: #ff4d73;
    display: block;
    height: 3px;
    width: 170px;
    margin: 20px auto 50px;
}

/* صندوق الكتابة */
.contact-form {
    padding: 15px;
}

.form-control {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

::placeholder {
    font-size: 12px;
}

/* زر الإرسال */
.contact-form button {
    border: none !important;
    background: #ff4d73 !important;
    box-shadow: none !important;
    border-radius: 0;
}

/* معلومات التواصل */
.contact-info .follow {
    background-color: #fff;
    padding: 8px;
    margin: 15px;
    display: flex;
    align-items: center;
}

.contact-info .fa {
    margin: 10px;
    font-size: 20px;
    color: #ff4d73;
    font-weight: bold;
    padding-right: 20px;
}

.contact-info span {
    font-size: 16px;
}

/* حقوق النشر */
.copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

.fa-heart-o {
    color: red;
    font-size: 17px;
}

.footer hr {
    margin-top: 50px;
    background: #ff4d73;
    border: none;
    height: 2px;
}
.follow {
    display: flex;           /* تجعل الأيقونة والنص في صف واحد */
    align-items: center;     /* محاذاة رأسية متساوية */
    gap: 15px;               /* المسافة بين الأيقونة والنص */
    margin-bottom: 10px;     /* مسافة بين كل سطر وآخر */
}

.follow i {
    font-size: 20px;         /* حجم الأيقونة */
    color: #ff4d73;          /* لون الأيقونة */
    min-width: 25px;         /* عرض ثابت للأيقونة للحفاظ على الاصطفاف */
    text-align: center;
}

.follow span {
    font-size: 16px;
    color: #333;
}



/* حركة عند المرور على الأيقونة */
.follow i:hover {
    color: #fff;           /* تغيير اللون عند المرور */
    transform: translateY(-10px) rotate(15deg) scale(1.2); /* حركة متدرجة */
}

/* أنيميشن ظهور تدريجي عند تحميل الصفحة */


.follow i:nth-child(1) { animation-delay: 0.1s; }
.follow i:nth-child(2) { animation-delay: 0.2s; }
.follow i:nth-child(3) { animation-delay: 0.3s; }
.follow i:nth-child(4) { animation-delay: 0.4s; }
.follow i:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
