/* base.css */
body {
    font-family: var(--font-body-jp);
    background-color: var(--color-deep-navy);
    color: var(--color-off-white);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    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.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading-jp);
    font-weight: 400;
    letter-spacing: 0.1em;
}

a {
    transition: var(--transition-smooth);
}

a:hover {
    opacity: 0.7;
}

.en {
    font-family: var(--font-body-en);
}

.artist-name {
    font-family: var(--font-artist);
    font-weight: 300;
    letter-spacing: 0.15em;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-deep-navy);
    z-index: 9999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.page-transition.loaded {
    opacity: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}