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

:root {
    --purple: #d48ce0;
    --purple-dark: #1a0a1e;
    --bg: #0d0d0d;
    --text: #f0e8f2;
    --text-dim: #a89aad;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Navbar ── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-social a {
    color: var(--text-dim);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    color: var(--purple);
}

/* ── Hero ── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Plis background.webp') center center / cover no-repeat;
    filter: brightness(0.35);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        var(--bg) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-logo {
    width: min(160px, 35vw);
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-top: -0.5rem;
    margin-bottom: 16px;
}

.hero-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: var(--purple);
}

.hero-title {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-artwork-link {
    position: relative;
    display: block;
    width: min(360px, 75vw);
    cursor: pointer;
}

.hero-artwork-link:hover .hero-artwork {
    filter: brightness(0.7);
}

.hero-artwork-link:hover .play-icon {
    opacity: 1;
}

.hero-artwork {
    width: 100%;
    border-radius: 4px;
    transition: filter 0.3s;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ── Sections ── */

.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section h2 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: var(--purple);
    margin-bottom: 3rem;
    text-align: center;
}

/* ── Shows ── */

.shows-list {
    display: flex;
    flex-direction: column;
}

.show-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    margin-right: 2rem;
}

.show-day {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}

.show-month {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-top: 0.2rem;
}

.show-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.show-venue {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.show-city {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.show-tickets {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--purple);
    border-radius: 4px;
    color: var(--purple);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: background 0.3s, color 0.3s;
}

.show-tickets:hover {
    background: var(--purple);
    color: var(--bg);
}

/* ── Music ── */

.music-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.music-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
}

/* ── Videos ── */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.video-thumb:hover img {
    filter: brightness(0.6);
}

.video-thumb:hover .play-icon {
    opacity: 1;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dim);
}

@media (max-width: 640px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Page Hero (subpages) ── */

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    background: url('Plis background.webp') center center / cover no-repeat;
    position: relative;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text);
}

/* ── Bio ── */

.bio-image {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.bio-image img {
    width: 100%;
    border-radius: 4px;
}

.bio-content {
    max-width: 680px;
    margin: 0 auto;
}

.bio-heading {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    color: var(--purple);
    margin-bottom: 2rem;
}

.bio-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

/* ── Merch ── */

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.merch-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.merch-img {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
}

.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.merch-card:hover .merch-img img {
    transform: scale(1.03);
}

.merch-name {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
}

.merch-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple);
}

.merch-cta {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.merch-cta .form-btn {
    text-decoration: none;
    align-self: center;
}

.merch-note {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 400px;
}

/* ── Contact ── */

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-input:focus {
    border-color: var(--purple);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-btn {
    padding: 0.75rem 2rem;
    border: 1px solid var(--purple);
    border-radius: 4px;
    background: none;
    color: var(--purple);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}

.form-btn:hover {
    background: var(--purple);
    color: var(--bg);
}

/* ── Media ── */

.media-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.3s;
}

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

.media-item:hover .media-title {
    color: var(--purple);
}

.media-date,
.media-source {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
    min-width: 120px;
    flex-shrink: 0;
}

.media-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    transition: color 0.3s;
}

@media (max-width: 768px) {
    .media-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .media-date,
    .media-source {
        min-width: auto;
    }

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

/* ── Tabs / Diskografija ── */

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 2rem;
    color: var(--text-dim);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
}

.tab:hover {
    color: var(--text);
}

.tab.active {
    color: var(--purple);
    border-bottom-color: var(--purple);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.lyrics-list {
    display: flex;
    flex-direction: column;
}

.lyrics-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.lyrics-item summary {
    padding: 1.2rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.lyrics-item summary:hover {
    color: var(--purple);
}

.lyrics-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: transform 0.3s;
}

.lyrics-item[open] summary::after {
    content: '-';
}

.lyrics-text {
    padding: 0 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-dim);
    white-space: pre-line;
}

/* ── EPK Button ── */

.epk-cta {
    max-width: 680px;
    margin: 3rem auto 0;
    text-align: center;
}

.epk-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--purple);
    color: var(--bg);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: background 0.3s;
}

.epk-btn:hover {
    background: #c070d0;
}

/* ── Releases ── */

.releases-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.release-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
}

.lyrics-credit {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--purple);
    font-style: italic;
}

/* ── Footer ── */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--purple);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Animation ── */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hamburger ── */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 99;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-social {
        display: none;
    }

    .nav-links.open ~ .nav-social {
        display: none;
    }

    .hero-logo {
        width: min(120px, 35vw);
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section h2 {
        margin-bottom: 2rem;
    }

    .show-date {
        min-width: 45px;
        margin-right: 1rem;
    }

    .show-day {
        font-size: 1.2rem;
    }

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

    .show-tickets {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 30vh;
    }

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

    .bio-content p {
        font-size: 0.9rem;
    }

    .merch-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-social {
        gap: 1rem;
    }
}
