/* =============================================================
   Ammy Creations — Custom Footer Styles
   Add to: wp-content/themes/YOUR-CHILD-THEME/style.css
   Or enqueue as a separate file via functions.php
   ============================================================= */

/* ── Google Font import ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── Reset Astra footer builder for our custom footer ── */
.site-footer.ac-site-footer .ast-builder-grid-row-container,
.site-footer.ac-site-footer .site-below-footer-wrap {
    display: none !important;
}

/* ── Footer shell ── */
.ac-site-footer {
    background: #0e0b08;
    color: #e8e0d4;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-top: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* ── Main 3-col grid ── */
.ac-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr;
    gap: 48px;
    padding: 56px 60px 44px;
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ── Brand column ── */
.ac-footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}

.ac-logo-link {
    display: inline-block;
    line-height: 0;
}

.ac-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin: 0 0 4px;
    line-height: 1.2;
}

.ac-brand-tagline-small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin: 0 0 16px;
}

.ac-brand-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14.5px;
    color: #b5a98a;
    line-height: 1.75;
    margin: 0 0 24px;
    max-width: 270px;
}

/* ── Social icons ── */
.ac-social-row {
    display: flex;
    gap: 10px;
    margin: 0;
}

.ac-social-btn {
    width: 36px;
    height: 36px;
    border: 0.5px solid rgba(201, 168, 76, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.ac-social-btn:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.7);
    color: #e8c96d;
}

/* ── Column headings ── */
.ac-col-heading {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin: 0 0 22px;
    padding: 0;
    border: none;
}

/* ── Nav links ── */
.ac-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ac-nav-list li {
    margin: 0;
    padding: 0;
}

.ac-nav-list a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #b5a98a;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 0.5px solid transparent;
    transition: color 0.2s ease, padding-left 0.2s ease;
    position: relative;
}

.ac-nav-list a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 0.5px;
    background: #c9a84c;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ac-nav-list a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.ac-nav-list a:hover::before {
    opacity: 1;
}

/* ── Contact items ── */
.ac-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.ac-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(201, 168, 76, 0.08);
    border: 0.5px solid rgba(201, 168, 76, 0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c9a84c;
    margin-top: 1px;
}

.ac-contact-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(181, 169, 138, 0.55);
    margin: 0 0 3px;
    font-weight: 400;
}

.ac-contact-value {
    display: block;
    font-size: 13.5px;
    font-weight: 300;
    color: #e8e0d4;
    line-height: 1.55;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s ease;
}

a.ac-contact-value:hover {
    color: #ffffff;
}

/* ── Bottom bar ── */
.ac-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 60px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ac-copyright {
    font-size: 12px;
    font-weight: 300;
    color: rgba(181, 169, 138, 0.5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ac-copyright a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.2s;
}

.ac-copyright a:hover {
    color: #e8c96d;
}

.ac-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #c9a84c;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
}

.ac-privacy-link {
    font-size: 12px;
    font-weight: 300;
    color: rgba(181, 169, 138, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.ac-privacy-link:hover {
    color: #c9a84c;
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
    .ac-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 44px 36px 36px;
    }

    .ac-footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
    }

    .ac-brand-quote {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .ac-footer-bottom {
        padding: 16px 36px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 600px) {
    .ac-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 24px 28px;
    }

    .ac-footer-brand {
        display: block;
    }

    .ac-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 24px;
    }
}