﻿/* ════════════════════════════════════════════════════════════
   FOOTER.CSS  —  Wyaah v3
   Palette : Charcoal #1A1A1A · Gold #C9963A · White text
   ════════════════════════════════════════════════════════════ */

:root {
    --ft-bg:      #1A1A1A;
    --ft-bg-2:    #242424;
    --ft-sep:     rgba(255,255,255,.08);
    --ft-gold:    #C9963A;
    --ft-gold-lt: #E5B96A;
    --ft-h:       #FFFFFF;
    --ft-b:       rgba(255,255,255,.75);
    --ft-m:       rgba(255,255,255,.5);
    --ft-dim:     rgba(255,255,255,.35);
    --ft-t:       .3s cubic-bezier(.4,0,.2,1);
}

.ft {
    background: var(--ft-bg);
    color: var(--ft-b);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Main Top Section ─────────────────────────────────────── */
.ft-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--ft-sep);
}
.ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 1024px) { .ft-container { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 640px)  { .ft-container { grid-template-columns: 1fr; padding: 0 20px; } }

/* ── Column 1: Brand ──────────────────────────────────────── */
.ft-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
    opacity: .88;
    transition: opacity var(--ft-t);
}
.ft-logo:hover { opacity: 1; }

.ft-brand-desc {
    font-size: 14px;
    color: var(--ft-m);
    line-height: 1.75;
    max-width: 240px;
    margin-bottom: 24px;
}

.ft-socials { display: flex; gap: 10px; }
.ft-social {
    width: 38px; height: 38px;
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--ft-sep);
    display: flex; align-items: center; justify-content: center;
    color: var(--ft-m);
    text-decoration: none;
    transition: background var(--ft-t), border-color var(--ft-t), color var(--ft-t), transform var(--ft-t);
}
.ft-social:hover {
    background: var(--ft-gold);
    border-color: var(--ft-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Column Headers ───────────────────────────────────────── */
.ft-col-head {
    font-size: 13px;
    font-weight: 600;
    color: var(--ft-h);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

/* ── Link Lists ───────────────────────────────────────────── */
.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ft-links a {
    font-size: 14px;
    color: var(--ft-m);
    text-decoration: none;
    transition: color var(--ft-t);
}
.ft-links a:hover { color: var(--ft-gold-lt); }

/* ── Column 3: Contact ────────────────────────────────────── */
.ft-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ft-ci-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--ft-m);
}
.ft-ci-item svg { stroke: var(--ft-gold); flex-shrink: 0; margin-top: 2px; }
.ft-ci-item a {
    color: var(--ft-m);
    text-decoration: none;
    transition: color var(--ft-t);
}
.ft-ci-item a:hover { color: var(--ft-gold-lt); }

/* ── Column 4: Newsletter ─────────────────────────────────── */
.ft-nl-desc {
    font-size: 14px;
    color: var(--ft-m);
    line-height: 1.7;
    margin-bottom: 20px;
}
.ft-nl-form {
    display: flex;
    gap: 0;
}
.ft-nl-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color var(--ft-t);
}
.ft-nl-input::placeholder { color: rgba(255,255,255,.3); }
.ft-nl-input:focus { border-color: var(--ft-gold); }
.ft-nl-btn {
    padding: 12px 18px;
    background: var(--ft-gold);
    border: none;
    border-radius: 0 6px 6px 0;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: background var(--ft-t);
    white-space: nowrap;
}
.ft-nl-btn:hover { background: #B5842E; }
.ft-nl-note {
    font-size: 12px;
    color: var(--ft-dim);
    margin-top: 12px;
    line-height: 1.6;
}
.ft-nl-note a { color: var(--ft-dim); text-decoration: underline; transition: color var(--ft-t); }
.ft-nl-note a:hover { color: var(--ft-gold); }

/* ── Bottom Bar ───────────────────────────────────────────── */
.ft-bottom {
    padding: 22px 0;
}
.ft-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 640px) {
    .ft-bottom-inner { flex-direction: column; text-align: center; padding: 0 20px; }
    .ft-bottom-links { flex-wrap: wrap; justify-content: center; }
}

.ft-copy { font-size: 13px; color: var(--ft-dim); }
.ft-copy strong { color: var(--ft-b); font-weight: 600; }

.ft-bottom-links {
    display: flex;
    gap: 24px;
}
.ft-bottom-links a {
    font-size: 13px;
    color: var(--ft-dim);
    text-decoration: none;
    transition: color var(--ft-t);
}
.ft-bottom-links a:hover { color: var(--ft-gold-lt); }

/* Scroll-to-top button */
#stt-btn {
    background: linear-gradient(135deg, #7D0D26, #B5143A) !important;
    box-shadow: 0 6px 22px rgba(181,20,58,.4) !important;
}
#stt-btn:hover { opacity: .88; }

