36258-vm/assets/css/custom.css
Flatlogic Bot 59d6d8cec7 0.1
2025-11-25 10:26:50 +00:00

139 lines
2.4 KiB
CSS

/*
* Design Defaults
*
* Palette:
* Primary: #4F46E5 (Indigo)
* Secondary: #10B981 (Emerald Green)
* Background: #F9FAFB (Light Gray)
* Surface/Card: #FFFFFF (White)
* Text: #1F2937 (Dark Gray)
*
* Typography:
* Headings: 'Poppins', sans-serif
* Body: 'Inter', sans-serif
*/
body {
font-family: 'Inter', sans-serif;
background-color: #F9FAFB;
color: #1F2937;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
}
.btn-primary {
background-color: #4F46E5;
border-color: #4F46E5;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
transition: all 0.2s ease-in-out;
}
.btn-primary:hover {
background-color: #4338CA;
border-color: #4338CA;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-secondary {
background-color: #10B981;
border-color: #10B981;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
transition: all 0.2s ease-in-out;
}
.btn-secondary:hover {
background-color: #059669;
border-color: #059669;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.navbar {
transition: background-color 0.3s ease-in-out;
}
.navbar-brand {
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #4F46E5 !important;
}
.hero {
color: white;
padding: 6rem 0;
background: linear-gradient(45deg, #4f46e5, #10b981);
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.section {
padding: 5rem 0;
}
.section-title {
font-weight: 800;
margin-bottom: 3rem;
}
.career-card {
background-color: #FFFFFF;
border: 0;
border-radius: 0.5rem;
padding: 2rem;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.career-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.career-card .icon {
width: 64px;
height: 64px;
margin: 0 auto 1.5rem;
color: #4F46E5;
}
.feature-icon {
width: 48px;
height: 48px;
color: #10B981;
}
.footer {
background-color: #1F2937;
color: #E5E7EB;
padding: 3rem 0;
}
.footer a {
color: #F9FAFB;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}