/* 
   living-editorial.css
   Premium Animated Agency Redesign
   High-contrast, typography-focused design system.
*/

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #0a0a0a;
    --text-primary: #0a0a0a;
    --text-secondary: #ffffff;
    --accent: #b7ff00;
    /* Neon Lime Green */
    --font-display: 'Inter', sans-serif;
    --font-narrative: 'Playfair Display', serif;
}

/* Base Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Smooth Scroll Container */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

/* Typography Overrides */
h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.narrative-italic {
    font-family: var(--font-narrative);
    font-style: italic;
    font-weight: 400;
}

/* Luxury Accents */
.border-premium {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* GSAP Reveal States */
[data-animation="reveal"] {
    opacity: 0;
    transform: translateY(30px);
}

.char {
    display: inline-block;
}

.word {
    display: inline-block;
    white-space: nowrap;
}

/* Magnetic Interaction */
.magnetic-wrap {
    display: inline-block;
    padding: 20px;
    margin: -20px;
}

/* Image Parallax */
.parallax-box {
    overflow: hidden;
}

.parallax-box img {
    scale: 1.25;
}