.elementor-1179 .elementor-element.elementor-element-6b2a911{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f24b79d *//* ==========================================================================
   TREAT & GLOW: LUXURY FOOTER
   ========================================================================== */

.footer {
     /* Soft cream/white to ground the page */
    padding: 80px 5% 30px 5%;
    border-top: 1px solid rgba(197, 160, 89, 0.2); /* Delicate Treat & Glow gold line */
    font-family: 'Montserrat', sans-serif;
    color: #444444;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    gap: 40px;
}

/* BRANDING SECTION */
.footer-brand {
    flex: 1 1 350px; /* Takes up a bit more space for the logo */
}

.footer-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: #1A1A1A;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    max-width: 280px;
    margin: 0;
}

/* LINKS SECTION */
.footer-links {
    flex: 1 1 200px;
}

.footer-links h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #C5A059; /* Butterfly Gold */
    font-weight: 700;
    margin: 0 0 25px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: #444444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block; /* Required for the transform effect */
}

/* Elegant Hover Effect: Changes to gold and slides slightly right */
.footer-links ul li a:hover {
    color: #C5A059;
    transform: translateX(6px); 
}

/* BOTTOM BAR */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #999999;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

/* RESPONSIVE DESIGN FOR MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    /* Change hover effect on mobile to a vertical lift since text is centered */
    .footer-links ul li a:hover {
        transform: translateY(-2px);
    }
}/* End custom CSS */