/* ══════════════════════════════════════
   FOOTER  —  dark navy, Image-2 style
══════════════════════════════════════ */
.site-footer {
    background: linear-gradient(160deg, #0a1f4d 0%, #0d2b6b 60%, #0f2e70 100%);
    color: #d0e2f4;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.site-footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ── Grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

/* ── Brand column ── */
.footer-tagline {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #FF6C00;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-address {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    color: #c8ddef;
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-address i {
    color: #FF6C00;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Social icons ── */
.footer-social {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(97, 185, 240, .12);
    border: 1px solid rgba(97, 185, 240, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #c8ddef;
    font-size: 1rem;
    transition: all .25s;
    text-decoration: none;
}

.social-link:hover {
    background: #FF6C00;
    border-color: #FF6C00;
    color: #fff;
    transform: translateY(-3px);
}

/* ── Section headings ── */
.footer-heading {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-blue  { background: #3399ff; }
.dot-orange { background: #FF6C00; }

/* ── Campus links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .55rem;
    font-size: .88rem;
    color: #c8ddef;
}

.footer-links i {
    color: rgba(97, 185, 240, .55);
    font-size: .85rem;
    flex-shrink: 0;
}

.footer-links a {
    color: #c8ddef;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: #61B9F0;
}

/* ── Contact list ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .65rem;
    color: #c8ddef;
    font-size: .88rem;
}

.footer-contact i {
    color: #FF6C00;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Club type / news-type pills ── */
.footer-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.footer-tag {
    padding: .3rem .85rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
}

.footer-tag:hover { opacity: .8; }

.tag-blue  { background: rgba(51,153,255,.18); color: #61B9F0; border: 1px solid rgba(51,153,255,.3); }
.tag-star  { background: rgba(255,180,0,.15);  color: #ffc94d; border: 1px solid rgba(255,180,0,.3); }
.tag-fire  { background: rgba(255,80,50,.15);  color: #ff7055; border: 1px solid rgba(255,80,50,.3); }

/* ══════════════════════════════════════
   TOPICS / TAGS SECTION
══════════════════════════════════════ */
.footer-topics {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.topics-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #FF6C00;
    text-transform: uppercase;
    white-space: nowrap;
    padding-top: .3rem;
}

.topics-label i {
    margin-right: .3rem;
}

.topics-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.topic-tag {
    padding: .3rem .85rem;
    border: 1px solid rgba(97,185,240,.22);
    border-radius: 20px;
    font-size: .8rem;
    color: #c8ddef;
    text-decoration: none;
    background: rgba(97,185,240,.06);
    transition: all .2s;
}

.topic-tag:hover {
    background: rgba(97,185,240,.18);
    color: #fff;
    border-color: rgba(97,185,240,.5);
}

/* ══════════════════════════════════════
   BOTTOM BAR
══════════════════════════════════════ */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #8aaecb;
    margin: 0;
    font-size: .85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
}

.footer-bottom-links a {
    color: #61B9F0;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover { color: #fff; }

.separator {
    color: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-topics {
        flex-direction: column;
    }
}