108 lines
1.9 KiB
CSS
108 lines
1.9 KiB
CSS
/*
|
|
* Footer Styles
|
|
*/
|
|
|
|
.footer {
|
|
padding: 5rem 0 2.5rem;
|
|
border-top: 1px solid var(--divider);
|
|
}
|
|
|
|
.footer-inner {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto auto;
|
|
gap: 4rem;
|
|
margin-bottom: 3.5rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.footer-logo {
|
|
font-size: 1.35rem;
|
|
font-weight: 800;
|
|
color: var(--text);
|
|
letter-spacing: -0.5px;
|
|
display: block;
|
|
margin-bottom: 0.6rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-logo span {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.footer-brand p {
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
max-width: 260px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.footer-links-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
min-width: 140px;
|
|
}
|
|
|
|
.footer-links-col h4 {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-muted);
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.footer-links-col a {
|
|
color: var(--text-2);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.footer-links-col a:hover {
|
|
color: var(--accent-light);
|
|
}
|
|
|
|
.footer-bottom {
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--divider);
|
|
}
|
|
|
|
.footer-bottom p {
|
|
color: var(--text-muted);
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
/* Footer community links */
|
|
.footer-community {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.footer-community a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 36px;
|
|
height: 36px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 8px;
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.footer-community a:hover {
|
|
border-color: var(--accent-glow);
|
|
color: var(--accent-light);
|
|
background: var(--bg-card-hover);
|
|
}
|
|
|
|
.footer-community svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|