update: add clickable phone and email contact cards

هذا الالتزام موجود في:
Abdul Kareem
2026-03-23 01:29:39 +03:00
الأصل 7aab3771da
التزام d12866cf9c
2 ملفات معدلة مع 134 إضافات و21 حذوفات

عرض الملف

@@ -42,12 +42,34 @@ body {
background: transparent;
}
.logo {
width: 108px;
height: 108px;
.hero-brand {
display: inline-flex;
align-items: center;
gap: 14px;
margin-bottom: 22px;
}
.brand-logo {
width: 64px;
height: 64px;
border-radius: 999px;
object-fit: cover;
box-shadow: 0 8px 24px var(--shadow);
}
.brand-name {
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
color: var(--text-main);
line-height: 1;
}
.logo {
width: min(220px, 58vw);
height: auto;
border-radius: 28px;
object-fit: contain;
box-shadow: 0 8px 24px var(--shadow);
margin-bottom: 18px;
}
@@ -160,6 +182,62 @@ body {
margin-bottom: 8px;
}
.contact-links {
width: min(760px, 100%);
margin: 0 auto 18px;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.contact-link {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
padding: 16px 18px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
box-shadow: 0 6px 18px var(--shadow);
text-decoration: none;
transition: .2s ease;
}
.contact-link:hover {
transform: translateY(-2px);
box-shadow: 0 10px 24px var(--shadow);
}
.contact-icon {
width: 52px;
height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: var(--primary);
color: #fff;
font-size: 24px;
flex-shrink: 0;
}
.contact-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
color: var(--text-main);
}
.contact-copy strong {
color: var(--primary);
}
.contact-copy span {
color: var(--text-muted);
}
.contact a {
color: var(--primary);
font-weight: 700;
@@ -226,6 +304,10 @@ footer {
grid-template-columns: 1fr;
}
.contact-links {
grid-template-columns: 1fr;
}
.hero {
min-height: 62vh;
}
@@ -234,6 +316,16 @@ footer {
font-size: 18px;
}
.hero-brand {
gap: 10px;
margin-bottom: 18px;
}
.brand-logo {
width: 54px;
height: 54px;
}
.btn,
.contact input,
.contact textarea {