Files
ApplianceRepair/Components/Pages/Home.razor.css

150 lines
2.4 KiB
CSS
Raw Normal View History

2026-02-03 16:55:37 -06:00

/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
2026-05-01 19:48:34 -05:00
font-family: 'StencilBold', sans-serif;
2026-02-03 16:55:37 -06:00
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
/* Navbar */
.navbar {
background: #fff;
padding: 1rem 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
2026-05-01 19:48:34 -05:00
color: black;
2026-02-03 16:55:37 -06:00
}
.logo span {
color: #e63946;
}
.nav-phone {
text-decoration: none;
2026-05-01 19:48:34 -05:00
color: black;
2026-02-03 16:55:37 -06:00
font-weight: bold;
}
/* Hero Section */
.hero {
2026-05-01 19:48:34 -05:00
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1588854337115-1c67d9247e4d?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
2026-02-03 16:55:37 -06:00
background-size: cover;
background-position: center;
color: #fff;
padding: 100px 0;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero h1 span {
2026-05-01 19:48:34 -05:00
color: #D2B48C;
2026-02-03 16:55:37 -06:00
}
/* Buttons */
.btn {
display: inline-block;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin: 10px;
transition: 0.3s;
}
.btn-primary {
background: #e63946;
color: #fff;
}
.btn-secondary {
background: #fff;
color: #333;
}
.btn:hover {
opacity: 0.9;
transform: translateY(-2px);
}
/* Services */
.services {
padding: 60px 0;
}
.section-title {
text-align: center;
margin-bottom: 40px;
font-size: 2rem;
}
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-card {
background: #fff;
padding: 30px;
border-radius: 8px;
text-align: center;
2026-05-01 19:48:34 -05:00
border-bottom: 4px solid #D2B48C;
2026-02-03 16:55:37 -06:00
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
/* Trust Section */
.trust {
2026-05-01 19:48:34 -05:00
background: #D2B48C;
2026-02-03 16:55:37 -06:00
color: #fff;
padding: 40px 0;
text-align: center;
}
.trust .container {
2026-05-01 19:48:34 -05:00
display: flex;
justify-content: space-around;
flex-wrap: wrap;
2026-02-03 16:55:37 -06:00
}
.trust-item {
margin: 20px;
}
footer {
text-align: center;
padding: 20px;
font-size: 0.9rem;
color: #777;
}
/* Mobile Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
}