CinePlex/css/footer.css

80 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2025-07-02 14:16:25 +02:00
.footer {
background: var(--secondary);
padding: 1.5rem 2rem;
border-top: 1px solid var(--glass-border);
margin-top: 4rem;
}
.footer .container {
max-width: 1200px;
margin: 0 auto;
padding: 0;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-logo-link {
text-decoration: none;
}
.footer-logo-text {
font-family: 'Orbitron', sans-serif;
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 1px;
background: var(--gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
transition: var(--transition);
display: inline-block;
}
.footer-logo-link:hover .footer-logo-text {
transform: scale(1.03);
filter: brightness(1.1);
}
.footer-links {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
}
.footer-link {
color: var(--text-secondary);
text-decoration: none;
transition: var(--transition);
font-size: 0.9rem;
font-weight: 500;
}
.footer-link:hover {
color: var(--accent);
transform: translateY(-2px);
}
.footer-credit {
font-size: 0.9rem;
color: var(--text-secondary);
opacity: 0.8;
margin: 0;
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
gap: 1.2rem;
}
.footer {
padding: 2rem 1rem;
}
}