34602-vm/assets/css/custom.css
2025-10-03 18:00:19 +00:00

62 lines
1.0 KiB
CSS

body {
padding-top: 56px; /* Adjust for fixed-top navbar */
}
.navbar {
background: linear-gradient(45deg, #0A74DA, #1F85DE) !important;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand {
font-family: 'Lora', serif;
font-weight: 700;
}
body {
font-family: 'Inter', sans-serif;
background-color: #F8F9FA;
color: #212529;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lora', serif;
}
.hero {
background: linear-gradient(45deg, #0A74DA, #1F85DE);
color: white;
padding: 4rem 0;
}
.form-step {
display: none;
}
.form-step.active {
display: block;
}
.progress-bar {
transition: width 0.3s ease-in-out;
}
.card {
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Landing Page Sections */
#features .card, #goals .card {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#features .card:hover, #goals .card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}
#outputs img, #dashboard img {
border: 1px solid #dee2e6;
}