35445-vm/static/css/custom.css
2025-11-03 14:31:15 +00:00

88 lines
1.5 KiB
CSS

/*
Palette:
- Primary: #0D47A1 (Deep Blue)
- Secondary: #FFFFFF (White)
- Accent: #FFC107 (Amber/Gold)
- Neutral/Background: #F4F6F8 (Light Gray)
- Text: #212529 (Dark Gray)
*/
/* Typography */
body {
font-family: 'Roboto', sans-serif;
background-color: #F4F6F8;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
font-family: 'Poppins', sans-serif;
}
/* Navbar */
.navbar-brand {
font-weight: 700;
color: #0D47A1 !important;
}
/* Hero Section */
.hero-section {
background: linear-gradient(45deg, #0D47A1, #1976D2);
color: white;
padding: 6rem 0;
margin-bottom: 4rem;
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
}
.hero-subtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
font-weight: 400;
}
.btn-accent {
background-color: #FFC107;
border-color: #FFC107;
color: #212529;
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}
.btn-accent:hover {
background-color: #ffca2c;
border-color: #ffca2c;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Section */
.section-title {
font-weight: 600;
color: #0D47A1;
}
/* Achievement Card */
.achievement-card {
border: none;
border-radius: 15px;
box-shadow: 0 4px 25px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.achievement-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.achievement-card .card-title {
color: #0D47A1;
font-weight: 600;
}
.achievement-card .card-text strong {
color: #1976D2;
}