/* 
 * SOSAA BEAUTY - LUXURY PHYSICS ENGINE (BLUSH GOLD VARIANT)
 */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Classes (Light Mode) */
.glass-nav {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Custom Cursor (Deep Black) */
.cursor {
    width: 6px;
    height: 6px;
    background-color: #111111;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(17, 17, 17, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Scroll Animations */
.reveal-text, .reveal-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.active, .reveal-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax and Tilt handles in JS */
.tilt {
    transform-style: preserve-3d;
}
