105 lines
2.2 KiB
CSS
105 lines
2.2 KiB
CSS
:root {
|
|
--custom-primary: #D04000;
|
|
/* Approximate logo color */
|
|
--custom-bg: #1a1a1a;
|
|
--custom-text: #f0f0f0;
|
|
--custom-card-bg: #2d2d2d;
|
|
}
|
|
|
|
/* Global modifications */
|
|
body {
|
|
background-color: var(--custom-bg) !important;
|
|
color: var(--custom-text) !important;
|
|
}
|
|
|
|
.brand-text {
|
|
color: var(--custom-text);
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
footer {
|
|
background-color: var(--custom-bg) !important;
|
|
border-top: 1px solid #333;
|
|
color: #888;
|
|
}
|
|
|
|
/* Specific to home */
|
|
.page-content.home {
|
|
background-color: transparent;
|
|
/* Let body background show */
|
|
/* Remove min-height calculation as body is covered */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-image: radial-gradient(circle at top right, #2a1a10 0%, var(--custom-bg) 40%);
|
|
min-height: 80vh;
|
|
/* Minimum height for centering */
|
|
}
|
|
|
|
.home-container {
|
|
text-align: center;
|
|
max-width: 800px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.logo-img {
|
|
width: 150px;
|
|
height: auto;
|
|
margin-bottom: 2rem;
|
|
filter: drop-shadow(0 0 20px rgba(208, 64, 0, 0.3));
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(135deg, #fff, #ccc);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.5rem;
|
|
color: #888;
|
|
margin-bottom: 3rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.action-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.action-card {
|
|
background: var(--custom-card-bg);
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
color: var(--custom-text);
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
border: 1px solid #333;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.action-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
|
|
border-color: var(--custom-primary);
|
|
color: var(--custom-text);
|
|
}
|
|
|
|
.action-card i {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
color: var(--custom-primary);
|
|
}
|
|
|
|
.action-card h3 {
|
|
margin: 0;
|
|
font-weight: 600;
|
|
} |