@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&display=swap');

:root {
    --nav-height: 5rem;
    --footer-height: 5rem;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Cormorant', serif;
    background-color: #000;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/band.jpg') center center / cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 100;
    background: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}

nav a {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav-logo img {
    height: 1rem;
    width: auto;
    vertical-align: middle;
}

/* Home - Centered Logo */
.home-container {
    min-height: calc(100dvh - var(--nav-height) - var(--footer-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-content {
    text-align: center;
    margin-top: var(--nav-height);
}

.subtitle {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
}

.logo {
    max-width: 1000px;
    width: 95%;
    height: auto;
    animation: logo-glow 8s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.6)) drop-shadow(0 0 40px rgba(255,255,255,0.3));
    }
}

/* Bio Page */
.bio-container {
    min-height: calc(100dvh - var(--nav-height) - var(--footer-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
}

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

.bio-image {
    max-width: 70px;
    height: auto;
    margin-bottom: 2rem;
}

.bio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.bio-text {
    max-width: 700px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
    text-align: center;
    font-style: italic;
}

.bio-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.lang-label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.4;
}

/* Contact Page */
.contact-container {
    min-height: calc(100dvh - var(--nav-height) - var(--footer-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.contact-info {
    font-size: 1.2rem;
    font-weight: 300;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 300;
}

.contact-detail {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-left: 0.5rem;
}

/* Page Layout */
.page-container {
    min-height: calc(100dvh - var(--nav-height) - var(--footer-height));
    padding: 8rem 2rem 5.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

/* Separator */
.separator {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem auto;
}

/* Releases */
.releases-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

.release-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.release-cover {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.release-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    border-radius: 4px;
}

.release-cover:hover::after {
    background: rgba(128, 128, 128, 0.15);
}

.release-cover img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.cover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.release-cover:hover .cover-icon {
    opacity: 1;
}

.release-info {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.release-main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.release-extra {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.release-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.release-year {
    font-size: 0.9rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-top: -0.3rem;
}

.release-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

.release-video {
    display: inline-block;
    font-size: 0.75rem;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 5px;
}

.release-video i {
    margin-right: 0.4rem;
}

.release-credit {
    font-size: 0.7rem;
    opacity: 0.4;
}

/* Shows */
.shows-list {
    list-style: none;
    margin-bottom: 2rem;
}

.show-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.show-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.show-date {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.show-venue {
    font-size: 1.3rem;
    font-weight: 400;
}

.show-location {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 0.3rem;
}

.show-tickets {
    text-align: right;
}

.ticket-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

/* No shows / loading message */
.no-shows,
.loading-shows {
    text-align: center;
    opacity: 0.6;
    font-size: 1.2rem;
    font-style: italic;
}

/* Section title */
.section-title {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    text-align: center;
}

/* Past shows */
.past-section-title {
    margin-top: 0;
}

.past-shows {
    opacity: 0.5;
}

.past-shows .show-item {
    grid-template-columns: 1fr 2fr;
    padding: 1rem 0;
}

.past-shows .show-date {
    font-size: 0.9rem;
}

.past-shows .show-venue {
    font-size: 1rem;
}

.past-shows .show-location {
    font-size: 0.8rem;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(to top, #000 0%, #000 60%, transparent 100%);
}

footer a {
    font-size: 1.4rem;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
        gap: 2.5rem;
    }

    nav a {
        font-size: 1rem;
    }

    .logo {
        max-width: 700px;
    }

    footer {
        gap: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    nav {
        padding: 1.2rem 1rem;
        gap: 0.8rem 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .home-container {
        padding: 0 1rem;
    }

    .logo {
        max-width: 100%;
        width: 100%;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .bio-container {
        padding: 0 1.5rem;
    }

    .bio-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .page-container {
        padding: 4rem 1.5rem 5rem;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        letter-spacing: 0.15em;
    }

    .show-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 0.9rem;
    }

    .no-shows,
    .loading-shows {
        font-size: 0.9rem;
    }

    .show-tickets {
        text-align: center;
    }

    .show-date {
        font-size: 1rem;
    }

    .show-venue {
        font-size: 1.1rem;
    }

    .release-item {
        flex-direction: column;
        text-align: center;
    }

    .release-cover img {
        width: 200px;
        height: 200px;
    }

    footer {
        padding: 1.5rem 1rem;
        gap: 2.5rem;
    }

    footer a {
        font-size: 1.8rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 0.5rem;
        gap: 0.5rem 0.8rem;
    }

    nav a {
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 0.8rem;
    }

    footer {
        gap: 1.8rem;
    }

    footer a {
        font-size: 1.3rem;
    }
}

/* Responsive - Extra Small Mobile */
@media (max-width: 320px) {
    nav a {
        font-size: 0.65rem;
    }
}
