/*
 * Bella Beauty – Landing Page Footer Styles
 * Hello Elementor Child Theme
 * Minimal · Centered · Professional
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── CSS Variables ───────────────────────────────── */
:root {
    --bella-charcoal:    #1e1e1e;
    --bella-rose:        #c9847a;
    --bella-rose-light:  rgba(201, 132, 122, 0.18);
    --bella-white:       #ffffff;
    --bella-font-body:   'Jost', sans-serif;
    --bella-font-display: "Cormorant Garamond", Georgia, serif;
    --bella-transition:  0.22s ease;
}

/* ─── Footer Wrapper ──────────────────────────────── */
.bella-footer {
    background-color: var(--bella-charcoal);
    font-family: var(--bella-font-body);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    text-align: center;
}

/* ─── Decorative Top Divider ──────────────────────── */
.bella-footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(201, 132, 122, 0.35) 30%,
        rgba(201, 132, 122, 0.60) 50%,
        rgba(201, 132, 122, 0.35) 70%,
        transparent 100%
    );
}

/* ─── Inner Container ─────────────────────────────── */
.bella-footer__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

/* ─── Short Rose Separator ────────────────────────── */
.bella-footer__sep {
    width: 32px;
    height: 1px;
    background: rgba(201, 132, 122, 0.45);
    flex-shrink: 0;
}

/* ─── Logo ────────────────────────────────────────── */
.bella-footer__logo-link {
    display: inline-block;
    text-decoration: none;
}

.bella-footer__logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.bella-footer__logo-text {
    font-family: var(--bella-font-display);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: var(--bella-white);
    letter-spacing: 1px;
    line-height: 1;
}

/* ─── Tagline ─────────────────────────────────────── */
.bella-footer__tagline {
    font-family: var(--bella-font-body);
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}

/* ─── Navigation Links (inline) ──────────────────── */
.bella-footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
    row-gap: 8px;
}

.bella-footer__nav a {
    font-family: var(--bella-font-body);
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    padding: 0 10px;
    transition: color var(--bella-transition);
}

.bella-footer__nav a:hover {
    color: var(--bella-rose);
}

.bella-footer__dot {
    color: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    line-height: 1;
    user-select: none;
}

/* ─── Social Icons ────────────────────────────────── */
.bella-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

.bella-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition:
        background-color var(--bella-transition),
        border-color var(--bella-transition),
        color var(--bella-transition),
        transform 0.18s ease;
}

.bella-social-icon svg {
    width: 13px;
    height: 13px;
}

.bella-social-icon:hover {
    background-color: var(--bella-rose-light);
    border-color: var(--bella-rose);
    color: var(--bella-rose);
    transform: translateY(-2px);
}

/* ─── Copyright ───────────────────────────────────── */
.bella-footer__copyright {
    font-family: var(--bella-font-body);
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    letter-spacing: 0.3px;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 600px) {
    .bella-footer__inner {
        padding: 40px 20px 32px;
        gap: 18px;
    }

    .bella-footer__logo-text {
        font-size: 26px;
    }

    .bella-footer__nav a {
        font-size: 12px;
        padding: 0 8px;
    }

    .bella-social-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 380px) {
    .bella-footer__nav {
        gap: 4px 0;
    }

    .bella-footer__nav a {
        padding: 0 6px;
    }

    .bella-footer__tagline {
        letter-spacing: 1.8px;
        font-size: 10.5px;
    }
}