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

body {
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    body {
        flex-direction: row;
        gap: 60px;
        justify-content: center;
    }
}

nav {
    margin-bottom: 40px;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
}

nav a {
    color: black;
    text-decoration: none;
    position: relative;
}

nav a::before {
    content: attr(data-text);
    font-weight: bold;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    display: block;
}

nav a:hover {
    text-decoration: underline;
}

nav a.active {
    font-weight: bold;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.music-item {
    margin-bottom: 40px;
    text-align: center;
}

.music-item .year {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.music-item .artist {
    margin-bottom: 3px;
    font-weight: bold;
}

.music-item .album {
    margin-bottom: 3px;
    font-style: italic !important;
}

.music-item .label {
    margin-bottom: 10px;
}

.music-item .label a {
    color: black;
}

.music-item .tracks {
    margin-top: 10px;
}

.music-item .track-name {
    margin-bottom: 5px;
}

.music-item iframe {
    margin-bottom: 10px;
}

.video-item {
    margin-bottom: 40px;
    text-align: center;
}

.video-item .year {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.video-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.video-container iframe {
    max-width: 100%;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    opacity: 0.7;
}

.main-wrapper {
    flex: 1;
    min-width: 0;
    max-width: 800px;
    width: 100%;
}

.sidebar-text {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar-text {
        display: block;
        font-family: 'Allura', cursive;
        font-size: 5em;
        font-weight: normal;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
        position: fixed;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.trail-letter {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-family: 'Allura', cursive;
    font-size: 1.2em;
    color: black;
    transform: translate(-50%, -50%);
    animation: letterFade 0.6s ease-out forwards;
}

@keyframes letterFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
