/*
Theme Name: IgniPoint
Theme URI: https://ignipoint.com
Author: Daniel Nanghaka
Description: IgniPoint Venture Platform Theme
Version: 1.0
*/

/* ============================= */
/* GLOBAL SMOOTHNESS */
/* ============================= */

* {
    transition: all 0.25s ease;
}

/* ============================= */
/* FOOTER LINKS (PREMIUM FEEL) */
/* ============================= */

footer a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* subtle lift + color refinement */
footer a:hover {
    transform: translateY(-2px);
    color: #4ade80; /* Tailwind green-400 */
}

/* subtle underline animation */
footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #4ade80;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* ============================= */
/* BUTTON POLISH */
/* ============================= */

a.bg-green-600:hover {
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.25);
}

/* ============================= */
/* GLASS EFFECT ENHANCEMENT */
/* ============================= */

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ============================= */
/* TYPOGRAPHY TWEAK */
/* ============================= */

h1, h2, h3 {
    letter-spacing: -0.5px;
}