Initial landing page

هذا الالتزام موجود في:
Abdul Kareem
2026-02-20 21:07:17 +03:00
التزام 344e9798f5
3 ملفات معدلة مع 407 إضافات و0 حذوفات

246
styles.css Normal file
عرض الملف

@@ -0,0 +1,246 @@
:root {
--primary: #d32f2f;
--secondary: #e53935;
--bg: #fffbf7;
--surface: #ffffff;
--card: #ffebee;
--text-main: #2d1515;
--text-muted: #7a4a4a;
--border: #f2c6c6;
--shadow: rgba(211, 47, 47, 0.12);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Cairo', sans-serif;
}
body {
background: var(--bg);
color: var(--text-main);
line-height: 1.6;
}
.hero,
.features,
.how,
.contact {
max-width: 1100px;
margin: 0 auto;
padding: 24px 16px;
}
.hero {
min-height: 78vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: transparent;
}
.logo {
width: 108px;
height: 108px;
border-radius: 999px;
object-fit: cover;
box-shadow: 0 8px 24px var(--shadow);
margin-bottom: 18px;
}
.hero h1 {
font-size: clamp(30px, 4vw, 44px);
margin-bottom: 8px;
font-weight: 700;
}
.hero p {
font-size: 22px;
color: var(--text-muted);
margin-bottom: 22px;
}
.buttons {
width: min(720px, 100%);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.btn {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 52px;
border-radius: 14px;
border: 1px solid var(--border);
font-size: 20px;
font-weight: 700;
text-decoration: none;
transition: .2s ease;
}
.android {
background: var(--primary);
color: #fff;
}
.android:hover {
background: #be2a2a;
transform: translateY(-1px);
}
.ios {
background: var(--surface);
color: var(--text-muted);
}
.features h2,
.how h2,
.contact h2 {
text-align: center;
margin-bottom: 18px;
color: var(--text-main);
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 18px;
box-shadow: 0 6px 18px var(--shadow);
}
.card h3 {
color: var(--primary);
margin-bottom: 6px;
}
.card p {
color: var(--text-muted);
}
.how {
background: var(--card);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.steps {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin-top: 10px;
}
.steps div {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 12px;
text-align: center;
font-weight: 600;
}
.contact {
text-align: center;
}
.contact p {
color: var(--text-muted);
margin-bottom: 8px;
}
.contact a {
color: var(--primary);
font-weight: 700;
}
.contact form {
margin: 26px auto 0;
width: min(1000px, 100%);
display: grid;
gap: 12px;
}
.contact input,
.contact textarea {
width: 100%;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 14px 16px;
font-size: 18px;
color: var(--text-main);
outline: none;
}
.contact input:focus,
.contact textarea:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}
.contact textarea {
min-height: 120px;
resize: vertical;
}
.contact button {
min-height: 54px;
border: 1px solid var(--border);
border-radius: 14px;
background: var(--primary);
color: #fff;
font-size: 30px;
font-weight: 700;
cursor: pointer;
transition: .2s ease;
}
.contact button:hover {
background: #be2a2a;
}
footer {
margin-top: 24px;
background: #2b1b1b;
color: #fff;
text-align: center;
padding: 16px;
}
@media (max-width: 900px) {
.features-grid,
.steps,
.buttons {
grid-template-columns: 1fr;
}
.hero {
min-height: 62vh;
}
.hero p {
font-size: 18px;
}
.btn,
.contact input,
.contact textarea {
font-size: 16px;
}
.contact button {
font-size: 24px;
}
}