35766-vm/assets/css/custom.css
Flatlogic Bot a0da7985a2 v1
2025-11-16 06:48:37 +00:00

141 lines
2.9 KiB
CSS

/* KashRev Custom Styles */
:root {
--primary-color: #3A4E73; /* Deep Slate Blue */
--secondary-color: #D9C7A1; /* Warm Sand */
--accent-color: #C79D4F; /* Gold Ember */
--background-color: #F7F7F5; /* Off-White Snow */
--text-color: #2A2A2A; /* Graphite */
--heading-font: Georgia, 'Times New Roman', Times, serif;
--body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--border-radius: 8px;
}
body {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--body-font);
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--heading-font);
color: var(--primary-color);
font-weight: 700;
}
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
border-radius: var(--border-radius);
padding: 12px 24px;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
background-color: #2c3e5f; /* Darker Slate Blue */
border-color: #2c3e5f;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
background-color: transparent;
border-color: var(--primary-color);
color: var(--primary-color);
border-radius: var(--border-radius);
padding: 12px 24px;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: var(--primary-color);
color: #fff;
}
.hero {
padding: 100px 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
color: #555;
margin-bottom: 2rem;
}
.section {
padding: 80px 0;
}
.section-title {
text-align: center;
margin-bottom: 4rem;
font-size: 2.5rem;
}
.step-card, .feature-card, .loan-type-card {
background-color: #fff;
border: 1px solid #eee;
border-radius: var(--border-radius);
padding: 30px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
height: 100%;
}
.step-card:hover, .feature-card:hover, .loan-type-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.step-card .icon, .feature-card .icon, .loan-type-card .icon {
color: var(--accent-color);
margin-bottom: 1.5rem;
}
.step-number {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
background-color: var(--accent-color);
color: #fff;
font-weight: bold;
font-family: var(--body-font);
margin-bottom: 1rem;
}
.footer {
background-color: var(--primary-color);
color: var(--background-color);
padding: 40px 0;
margin-top: 80px;
}
.footer a {
color: var(--secondary-color);
text-decoration: none;
}
.footer a:hover {
color: #fff;
text-decoration: underline;
}
.footer .social-links a {
font-size: 1.5rem;
margin: 0 10px;
}