[mirotalksfu] - add support us section

هذا الالتزام موجود في:
Miroslav Pejic
2025-11-10 19:45:06 +01:00
الأصل 8d23a5fd94
التزام dffc992f4b
7 ملفات معدلة مع 298 إضافات و26 حذوفات

عرض الملف

@@ -2142,3 +2142,143 @@ main {
pointer-events: none;
opacity: 0.5;
}
/*--------------------------------------------------------------
# Support Us Section
--------------------------------------------------------------*/
#supportUs .cta-inner {
background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 60%, rgba(36, 40, 48, 0.25) 100%);
}
.support-us-content {
text-align: center;
padding: 32px 24px;
}
.support-icon {
margin-bottom: 24px;
}
.support-icon .fa-heart {
font-size: 48px;
color: #ff6b6b;
}
.heartbeat {
animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
0%,
100% {
transform: scale(1);
}
10%,
30% {
transform: scale(1.1);
}
20%,
40% {
transform: scale(1);
}
}
.support-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
max-width: 900px;
margin: 0 auto;
}
.support-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 28px 20px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
min-height: 160px;
}
.support-card:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.support-card-icon svg {
filter: brightness(0) invert(1);
}
.support-card-icon {
margin-bottom: 12px;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.08);
border-radius: 50%;
transition: all 0.3s ease;
}
.support-card:hover .support-card-icon {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}
.support-card-title-small {
margin: 0 0 8px 0;
font-size: 18px;
font-weight: 600;
color: #fff;
text-align: center;
}
.support-card-description-small {
margin: 0;
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
text-align: center;
line-height: 1.5;
}
.support-footer {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
.support-options {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
}
@media (max-width: 480px) {
.support-options {
grid-template-columns: 1fr;
gap: 16px;
}
.support-icon .fa-heart {
font-size: 36px;
}
.support-us-content {
padding: 24px 16px;
}
.support-card {
padding: 24px 16px;
min-height: 140px;
}
}