/* ==========================================
   PORTFOLIO FOOTER (DARK GLASS STYLE)
========================================== */

.portfolio-footer {
    position: relative;

    background: #0b0c10;

    color: white;

    padding: 70px 0 30px;

    overflow: hidden;

    border-top: 1px solid rgba(244, 187, 0, 0.08);
}

/* subtle glow layer */
.footer-glow {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(173,20,20,0.10), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(244,187,0,0.08), transparent 45%);

    pointer-events: none;
}

/* ==========================================
   BRAND
========================================== */

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;

    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-soft)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 10px;
}

.footer-text {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-socials {
    display: flex;
    gap: 12px;

    margin-top: 15px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(244,187,0,0.1);

    color: rgba(255,255,255,0.7);

    transition: all 0.25s ease;
}

.footer-socials a:hover {
    color: var(--color-gold);

    background: rgba(244,187,0,0.08);

    box-shadow: 0 0 18px rgba(244,187,0,0.15);

    transform: translateY(-2px);
}

/* ==========================================
   FOOTER HEADINGS
========================================== */

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 14px;

    color: var(--color-gold);
}

/* ==========================================
   LINKS
========================================== */

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;

    color: rgba(255,255,255,0.65);
}

.footer-links a {
    color: rgba(255,255,255,0.65);

    text-decoration: none;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

/* ==========================================
   BOTTOM BAR
========================================== */

.footer-bottom {
    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.06);

    text-align: center;

    color: rgba(255,255,255,0.45);

    font-size: 0.9rem;
}