/* ========================================
   CUSTOM FOOTER - MINIMAL BOTANICAL
   ======================================== */

:root {
    --footer-bg: #F9F9F9;
    --footer-text: #1A1A1A;
    --footer-text-muted: rgba(0, 0, 0, 0.6);
    --footer-accent: #B8860B;
    /* Soft gold */
    --footer-border: rgba(0, 0, 0, 0.08);
}

.custom-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 100px 60px 40px;
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100%;
    min-height: 655px;
    /* User requested 655px height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* 4-Column Grid */
.custom-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Brand Column */
.custom-footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.custom-footer-brand .footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: var(--footer-text-muted);
    margin-bottom: 35px;
    max-width: 280px;
    display: block;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--footer-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    border-color: var(--footer-accent);
    color: var(--footer-accent);
    transform: translateY(-3px);
}

/* Link Columns */
.footer-col-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 14px;
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
    /* Consistent gray hover */
}

/* Newsletter Section */
.custom-footer-newsletter {
    border-top: 1px solid var(--footer-border);
    padding-top: 60px;
    margin-bottom: 60px;
}

.newsletter-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid var(--footer-border);
    border-right: none;
    padding: 15px 20px;
    color: #000000;
    font-size: 14px;
    outline: none;
}

.newsletter-submit {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
    background-color: #333333;
}

/* Bottom Bar */
.custom-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.copyright-text {
    font-size: 12px;
    color: var(--footer-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #cccccc;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .custom-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .custom-footer {
        height: auto;
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 80px 25px 40px;
    }

    .custom-footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
        /* Left align as per screenshot */
    }

    .custom-footer-brand .footer-tagline {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .footer-social-links {
        justify-content: flex-start;
        /* Align social icons to the left */
        margin-top: 15px;
    }

    .custom-footer-newsletter {
        padding: 0px 50px 0px 0px;
        margin-bottom: 50px;
    }

    .newsletter-title {
        text-align: left;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .custom-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        /* Stack bottom bar items to the left */
        gap: 15px;
        text-align: left;
        padding-top: 30px;
        border-top: 1px solid var(--footer-border);
    }

    .footer-legal-links {
        justify-content: flex-start;
        gap: 20px;
    }
}