/* ========== DESIGN TOKENS ========== */
:root {
    --purple: #8B5CF6;
    --purple-light: #C4B5FD;
    --purple-dark: #6D28D9;
    --turquoise: #14B8A6;
    --turquoise-light: #5EEAD4;
    --turquoise-dark: #0D9488;
    --white: #FFFFFF;
    --bg: #FAFBFF;
    --bg-section: #F3F0FF;
    --text: #1E1B4B;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --glass: rgba(255,255,255,0.7);
    --glass-border: rgba(139,92,246,0.15);
    --shadow-sm: 0 2px 8px rgba(139,92,246,0.08);
    --shadow-md: 0 8px 30px rgba(139,92,246,0.12);
    --shadow-lg: 0 20px 60px rgba(139,92,246,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 600;
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu { display: flex; gap: 36px; }
.nav-link {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text);
    position: relative; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--turquoise));
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--purple); }

/* Language Selector */
.lang-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
    font-size: 0.8rem;
    font-weight: 600;
}
.lang-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}
.lang-link:hover {
    color: var(--turquoise);
}
.lang-link.active {
    color: var(--purple);
    font-weight: 700;
    pointer-events: none;
}
.lang-separator {
    color: var(--glass-border);
    font-weight: 300;
}
@media (max-width: 768px) {
    .lang-selector {
        margin-left: 0;
        margin-top: 20px;
        border-top: 1px solid var(--glass-border);
        padding-top: 20px;
        width: 80%;
        justify-content: center;
    }
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text); margin: 5px 0; transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;       /* Center horizontally */
    justify-content: flex-end; /* Push to the bottom vertically */
    position: relative;
    overflow: hidden;
    background: url('images/mesi_welcome.jpg') no-repeat center right / cover;
    padding-bottom: 40px;      /* Space from bottom */
}

@media (max-width: 1100px) {
    .hero {
        min-height: calc(100vh - 70px);
        margin-top: 70px;
        background-position: 65% center;
    }
}

.hero-ornament {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    filter: blur(100px); opacity: 0.25; pointer-events: none;
}
.hero-ornament--left {
    top: -100px; left: -150px;
    background: radial-gradient(circle, var(--purple-light), transparent);
}
.hero-ornament--right {
    bottom: -100px; right: -150px;
    background: radial-gradient(circle, var(--turquoise-light), transparent);
}


/* Add a subtle vertical gradient overlay to make the bottom text area highly readable */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--turquoise-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--purple-dark);
}

.hero-tagline {
    font-family: var(--font-display); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400; font-style: italic; color: var(--text);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll-indicator span {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light);
}
.scroll-arrow {
    width: 20px; height: 20px; border-right: 1.5px solid var(--text-light);
    border-bottom: 1.5px solid var(--text-light);
    transform: rotate(45deg); animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 36px; border-radius: 50px; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer; transition: var(--transition);
    border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    color: var(--white); box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,92,246,0.4);
}
.btn-outline {
    background: transparent; color: var(--purple);
    border: 1.5px solid var(--purple-light);
}
.btn-outline:hover {
    background: var(--purple); color: var(--white);
    border-color: var(--purple); transform: translateY(-2px);
}
.btn-small {
    padding: 10px 24px; font-size: 0.75rem;
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    color: var(--white); border-radius: 50px; margin-top: 12px;
}
.btn-small:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========== SECTIONS ========== */
.section { padding: 120px 0; position: relative; }
.section--utam { background: var(--white); }
.section--promo { background: var(--white); padding: 80px 0 20px 0; }

.promo-banner {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.promo-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.promo-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.promo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-banner:hover .promo-img {
    transform: scale(1.015);
}

.section--produkciok { background: var(--bg-section); }
.section--lemezek { background: var(--white); }
.section--rolam { background: var(--bg-section); }
.section--kapcsolat {
    background: linear-gradient(160deg, var(--white), #F3F0FF 50%, #E0F2FE);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--turquoise);
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400; color: var(--text); margin-top: 8px;
}
.section-divider {
    width: 60px; height: 3px; margin: 20px auto 0;
    background: linear-gradient(90deg, var(--purple), var(--turquoise));
    border-radius: 2px;
}

/* ========== UTAM ========== */
.utam-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.utam-quote {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
    font-style: italic; color: var(--purple-dark);
    line-height: 1.6; margin-bottom: 24px;
    padding-left: 20px; border-left: 3px solid var(--turquoise);
}
.utam-text p { margin-bottom: 16px; color: var(--text-light); font-size: 0.95rem; }
.utam-text p:first-child { color: var(--text); }

.utam-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.utam-decoration { position: relative; width: 280px; height: 280px; margin-bottom: 40px; }
.ornament-circle {
    position: absolute; border-radius: 50%; border: 1px solid;
    animation: spinSlow 20s linear infinite;
}
.ornament-circle--1 { inset: 0; border-color: rgba(139,92,246,0.2); }
.ornament-circle--2 { inset: 20px; border-color: rgba(20,184,166,0.2); animation-direction: reverse; animation-duration: 15s; }
.ornament-circle--3 { inset: 40px; border-color: rgba(139,92,246,0.15); animation-duration: 25s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.utam-pattern { position: absolute; inset: 30px; animation: spinSlow 30s linear infinite reverse; }

.utam-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-number, .stat-text {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 600;
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix {
    font-family: var(--font-display); font-size: 2rem; font-weight: 600;
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ========== PRODUKCIÓK ========== */
.produkciok-intro { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.produkciok-motto {
    font-family: var(--font-display); font-size: 2rem; font-weight: 500;
    color: var(--purple-dark); margin-bottom: 16px;
}
.produkciok-intro p { color: var(--text-light); font-size: 1.05rem; }

.testimonial {
    max-width: 650px; margin: 0 auto 64px; text-align: center;
    padding: 40px; background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius); backdrop-filter: blur(10px);
}
.testimonial blockquote p {
    font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
    color: var(--text); line-height: 1.8;
}
.testimonial cite { display: block; margin-top: 16px; font-size: 0.85rem; color: var(--turquoise-dark); font-style: normal; font-weight: 600; }

/* ========== PRODUKCIÓK NEW LAYOUT ========== */
.produkcio-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.produkcio-media {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.produkcio-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.produkcio-img:hover {
    transform: scale(1.02);
}

.produkcio-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.produkcio-info .produkciok-motto {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
}

.produkcio-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 20px;
}

.produkcio-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.produkcio-text:last-child {
    margin-bottom: 0;
}

/* Videos Grid */
.produkciok-videos {
    margin-top: 64px;
    margin-bottom: 48px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-light);
}
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

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

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 54px;
    height: 54px;
    background: rgba(20, 184, 166, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.video-play-btn svg {
    width: 18px;
    height: 18px;
    color: var(--white);
    margin-left: 2px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--purple);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .produkcio-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .produkcio-info .produkciok-motto {
        text-align: center;
    }
    .produkcio-info {
        text-align: center;
    }
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.subsection-title {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
    text-align: center; margin-bottom: 32px; color: var(--text);
}
.musicians-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.musician-name {
    padding: 10px 24px; border-radius: 50px;
    background: var(--white); border: 1px solid var(--glass-border);
    font-size: 0.9rem; font-weight: 500; color: var(--text);
    transition: var(--transition);
}
.musician-name:hover {
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    color: var(--white); border-color: transparent; transform: translateY(-2px);
}

/* ========== LEMEZEK (SHOWCASE) ========== */
.album-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.album-details-container {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 380px;
    margin-bottom: 40px;
    overflow: hidden;
}

.album-detail-card {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    animation: albumFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.album-detail-card.active {
    display: grid;
}

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

.album-cover-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-cover-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
}

.album-cover-wrapper:hover {
    transform: scale(1.03) translateY(-5px) rotate(1.5deg);
}

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

.album-year-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.album-info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-meta {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--turquoise);
    margin-bottom: 8px;
}

.album-title-large {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.album-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise), var(--purple));
    border-radius: 2px;
    margin-bottom: 24px;
}

.album-text-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.album-quote {
    font-style: italic;
    border-left: 3px solid var(--purple-light);
    padding-left: 16px;
    margin: 20px 0 !important;
    color: var(--text) !important;
}

.album-quote-author {
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 6px;
}

.album-tagline {
    font-size: 1.05rem !important;
    color: var(--text) !important;
}

.album-musicians {
    font-size: 0.9rem !important;
    background: rgba(109, 40, 217, 0.04);
    border: 1px solid rgba(109, 40, 217, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 20px !important;
    color: var(--text-light) !important;
}

.album-buy-wrapper {
    margin: 20px 0 10px 0;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), #5b21b6);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
    background: linear-gradient(135deg, #7c3aed, var(--purple));
}

/* Album Tabs Navigation */
.album-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.album-tab-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    transition: var(--transition);
    outline: none;
}

.album-tab-cover {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
    background: #000;
}

.album-tab-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.album-tab-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    transition: var(--transition);
}

.album-tab-year {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hover & Active States */
.album-tab-btn:hover .album-tab-cover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.album-tab-btn:hover img {
    opacity: 0.9;
}

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

.album-tab-btn.active .album-tab-cover {
    border-color: var(--turquoise);
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.25);
}

.album-tab-btn.active img {
    opacity: 1;
}

.album-tab-btn.active .album-tab-title {
    color: var(--turquoise);
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .album-detail-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .album-cover-column {
        order: -1;
    }
    
    .album-info-column {
        align-items: center;
    }
    
    .album-accent-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .album-quote {
        border-left: none;
        border-top: 1px solid var(--purple-light);
        border-bottom: 1px solid var(--purple-light);
        padding: 12px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .album-details-container {
        padding: 30px 20px;
    }
    
    .album-tabs {
        gap: 12px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .album-tab-btn {
        flex: 0 0 110px;
        scroll-snap-align: start;
    }
    
    .album-tab-cover {
        width: 80px;
        height: 80px;
    }
}

/* ========== RÓLAM ========== */
.bio-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.bio-lead { font-size: 1.15rem; font-weight: 500; color: var(--text); margin-bottom: 16px; }
.bio-text p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 14px; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
    content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--purple-light), var(--turquoise-light));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
    position: absolute; left: -28px; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--turquoise));
    box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}
.timeline-year {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--purple-dark); display: block; margin-bottom: 4px;
}
.timeline-content p { font-size: 0.9rem; color: var(--text-light); }

.masters { margin-top: 80px; text-align: center; }
.masters-intro { color: var(--text-light); font-size: 0.95rem; margin-bottom: 24px; }
.masters-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.masters-list span {
    padding: 8px 20px; border-radius: 50px;
    background: var(--white); border: 1px solid var(--glass-border);
    font-size: 0.85rem; font-weight: 500; color: var(--text-light);
    transition: var(--transition);
}
.masters-list span:hover { color: var(--purple); border-color: var(--purple-light); }

/* ========== KAPCSOLAT ========== */
.contact-content { text-align: center; }
.contact-intro { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; }
.contact-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.contact-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 32px 40px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--glass-border);
    transition: var(--transition); min-width: 160px;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-light); }
.contact-icon { width: 40px; height: 40px; color: var(--purple); }
.contact-card span { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0; text-align: center;
    background: var(--text); color: rgba(255,255,255,0.5);
}
.footer-logo {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    background: linear-gradient(135deg, var(--purple-light), var(--turquoise-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: block; margin-bottom: 8px;
}
.footer p { font-size: 0.8rem; }

/* ========== ANIMATIONS ========== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .utam-content, .bio-content { grid-template-columns: 1fr; gap: 40px; }
    .albums-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 32px; transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.active { right: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .section { padding: 80px 0; }
    .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-links { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .albums-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .utam-stats { flex-direction: column; gap: 24px; }
}

/* ========== RTL (Arabic) Overrides ========== */
html[dir="rtl"] {
    text-align: right;
}
html[dir="rtl"] .produkcio-info .produkciok-motto {
    text-align: right;
}
html[dir="rtl"] .nav-logo {
    margin-right: 0;
    margin-left: auto;
}
html[dir="rtl"] .contact-card {
    flex-direction: row-reverse;
}
html[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 12px;
}
html[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}
html[dir="rtl"] .footer-section {
    text-align: right;
}

