/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
}

/* Hamburger Menu */
.hamburger-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    margin: 0.25rem 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hamburger-menu.visible {
    opacity: 1;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: #fff;
    padding: 8px;
    box-sizing: content-box;
    border-radius: 4px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    list-style: none;
    padding: 0.75rem 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    margin-top: 0.5rem;
}

.menu-toggle:checked ~ .menu-list {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    color: #000;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.menu-list a:hover {
    color: #666;
}

/* Snap Scroll */
html, body.snap-scroll {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html, body.snap-scroll {
        scroll-behavior: smooth;
    }
}

/* Full Page Sections */
.page {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 2rem 1.5rem;
    padding-bottom: 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.page-content {
    max-width: 800px;
    width: 100%;
    padding: 1rem 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Hero + Release Combined Section */
.hero-release {
    justify-content: flex-start;
    padding: 0.5rem 1rem;
    padding-top: 0.5rem;
}

.hero-release-content {
    text-align: center;
    width: 100%;
    max-width: 900px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hero-top {
    margin-bottom: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.logo-small-hero {
    max-width: 80%;
    width: 120px;
    height: auto;
}

.site-title-small {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
    color: #000;
}

.logo-text-hero {
    width: 100px;
    height: auto;
    margin-top: 0.25rem;
}

.tagline-small {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .hero-release {
        justify-content: flex-start;
        padding: 1rem 1.5rem;
    }
    .logo-small-hero {
        width: 300px;
    }
    .logo-text-hero {
        width: 180px;
        margin-top: 0.5rem;
    }
    .site-title-small {
        font-size: 1.25rem;
        margin-top: 0.5rem;
    }
    .tagline-small {
        font-size: 0.75rem;
    }
    .hero-top {
        margin-bottom: 1rem;
    }
}

/* Original Hero Section (kept for reference) */
.hero {
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.logo {
    max-width: 90%;
    width: 240px;
    height: auto;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
    color: #000;
}

.tagline {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .logo {
        width: 300px;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    opacity: 0.4;
    cursor: pointer;
}

.scroll-arrow:hover {
    opacity: 0.8;
}

/* Hide arrow on last section */
.contact .scroll-arrow {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
h2 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #666;
}

/* Featured Release + Links Combined */
.featured-combined .page-content {
    max-width: 900px;
}

/* Mobile: vertical stack, artwork fills middle, buttons at bottom */
.combined-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.release-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.links-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.release-side h2 {
    margin-bottom: 0.1rem;
    font-size: 0.5rem;
    flex-shrink: 0;
}

.links-side h2 {
    margin-bottom: 0.1rem;
    font-size: 0.45rem;
}

.links-side h2:not(:first-child) {
    margin-top: 0.1rem;
}

/* Desktop: side by side */
@media (min-width: 768px) {
    .combined-layout {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    .release-side {
        flex: 1;
        max-width: 350px;
    }
    .release-side h2 {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    .links-side {
        flex: 1;
        max-width: 350px;
        padding-top: 0;
    }
    .links-side h2 {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    .links-side h2:not(:first-child) {
        margin-top: 0.75rem;
    }
}

.release-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.link-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.2rem;
    align-content: center;
    width: 100%;
}

.link-grid-compact .link-button {
    padding: 0.2rem 0.15rem;
    font-size: 0.4rem;
    min-height: 22px;
    gap: 0.15rem;
}

.link-grid-compact .link-button i {
    font-size: 0.5rem;
}

@media (min-width: 768px) {
    .link-grid-compact {
        gap: 0.5rem;
    }

    .link-grid-compact .link-button {
        padding: 0.6rem 0.75rem;
        font-size: 0.65rem;
        min-height: auto;
    }

    .link-grid-compact .link-button i {
        font-size: 0.875rem;
    }
}

/* Featured Release */
.featured {
    border-bottom: none;
}

.featured-release {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 600px) {
    .featured-release {
        flex-direction: row;
        align-items: flex-start;
    }
}

.release-artwork {
    width: 50vw;
    max-width: 250px;
    aspect-ratio: 1;
    flex-shrink: 1;
    margin: 0 auto 0.15rem;
    border: 1px solid #000;
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .release-artwork {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.5rem;
    }
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    text-align: center;
    flex-shrink: 0;
}

.release-info .release-title {
    font-size: 0.7rem;
    margin-bottom: 0;
}

.release-info .release-artist {
    font-size: 0.6rem;
    margin-bottom: 0;
}

.release-info .release-cat {
    font-size: 0.5rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .release-info .release-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .release-info .release-artist {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    .release-info .release-cat {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

.release-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.release-artist {
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.release-cat {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.release-embed {
    margin-top: 0.75rem;
}

.release-embed .placeholder-text {
    font-size: 0.65rem;
}

/* Releases Grid */
.releases .page-content {
    display: flex;
    flex-direction: column;
}

.release-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.embed-container {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #000;
    border-radius: 4px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.embed-container iframe {
    width: 100%;
    height: 100%;
}

.soundcloud-embed {
    min-height: 120px;
    height: 120px;
}

.youtube-embed {
    min-height: 200px;
    height: 200px;
}

.placeholder-text {
    color: #bbb;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Artists */
.artists .page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .artist-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

.artist-card {
    text-align: center;
}

.artist-image {
    width: 120%;
    max-width: 150px;
    aspect-ratio: 1;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 4px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.artist-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
}

.book-artist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: #e0e0e0;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.book-artist-btn:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.book-artist-btn i {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

/* Links */
.links {
    border-top: none;
}

.link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 500px) {
    .link-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #e0e0e0;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.link-button i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.link-button:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}


/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.15rem 0.4rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.2rem;
    font-size: 0.35rem;
    color: #666;
    order: 1;
    text-align: left;
    flex: 1;
}

.footer-mail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.08rem 0.2rem;
    background: #e0e0e0;
    color: #000;
    border: 1px solid #000;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-mail-btn:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    order: 2;
}

.footer-center p {
    font-size: 0.35rem;
    color: #999;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    font-size: 0.35rem;
    order: 3;
    flex: 1;
}

.footer-right a {
    color: #999;
    text-decoration: none;
}

.footer-right a:hover {
    color: #000;
}

.footer-logo {
    width: 20px;
    height: auto;
}

.footer-divider {
    color: #ccc;
}


@media (min-width: 768px) {
    footer {
        padding: 0.4rem 1rem;
    }

    .footer-left {
        font-size: 0.5rem;
        gap: 0.2rem;
    }

    .footer-mail-btn {
        font-size: 0.35rem;
        padding: 0.1rem 0.2rem;
    }

    .footer-center {
        gap: 0.2rem;
    }

    .footer-center p {
        font-size: 0.45rem;
    }

    .footer-logo {
        width: 35px;
    }

    .footer-right {
        font-size: 0.5rem;
        gap: 0.3rem;
    }
}

/* Legal pages */
.header-small {
    padding: 2rem 1.5rem 1rem;
}

.logo-small {
    width: 150px;
}

.legal {
    text-align: left;
}

.legal h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.legal h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: normal;
}

.legal h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal p {
    color: #444;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a {
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
}

.back-link a:hover {
    text-decoration: underline;
}

.lang-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 3rem 0;
}

/* Section styling for non-snap pages */
.section {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 3rem 2rem;
    }
}

/* Artist Modal */
.artist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.artist-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.artist-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-artist-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #000;
    margin-bottom: 1rem;
}

.modal-artist-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.modal-body {
    text-align: center;
}

.modal-bio {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.modal-links .link-button {
    padding: 0.6rem 0.75rem;
    font-size: 0.6rem;
}

/* Make artist cards clickable */
.artist-card {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.artist-card:hover {
    transform: scale(1.05);
}
