/* FOOTER */
.site-footer {
    background: #ffffff; /* clean wedding white */
    color: #333333;      /* soft charcoal */
    padding: 20px 40px 30px;
    border-top: 1px solid #f2e8f7; /* soft pink-gold divider */
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* BRAND */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #d100a8; /* magenta to match brand */
}

.footer-tagline {
    color: #ff66c4; /* soft pink accent */
    margin-top: 8px;
}

.footer-brand img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0 0;
}

/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #333333; /* charcoal headings */
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-social a {
    color: #333333; /* charcoal links */
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #d100a8; /* magenta hover */
}

/* CONTACT */
.footer-contact a {
    color: #333333;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ff66c4; /* soft pink hover */
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #f2e8f7; /* soft divider */
    padding-top: 20px;
    color: #666666; /* gentle grey */
    font-size: 14px;
}
