60 lines
1.3 KiB
CSS
60 lines
1.3 KiB
CSS
/* Professional Design - Ethio-Gebeya */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700;800&display=swap');
|
|
|
|
:root {
|
|
--primary: #1F6FEB;
|
|
--secondary: #0F172A;
|
|
--accent: #F97316;
|
|
--bg: #F8FAFC;
|
|
--text: #1E293B;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
margin: 0;
|
|
}
|
|
|
|
h1, h2, h3, .navbar-brand {
|
|
font-family: 'Manrope', sans-serif;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, var(--secondary), var(--primary));
|
|
color: white;
|
|
padding: 100px 20px;
|
|
text-align: center;
|
|
border-bottom-left-radius: 40px;
|
|
border-bottom-right-radius: 40px;
|
|
}
|
|
|
|
.product-card {
|
|
background: white;
|
|
border-radius: 16px;
|
|
padding: 1.5rem;
|
|
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
border: none;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.card-title {
|
|
font-family: 'Manrope', sans-serif;
|
|
font-size: 1.25rem;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--accent);
|
|
border: none;
|
|
border-radius: 8px;
|
|
padding: 0.6rem 1.5rem;
|
|
font-weight: 600;
|
|
}
|