/* ==========================================================================
   FOOTER (Luxury & Corporate)
   ========================================================================== */

/* Main Footer Container */
.main-footer {
    background-color: #050814; /* Deep Navy / Black */
    color: #A0AABF; /* Light Gray/Blue tone */
    padding: 100px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

/* 4-Column Grid System */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-text-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0AABF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-socials a:hover {
    background-color: #C5A059;
    color: #050814;
    border-color: #C5A059;
    transform: translateY(-3px);
}

/* Columns 2 & 3: Links */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    color: #C5A059;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu li a {
    color: #A0AABF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-menu li a:hover {
    color: #FFFFFF;
    padding-left: 8px; /* Slight right shift on hover */
}

/* Column 4: Newsletter */
.footer-contact-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-newsletter {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}

.footer-newsletter:focus-within {
    border-bottom-color: #C5A059;
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    padding: 10px 0;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: transparent;
    border: none;
    color: #C5A059;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-newsletter button:hover {
    transform: translateX(5px);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #A0AABF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #C5A059;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */

@media (max-width: 1024px) {
    /* 2 columns on tablets */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Single column on mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-footer {
        padding: 60px 0 30px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Center align everything for small mobile screens */
    .footer-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-col, 
    .footer-contact-col {
        text-align: center;
    }

    .footer-menu li a:hover {
        padding-left: 0; /* Remove right shift on mobile to prevent layout jumping */
        color: #C5A059;
    }

    .footer-newsletter {
        max-width: 320px;
        margin: 0 auto;
    }
}