/* ═══════════════════════════════════════════
   AL-NAHL ORGANIC — Footer Stylesheet
   Covers: site-footer, footer-inner grid,
           brand, links, contact, newsletter,
           social icons, footer-bottom
═══════════════════════════════════════════ */

/* ══════════════════════════════════════
   SITE FOOTER (wrapper)
══════════════════════════════════════ */
.site-footer {
    background: var(--bark);
    color: rgba(255,255,255,0.75);
    padding-top: 5rem;
}

/* ══════════════════════════════════════
   FOOTER INNER GRID
══════════════════════════════════════ */
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.8fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════
   FOOTER BRAND COLUMN
══════════════════════════════════════ */
.footer-brand .logo { margin-bottom: 1.2rem; }

/* Override logo colours inside dark footer */
.footer-brand .logo-text,
.footer-brand .logo-icon { color: #fff; }
.footer-brand .logo-sub  { color: var(--honey-light); }

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   SOCIAL ICONS
══════════════════════════════════════ */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-socials a:hover {
    border-color: var(--honey);
    color: var(--honey);
}

/* ══════════════════════════════════════
   FOOTER LINK COLUMNS
══════════════════════════════════════ */
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--honey-light); }

/* ══════════════════════════════════════
   FOOTER CONTACT COLUMN
══════════════════════════════════════ */
.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.footer-contact p svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact a:hover { color: var(--honey-light); }

/* ══════════════════════════════════════
   NEWSLETTER FORM
══════════════════════════════════════ */
.footer-newsletter { margin-top: 1.5rem; }

.newsletter-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.65em 0.9em;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.82rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
    background: var(--honey);
    border: none;
    padding: 0 1rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--honey-dark); }

/* ══════════════════════════════════════
   FOOTER BOTTOM BAR
══════════════════════════════════════ */
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   RESPONSIVE — FOOTER
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
