.footer {
    background: rgba(248, 164, 158, 0.45);
    border-top: 1px solid var(--red-rose);
    padding: 3rem 5% 1rem;
    color: var(--brown);
}

.footer-content {
    width: min(100%, 1100px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem;
}

.footer h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--brown);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a:hover {
    color: var(--red-rose);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(248, 164, 158, 0.5);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}
