more hero
All checks were successful
Deploy Theme / deploy (push) Successful in 10s

This commit is contained in:
2025-03-07 07:29:07 +01:00
parent 94a649126a
commit 2039144094
2 changed files with 117 additions and 2 deletions

View File

@@ -13,7 +13,18 @@
background: linear-gradient(to bottom right, #F9B208, #E72E77);
}
.hero-inner {
.hero-first {
display: flex;
flex-direction: column; /* Stack elements vertically by default */
align-items: center;
text-align: center;
width: 100%;
max-width: 1200px;
gap: 4rem; /* Space between items */
margin-bottom: 4rem;
}
.hero-second {
display: flex;
flex-direction: column; /* Stack elements vertically by default */
align-items: center;
@@ -78,6 +89,45 @@
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* How It Works Section */
#how-it-works {
background-color: #f8f9fa;
padding: 60px 0;
}
.steps {
display: flex;
flex-direction: column;
gap: 40px;
text-align: center;
}
.step h3 {
font-size: 1.6rem;
margin-bottom: 10px;
}
/* Features Section */
#features {
padding: 60px 0;
}
.features-list {
display: flex;
flex-direction: column;
gap: 30px;
}
.feature {
text-align: center;
}
.feature h3 {
font-size: 1.6rem;
margin-bottom: 10px;
}
/* Responsive layout for larger screens */
@media screen and (min-width: 768px) {
.hero-inner {
@@ -131,4 +181,18 @@
height: 100%;
object-fit: cover;
}
.steps {
flex-direction: row;
justify-content: space-around;
}
.features-list {
flex-direction: row;
justify-content: space-between;
}
.feature {
flex-basis: 45%;
}
}