/* ===========================================
   TAZAWA SHIGURE - Global Styles
   =========================================== */

/* Color hierarchy:
   - Headings:      neutral-100 / neutral-50
   - Body text:     neutral-400
   - Captions:      neutral-400
   - Muted/meta:    neutral-500
   - Links:         neutral-400, hover: neutral-300
   - Borders:       neutral-800
   - Backgrounds:   neutral-950, neutral-900
*/

/* Film grain overlay */
.grain-overlay,
.ink-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Base body */
body {
    background-color: #121414;
    color: #e3e2e2;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #121414;
}
::-webkit-scrollbar-thumb {
    background: #343535;
    border-radius: 2px;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Max-width container for large screens */
@media (min-width: 1920px) {
    .container-1920 {
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* Social link style */
.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a3a3a3; /* neutral-400 */
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #d4d4d4; /* neutral-300 */
}

/* Nav link base */
.nav-link {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.5s ease;
}
.nav-link--active {
    color: #f5f5f5; /* neutral-100 */
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 0.25rem;
    opacity: 0.9;
}
.nav-link--locked {
    color: #737373; /* neutral-500 */
    opacity: 0.9;
}
.nav-link--locked:hover {
    color: #e5e5e5; /* neutral-200 */
}
