71 lines
1.5 KiB
CSS
71 lines
1.5 KiB
CSS
.deepdrft-footer {
|
|
/* position:relative + z-index:1 creates a stacking context that paints above the
|
|
WaveformVisualizer backdrop (z-index:0), keeping footer text fully legible. */
|
|
position: relative;
|
|
z-index: 1;
|
|
background: var(--deepdrft-white);
|
|
border-top: 1px solid var(--deepdrft-border);
|
|
padding: 3rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.deepdrft-footer-logo {
|
|
font-family: var(--deepdrft-font-display);
|
|
font-size: 1.5rem;
|
|
font-weight: 400;
|
|
color: var(--deepdrft-navy);
|
|
}
|
|
|
|
.deepdrft-footer-logo span {
|
|
/*font-style: italic;*/
|
|
color: var(--deepdrft-green);
|
|
}
|
|
|
|
.deepdrft-footer-links {
|
|
display: flex;
|
|
gap: 2rem;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.deepdrft-footer-links a {
|
|
font-family: var(--deepdrft-font-mono);
|
|
font-size: 0.62rem;
|
|
letter-spacing: 0.18em;
|
|
text-transform: uppercase;
|
|
color: var(--deepdrft-muted);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.deepdrft-footer-links a:hover { color: var(--deepdrft-navy); }
|
|
|
|
.deepdrft-footer-copy {
|
|
font-family: var(--deepdrft-font-mono);
|
|
font-size: 0.58rem;
|
|
letter-spacing: 0.12em;
|
|
color: var(--deepdrft-muted);
|
|
}
|
|
|
|
@media (max-width: 440px) {
|
|
.deepdrft-footer {
|
|
padding: 1.5rem;
|
|
/*flex-wrap: wrap;*/
|
|
gap: 1rem;
|
|
}
|
|
|
|
.deepdrft-footer-links {
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.deepdrft-footer-copy {
|
|
/*width: 100%;*/
|
|
justify-self: right;
|
|
}
|
|
}
|