/* تعديل خلفية الفوتر */
footer {
background-color: #202c20!important; /* أخضر غامق أنيق */
color: #ffffff !important;
padding-top: 10px;
padding-bottom: 10px;
}
/* تعديل ألوان الروابط */
footer a {
color: #E6C588 !important; /* ذهبي أنيق */
font-weight: bold;
transition: color 0.3s ease;
}
footer a:hover {
color: #ffffff !important;
}
/* تعديل عنوان القسم */
footer h4,
footer h3 {
color: #E6C588 !important;
}
/* ضبط الحواف والمسافات */
footer .container {
padding: 0 20px !important;
}
/* تحسين عرض الأيقونات الاجتماعية والدفع */
footer .payment-icons img,
footer .social-icons img {
filter: brightness(0) invert(1); /* لجعلها بيضاء */
max-width: 50px;
margin: 10px 8px;
}
/* تحسين النص أسفل الفوتر */
footer .footer-bottom {
border-top: 1px solid #e6c588;
padding-top: 15px;
font-size: 14px;
color: #cfcfcf !important;
text-align: center;
}
/* زر الصعود */
.back-to-top {
background-color: #E6C588 !important;
color: #123C33 !important;
border-radius: 50% !important;
}
/* صورة الوردة المتحركة */
.floating-rose {
position: absolute;
right: 100px; /* عدل حسب مكان الشعار */
top: 10px;
width: 50px;
animation: float 3s ease-in-out infinite;
z-index: 2;
}
/* تأثير الطفو */
@keyframes float {
0%, 100% { transform: translateY(0); opacity: 1; }
50% { transform: translateY(-10px); opacity: 0.8; }
}