.main-footer {
    position: relative;
    overflow: hidden;
    color: #eaeaea;
    font-family: Cambria, "Times New Roman", serif;
}

/* Background Image */
.footer-bg {
    position: absolute;
    inset: 0;
    background: url("../images/lux2.jpg") center / cover no-repeat;
    filter: blur(1.5px) brightness(0.6);
    transform: scale(1.1);
    z-index: 1;
}

/* Dark Overlay */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.85)
    );
    z-index: 2;
}

/* Content */
.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-column h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-column li:hover {
    color: #f2b874;
}

/* Bottom bar */
.footer-bottom {
    position: relative;
    z-index: 3;
    text-align: center;
    background: rgba(0,0,0,0.85);
    padding: 15px;
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
