/* ==========================================================
   FOOTER SECTION STYLES
   Handles gradient background, footer links, buttons, and icons
   ========================================================== */

/* ---------- Main Footer Background ---------- */
.footer-gradient {
    background: linear-gradient(180deg, #130628 0%, #1a0b2f 100%);
    color: #fff;
}

/* ---------- Footer Links ---------- */
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* ---------- Social Media Icons ---------- */
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Hover Effect for Social Icons */
.social-icon:hover {
    background: #fff;
    color: #5f2eea; /* Accent Purple */
}

/* ---------- Gradient Button ---------- */
.footer-btn-gradient {
    background: linear-gradient(90deg, #a259ff 0%, #ff61a6 100%);
    color: #fff;
    border: none;
    transition: opacity 0.3s ease;
}

.footer-btn-gradient:hover {
    opacity: 0.9;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
    .footer-gradient {
        text-align: center;
    }

    .social-icon {
        margin: 0 auto;
    }
}
