Files
salmakis/app/components/Footer.module.css

125 lines
1.9 KiB
CSS

.footer {
background-color: var(--text-dark);
color: var(--primary-white);
padding: 6rem 2rem 2rem 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 4rem;
}
.brandCol {
text-align: center;
}
.logo {
font-family: var(--font-heading);
font-size: 2rem;
letter-spacing: 0.2em;
margin-bottom: 0.5rem;
color: var(--gold);
}
.tagline {
font-size: 0.9rem;
letter-spacing: 0.1em;
opacity: 0.6;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.generalContact {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
font-size: 0.95rem;
}
.contactText {
opacity: 0.8;
}
.gridContainer {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
text-align: center;
}
.colTitle {
font-family: var(--font-heading);
font-size: 1.25rem;
color: var(--sand-beige);
margin-bottom: 1rem;
letter-spacing: 0.05em;
}
.address {
font-size: 0.95rem;
opacity: 0.8;
margin-bottom: 0.5rem;
}
.contactLink {
display: block;
font-size: 0.95rem;
opacity: 0.8;
margin-bottom: 0.25rem;
transition: opacity 0.3s ease;
}
.contactLink:hover {
opacity: 1;
color: var(--gold);
}
.bottomBar {
max-width: 1200px;
margin: 4rem auto 0 auto;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.6);
}
.copyright {
margin: 0;
}
.signature {
letter-spacing: 0.05em;
}
.ayrisLink {
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
transition: color 0.3s ease;
text-decoration: underline;
text-underline-offset: 4px;
}
.ayrisLink:hover {
color: var(--gold);
}
@media (max-width: 768px) {
.gridContainer {
grid-template-columns: 1fr;
gap: 3rem;
}
.bottomBar {
flex-direction: column;
gap: 1rem;
text-align: center;
}
}