
/* ========================================
   LX FOOTER STYLES
   ======================================== */
.lx-footer {
    background-color: #050505; /* Deep luxury black */
    color: #ffffff; margin-top:30px;
    padding: 60px 20px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator line */
}

/* The Main Grid Container */
.lx-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 48px;
    padding-bottom: 48px;  }

/* -- Column 1: Brand -- */
.footer-logo {
    width: 95px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #A1A1AA; /* Zinc-400 */
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%; /* Makes them cool circles */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-link img {
    width: 20px;
    height: auto;
    transition: filter 0.3s ease;
}

.social-icon-link:hover {
    background-color: #ffffff;
    transform: translateY(-3px); /* Lifts up on hover */
}

.social-icon-link:hover img {
    filter: invert(1); /* Flips icon color on hover */
}

/* -- Columns 2 & 3: Links -- */
.footer-heading {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-muted {
    color: #A1A1AA;
}

.footer-link-list a {
    color: #A1A1AA;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-link-list a:hover {
    color: #ffffff; /* Lights up on hover */
}

/* -- Bottom Bar -- */
.lx-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #71717A; /* Zinc-500 */
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE Footer (TABLET & DESKTOP)
   ======================================== */
@media (min-width: 768px) {
    .lx-footer-content {
        /* Tablet: 2 columns */
        grid-template-columns: 2fr 1fr 1fr 1fr; padding:20px;
    }

        .lx-footer-bottom {
        text-align: left; /* Aligns left on bigger screens */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1100px) {
    .lx-footer-content {
        /* Desktop: 3 columns. Brand takes up more space */
        grid-template-columns: 2fr 1fr 1fr 1zzzzzfr; 
        padding:20px;
    }
    
    .lx-footer-bottom {
        text-align: left; /* Aligns left on bigger screens */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
