121 lines
3.4 KiB
CSS
121 lines
3.4 KiB
CSS
/* Custom CSS */
|
|
:root {
|
|
--primary-color: #6366f1;
|
|
--secondary-color: #4f46e5;
|
|
--background-color: #f8fafc;
|
|
--card-bg: #ffffff;
|
|
--text-color: #1e293b;
|
|
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
letter-spacing: -0.05em;
|
|
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1rem;
|
|
color: #64748b;
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.service-card {
|
|
background-color: var(--card-bg);
|
|
border-radius: 12px;
|
|
padding: 1.5rem 1rem;
|
|
box-shadow: var(--shadow);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
position: relative;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none; /* Remove underline from links */
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 0.75rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.service-name {
|
|
display: block;
|
|
font-size: 0.9rem;
|
|
margin-top: 0.5rem;
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.admin-link {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
color: #64748b;
|
|
text-decoration: none;
|
|
font-size: 0.8rem;
|
|
opacity: 0.5;
|
|
transition: opacity 0.2s;
|
|
}
|
|
|
|
.admin-link:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.title {
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.services-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
} |