/* =========================================
   DARKPOET | Design System & Vibe Variables
   ========================================= */
:root {
    /* Színek */
    --bg-color: #050505;
    --bg-nav: rgba(5, 5, 5, 0.88);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --surface-color: rgba(25, 25, 25, 0.65);
    --surface-hover: rgba(40, 40, 40, 0.85);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Platform Akcentus Színek */
    --spotify-color: #1DB954;
    --youtube-color: #FF0000;
    --apple-color: #fa243c;
    --vevo-color: #FF0000;

    /* Tipográfia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Térközök és Lekerekítés */
    --radius-bento: 16px;
    --radius-album: 12px;
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* =========================================
   Alapbeállítások (Reset & Base)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* =========================================
   Navigáció
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 18px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 3.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: clamp(0.04em, 1.2vw, 0.1em);
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 1;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.nav-contact-btn {
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.nav-contact-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   Háttérkép és Atmoszféra
   ========================================= */
.hero-image-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('background.jpg'); 
    background-size: cover;
    background-position: center 80px;
    background-repeat: no-repeat;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.45) 0%, rgba(5, 5, 5, 0.85) 55%, rgba(5, 5, 5, 1) 95%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 90px;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 24px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: clamp(1.3rem, 3.2vw, 2rem);
    color: #fff;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.divider {
    width: 70px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
}

.description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 28px;
}

/* VEVO Banner a főoldalon */
.vevo-notice-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.vevo-notice-banner:hover {
    background: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.vevo-badge {
    background: var(--vevo-color);
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: sans-serif;
}

.vevo-notice-text {
    font-weight: 400;
}

/* =========================================
   Általános Szekció Stílusok
   ========================================= */
.section-block {
    padding: 70px 0;
    width: 100%;
}

.section-header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    margin-bottom: 36px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.section-block > .section-title {
    margin-bottom: 36px;
}

.section-title::after {
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    background: var(--text-secondary);
    margin: 14px auto 0;
}

.section-header-wrap .section-title::after {
    margin: 14px auto 0;
}

.video-admin-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-admin-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* =========================================
   Equal Streaming Bento Grid ("Hallgasd vagy nézd meg")
   ========================================= */
.equal-bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.bento-tile {
    position: relative;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-bento);
    text-decoration: none;
    color: var(--text-primary);
    padding: 24px 12px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    text-align: center;
}

.tile-content span {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

/* ALAPÉRTELMEZETTEN SZÍNES LOGÓK */
.spotify .tile-content svg { fill: var(--spotify-color); opacity: 1; }
.youtube .tile-content svg { fill: var(--youtube-color); opacity: 1; }
.apple .tile-content svg { fill: #ffffff; opacity: 1; }
.apple-logo-img {
    height: 36px;
    width: auto;
    max-width: 86px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}
.ytmusic .tile-content svg { fill: var(--youtube-color); opacity: 1; }
.vevo .tile-content svg { opacity: 1; }

/* Hover effektek */
.bento-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--surface-hover);
}

.spotify:hover { box-shadow: 0 12px 30px -8px rgba(29, 185, 84, 0.25); }
.youtube:hover { box-shadow: 0 12px 30px -8px rgba(255, 0, 0, 0.25); }
.apple:hover { box-shadow: 0 12px 30px -8px rgba(255, 255, 255, 0.22); }
.ytmusic:hover { box-shadow: 0 12px 30px -8px rgba(255, 0, 0, 0.25); }
.vevo:hover { box-shadow: 0 12px 30px -8px rgba(237, 27, 36, 0.35); }

/* =========================================
   Kiemelt Videó (Új megjelenés)
   ========================================= */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-bento);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.video-facade:hover .video-thumbnail {
    opacity: 1;
    transform: scale(1.02);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

.video-facade:hover .video-play-btn {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 25px rgba(255,0,0,0.6));
}

/* =========================================
   DISZKOGRÁFIA (Nyitható 2025/2026/2027 Év-Csempék)
   ========================================= */
.accordion-year-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.year-accordion-card {
    background: rgba(18, 18, 24, 0.92);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-bento);
    overflow: hidden;
    transition: var(--transition-fast);
}

.year-accordion-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.year-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.year-accordion-header:hover {
    background: rgba(255,255,255,0.04);
}

.year-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.year-label {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.25;
}

.album-badge {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 12px;
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.year-accordion-card.open .accordion-icon {
    transform: rotate(180deg);
    color: #fff;
}

.year-accordion-body {
    display: none;
    padding: 0 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.year-accordion-card.open .year-accordion-body {
    display: block;
    animation: accordionOpenFade 0.25s ease-out;
}

@keyframes accordionOpenFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.albums-subgrid {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.album-card-inner {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-album);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition-fast);
}

.album-card-inner:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-album);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

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

.album-card-inner:hover .cover-img {
    transform: scale(1.03);
}

.album-details h3 {
    font-size: 1.25rem;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.year-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.album-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.album-audio {
    width: 100%;
    height: 38px;
    border-radius: 20px;
    outline: none;
}

/* =========================================
   Modal Ablakok (Rólam & Videó Cserélő)
   ========================================= */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 14px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow-y: auto;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 30px;
    max-width: 650px;
    width: 100%;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    margin: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.modal-dialog::-webkit-scrollbar {
    width: 6px;
}
.modal-dialog::-webkit-scrollbar-track {
    background: transparent;
}
.modal-dialog::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.modal-dialog::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.modal-backdrop.active .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

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

.modal-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.about-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.about-modal-body p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-modal-body p:last-child {
    margin-bottom: 0;
}

.about-modal-body .highlight-note {
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-top: -8px;
    margin-bottom: 20px;
}

/* Videó Admin Modal Form */
.video-admin-dialog {
    max-width: 500px;
}

.admin-help-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.video-admin-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.video-admin-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.video-admin-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.admin-submit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-submit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.admin-status {
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   Footer & Látogatószámláló
   ========================================= */
.footer {
    text-align: center;
    padding: 60px 24px 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(5,5,5,0.92);
}

.contact-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.visitor-counter {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.counter-number {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* =========================================
   Kinetikus Animációk (Fade-in)
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease-out, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Reszponzivitás (Mobile & Tablet)
   ========================================= */
@media (max-width: 900px) {
    .equal-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .accordion-year-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-image-bg {
        background-size: 100% auto;
        background-position: center 54px;
        height: 60vh;
    }
    .background-overlay {
        background: linear-gradient(to bottom, 
            rgba(5, 5, 5, 0.1) 0%, 
            rgba(5, 5, 5, 0.35) 25%, 
            rgba(5, 5, 5, 0.85) 45%, 
            #050505 60%, 
            #050505 100%);
    }
    .hero {
        min-height: auto;
        padding-top: calc(56.25vw + 10px);
        padding-bottom: 40px;
    }
    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
    .nav-contact-btn {
        padding: 5px 12px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 0;
    }
    .nav-container {
        padding: 0 12px;
        gap: 8px;
    }
    .nav-brand {
        font-size: clamp(0.85rem, 3.4vw, 1.15rem);
    }
    .nav-links {
        gap: 10px;
    }
    .nav-links a {
        font-size: 0.74rem;
        letter-spacing: 0.03em;
    }
    .nav-contact-btn {
        padding: 4px 10px;
    }
    .equal-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-image-bg {
        background-size: 100% auto;
        background-position: center 48px;
        height: 55vh;
    }
    .hero {
        min-height: auto;
        padding-top: calc(56.25vw + 5px);
        padding-bottom: 30px;
    }
    .hero-content {
        padding: 24px 16px;
    }
    .vevo-notice-banner {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    /* Mobil Rólam Modal */
    .modal-backdrop {
        padding: 12px 10px;
    }
    .modal-dialog {
        padding: 28px 18px 22px 18px;
        border-radius: 18px;
        max-height: calc(100dvh - 24px);
    }
    .modal-close {
        top: 12px;
        right: 14px;
        font-size: 1.8rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-heading {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .about-tags {
        gap: 6px;
        margin-bottom: 16px;
    }
    .tag {
        padding: 4px 11px;
        font-size: 0.8rem;
        border-radius: 14px;
    }
    .about-modal-body p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }
}

@media (max-width: 420px) {
    .navbar {
        padding: 10px 0;
    }
    .nav-container {
        padding: 0 8px;
        gap: 6px;
    }
    .nav-brand {
        font-size: clamp(0.75rem, 3.2vw, 0.95rem);
        letter-spacing: 0.02em;
    }
    .nav-links {
        gap: 6px;
    }
    .nav-links a {
        font-size: 0.67rem;
        letter-spacing: 0.01em;
    }
    .nav-contact-btn {
        padding: 3px 7px;
    }
    .hero-image-bg {
        background-size: 100% auto;
        background-position: center 42px;
        height: 50vh;
    }
    .hero {
        min-height: auto;
        padding-top: calc(56.25vw);
        padding-bottom: 24px;
    }
}
