154 lines
3.2 KiB
CSS
154 lines
3.2 KiB
CSS
|
|
/*-- Google Fonts --*/
|
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&family=Lato:wght@400;700&display=swap');
|
|
|
|
/*-- Variables --*/
|
|
:root {
|
|
--primary-color: #FF7F50; /* Coral */
|
|
--secondary-color: #4682B4; /* Steel Blue */
|
|
--background-color: #FAF9F6;
|
|
--surface-color: #FFFFFF;
|
|
--text-color: #333333;
|
|
--light-gray-color: #f8f9fa;
|
|
--border-radius: 8px;
|
|
--font-family-headings: 'Nunito', sans-serif;
|
|
--font-family-body: 'Lato', sans-serif;
|
|
}
|
|
|
|
/*-- General Styles --*/
|
|
body {
|
|
font-family: var(--font-family-body);
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-family-headings);
|
|
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: 700;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #E56A40; /* Darker coral */
|
|
border-color: #E56A40;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: var(--secondary-color);
|
|
border-color: var(--secondary-color);
|
|
border-radius: var(--border-radius);
|
|
padding: 12px 24px;
|
|
font-weight: 700;
|
|
color: var(--surface-color);
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #3A6A8A; /* Darker steel blue */
|
|
border-color: #3A6A8A;
|
|
color: var(--surface-color);
|
|
}
|
|
|
|
/*-- Header --*/
|
|
.navbar {
|
|
background-color: var(--surface-color);
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: var(--font-family-headings);
|
|
font-weight: 800;
|
|
color: var(--primary-color) !important;
|
|
}
|
|
|
|
/*-- Hero Section --*/
|
|
.hero-section {
|
|
padding: 100px 0;
|
|
background: linear-gradient(135deg, rgba(255, 127, 80, 0.1), rgba(255, 127, 80, 0));
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.hero-section .lead {
|
|
font-size: 1.25rem;
|
|
max-width: 600px;
|
|
margin: 20px auto 40px;
|
|
}
|
|
|
|
/*-- Sections --*/
|
|
.section {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
/*-- How it works --*/
|
|
.how-it-works-icon {
|
|
font-size: 3rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/*-- Features --*/
|
|
.feature-card {
|
|
background-color: var(--surface-color);
|
|
border: none;
|
|
border-radius: var(--border-radius);
|
|
padding: 30px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
height: 100%;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.feature-card .icon {
|
|
font-size: 2.5rem;
|
|
color: var(--secondary-color);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
/*-- Search Widget --*/
|
|
#search-widget {
|
|
background-color: var(--surface-color);
|
|
padding: 40px;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
/*-- Footer --*/
|
|
.footer {
|
|
background-color: #343a40;
|
|
color: var(--surface-color);
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.footer a {
|
|
color: #f8f9fa;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|