155 lines
2.6 KiB
CSS
155 lines
2.6 KiB
CSS
.featuresPage {
|
|
padding-top: 5rem;
|
|
}
|
|
|
|
.hero {
|
|
background-image: url('/hero-inner-bg.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
padding: 8rem 0 8rem;
|
|
text-align: center;
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.heroContent {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.heroTitle {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
margin-bottom: 1rem;
|
|
color: white;
|
|
}
|
|
|
|
.breadcrumb {
|
|
font-size: 1rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.breadcrumb a {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.breadcrumb a:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.breadcrumb span {
|
|
color: #fff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.categorySection {
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
.categoryHeader {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 3rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 2px solid var(--background-secondary);
|
|
}
|
|
|
|
.categoryIcon {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.categoryTitle {
|
|
font-size: 2rem;
|
|
color: var(--foreground);
|
|
font-family: var(--font-display);
|
|
}
|
|
|
|
.featuresGrid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.featuresGrid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
|
|
.featureCard {
|
|
background: var(--background);
|
|
border-radius: var(--radius-xl);
|
|
padding: 2rem;
|
|
box-shadow: var(--shadow-md);
|
|
transition: all 0.3s ease;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.featureCard:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow-xl);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.featureIcon {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.featureTitle {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
color: var(--foreground);
|
|
font-family: var(--font-display);
|
|
}
|
|
|
|
.featureDescription {
|
|
color: var(--foreground-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.ctaSection {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
padding: 5rem 0;
|
|
text-align: center;
|
|
color: white;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.ctaContent {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.ctaTitle {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
color: white;
|
|
}
|
|
|
|
.ctaSubtitle {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 2rem;
|
|
color: rgba(255, 255, 255, 0.95);
|
|
} |