@charset "utf-8";

/* ============================================
   VISUAL EFFECTS
   ============================================ */

/* Hover lift effect */
.effect-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.effect-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Gradient text */
.effect-gradient-text {
    background: linear-gradient(135deg, #17378a, #1e4db5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass effect */
.effect-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Ripple button effect */
.effect-ripple {
    position: relative;
    overflow: hidden;
}

.effect-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.effect-ripple:active::after {
    width: 200px;
    height: 200px;
}

/* Underline animation on hover */
.effect-underline {
    position: relative;
    display: inline-block;
}

.effect-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #17378a;
    transition: width 0.3s ease;
}

.effect-underline:hover::after {
    width: 100%;
}

/* Image overlay */
.effect-overlay {
    position: relative;
    overflow: hidden;
}

.effect-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

/* Card shadow */
.effect-card-shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.effect-card-shadow:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Shine effect */
.effect-shine {
    position: relative;
    overflow: hidden;
}

.effect-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.effect-shine:hover::before {
    left: 100%;
}
