/* ==================================
   FOOTER MINIMALISTE
   ================================== */

.footer-minimal {
    background: linear-gradient(135deg, rgb(193, 180, 141) 0%, rgb(142, 131, 101) 100%);
    color: rgb(255, 255, 255);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.footer-minimal::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-image: url('../images/footer/footer.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
}

@media screen and (max-width: 990px) {
    .footer-minimal::before {
        width: 60%;
        opacity: 0.15;
    }
}

@media screen and (max-width: 768px) {
    .footer-minimal::before {
        width: 100%;
        opacity: 0.08;
    }
}

.footer-minimal__content {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Top Section */
.footer-minimal__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

@media screen and (max-width: 990px) {
    .footer-minimal__top {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
}

/* Logo */
.footer-minimal__logo {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 400;
    margin: 0 0 var(--spacing-xs);
    color: rgb(255, 255, 255);
    letter-spacing: 0.05em;
}

.footer-minimal__tagline {
    font-size: 1.4rem;
    opacity: 0.85;
    margin: 0;
    font-family: var(--font-body);
}

/* Navigation */
.footer-minimal__nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

@media screen and (max-width: 990px) {
    .footer-minimal__nav {
        align-items: center;
    }
}

.footer-minimal__link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

.footer-minimal__link:hover {
    opacity: 0.7;
    transform: translateX(3px);
}

/* Contact */
.footer-minimal__contact {
    text-align: right;
}

@media screen and (max-width: 990px) {
    .footer-minimal__contact {
        text-align: center;
    }
}

.footer-minimal__email {
    display: block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    transition: opacity 0.3s ease;
    font-family: var(--font-body);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    display: inline-block;
}

.footer-minimal__email:hover {
    opacity: 0.8;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer-minimal__location {
    font-size: 1.4rem;
    opacity: 0.85;
    margin: 0;
    font-family: var(--font-body);
}

/* Divider */
.footer-minimal__divider {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent);
    margin: var(--spacing-xl) 0;
}

/* Bottom Section */
.footer-minimal__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .footer-minimal__bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

.footer-minimal__copyright {
    margin: 0;
    font-family: var(--font-body);
}

.footer-minimal__legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-minimal__legal-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-minimal__legal-link:hover {
    opacity: 0.7;
}

.footer-minimal__separator {
    opacity: 0.5;
}