/* === GLOBAL MICRO-INTERACTIONS === */

/* --- Custom Cursor --- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #e6a95f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(230, 169, 95, 0.3);
    border: 2px solid #e6a95f;
}

/* Hide default cursor globally */
body {
    cursor: none;
}

/* Restore cursor on touch devices */
@media (pointer: coarse) {
    .custom-cursor { display: none !important; }
    body { cursor: auto !important; }
    * { cursor: auto !important; }
}

/* --- Hover Effects: Cards & Links --- */
a,
button,
input[type="submit"],
.journal-card,
.release-card,
.social-icon,
.view-more-button,
.release-play-btn,
.footer-nav-list a,
.footer-social-icons a,
.contact-social a,
.header-menu-trigger,
.header-cta,
.header-logo-link {
    cursor: none;
}

/* Card hover lift + glow */
.journal-card,
.release-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journal-card:hover,
.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 169, 95, 0.15);
    border-color: rgba(230, 169, 95, 0.4);
}

/* Social icon hover */
.social-icons a,
.footer-social-icons a,
.contact-social a {
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover,
.footer-social-icons a:hover {
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(230, 169, 95, 0.5));
}

/* Button hover glow */
input[type="submit"],
.view-more-button,
.header-cta {
    transition: all 0.3s ease;
}
