/* Studio OALUM - Yarn Menu */

@font-face {
    font-family: 'GothamBook';
    src: url('/public/fonts/GothamBook.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamBold';
    src: url('/public/fonts/Gotham-Font/GothamBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    overflow: hidden;
    background: #ffffff;
    font-family: 'GothamBook', sans-serif;
}

#svg-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
}

.yarn {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    cursor: pointer;
    transition: stroke-width 0.35s ease;
}

.yarn-text {
    font-size: 33px;
    font-weight: 800;
    font-family: 'GothamBold', 'GothamBook', sans-serif;
    fill: #000;
    pointer-events: none;
    text-anchor: middle;
    dominant-baseline: central;
    text-rendering: optimizeLegibility;
}

#page-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 100;
    transform: translateX(100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .yarn-text { font-size: 24px; }
}
