/* Import premium typography from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

/* CSS Variables for design system tokens */
:root {
  --color-dark-bg: #0c0c0c;
  --color-dark-bg-alt: #121212;
  --color-dark-card: #181818;
  --color-light-bg: #f9f8f6;
  --color-light-bg-alt: #f0eee8;
  --color-light-card: #ffffff;
  
  --color-gold: #c2a078;
  --color-gold-hover: #a68257;
  --color-gold-light: rgba(194, 160, 120, 0.15);
  
  --color-text-white: #ffffff;
  --color-text-light: #e6e5e0;
  --color-text-light-muted: #9e9d98;
  
  --color-text-dark: #221f1b;
  --color-text-dark-muted: #615d57;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* Base resets and defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Sections Styling Structure */
section {
  padding: 100px 20px;
  position: relative;
}

p {
  text-indent: 2em; /* Wcięcie o szerokość dwóch znaków */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.dark-section {
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
}

.dark-section-alt {
  background-color: var(--color-dark-bg-alt);
  color: var(--color-text-light);
}

.light-section {
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
}

.light-section-alt {
  background-color: var(--color-light-bg-alt);
  color: var(--color-text-dark);
}

/* Headings and Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
}

.dark-section .section-title {
  color: var(--color-text-white);
}

.light-section .section-title {
  color: var(--color-text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 15px auto 0 auto;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline-gold {
  border: 1px solid var(--color-gold);
  color: var(--color-text-white);
  background: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.btn-filled-gold {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
  border: 1px solid var(--color-gold);
}

.btn-filled-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: var(--color-text-white);
}

/* 1. HEADER SECTION */
.site-header {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* max-width: 1280px; */
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.logo-link {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}

.logo-link .logo-jan {
  color: var(--color-gold);
}

.logo-link .logo-surname {
  color: var(--color-text-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

.nav-menu a:hover {
  color: var(--color-gold);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-white);
  transition: var(--transition-smooth);
}

/* 2. BANNER HERO SECTION */
.hero-banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.2);
  z-index: 1;
}

.hero-gallery-strip-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0) 100%);
  padding: 30px 40px;
}

.hero-gallery-strip {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  padding: 5px 0 10px 0;
}

.hero-gallery-strip::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.hero-gallery-item {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(24, 24, 24, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-gallery-item:hover {
  background: rgba(30, 30, 30, 0.85);
  border-color: rgba(194, 160, 120, 0.4);
  transform: translateY(-3px);
}

.hero-gallery-item.active {
  background: rgba(194, 160, 120, 0.1);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(194, 160, 120, 0.15);
}

.hero-gallery-thumb {
  width: 80px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.hero-gallery-item:hover .hero-gallery-thumb {
  border-color: var(--color-gold);
}

.hero-gallery-item.active .hero-gallery-thumb {
  border-color: var(--color-gold);
}

.hero-gallery-label {
  display: flex;
  flex-direction: column;
}

.hero-gallery-cat {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

.hero-gallery-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}


.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-content {
  max-width: 600px;
  animation: slideUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--color-text-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-accent);
  color: var(--color-gold);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 500;
  border-left: 2px solid var(--color-gold);
  padding-left: 15px;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. PRESS PACK SECTION (Gallery & Downloads) */
.press-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-text-white);
  margin-bottom: 5px;
}

.gallery-desc {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.gallery-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-white);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
  padding: 8px 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
  width: 100%;
  justify-content: center;
}

.gallery-btn-download:hover {
  background-color: var(--color-text-white);
  color: var(--color-dark-bg);
}

.gallery-btn-download svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}

/* Downloads block under the gallery */
.downloads-divider {
  display: flex;
  align-items: center;
  margin: 60px 0 40px;
}

.downloads-divider span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
  padding-right: 20px;
}

.downloads-divider .line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(194, 160, 120, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
}

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

.download-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.download-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.download-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.download-lang-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
}

.download-label-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-white);
  margin-bottom: 2px;
}

.download-label-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
}

.download-action-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.download-action-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.download-action-btn svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}

/* 3.4. NEWS SECTION */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.news-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: calc(25% - 22.5px);
  min-width: 250px;
  box-sizing: border-box;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(194, 160, 120, 0.1);
}

.news-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-card:hover .news-image-wrapper img {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.news-card:hover .news-overlay {
  opacity: 1;
}

.news-btn-zoom {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark-bg);
  background-color: var(--color-gold);
  padding: 10px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.news-card:hover .news-btn-zoom {
  transform: translateY(0);
}

.news-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.news-date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.news-card-title {
  font-size: 1.25rem;
  color: var(--color-text-white);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.news-card:hover .news-card-title {
  color: var(--color-gold);
}

.news-card-status {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card-status.upcoming {
  color: #a8ffb2;
}

/* News Lightbox */
.news-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-lightbox.active {
  opacity: 1;
}

.news-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: 3rem;
  cursor: pointer;
  z-index: 2100;
  line-height: 1;
  transition: var(--transition-smooth);
}

.news-lightbox-close:hover {
  color: var(--color-gold);
}

.news-lightbox-container {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-lightbox-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .news-grid {
    gap: 25px;
  }
  .news-card {
    width: calc(50% - 12.5px);
  }
}

@media (max-width: 576px) {
  .news-grid {
    gap: 20px;
  }
  .news-card {
    width: 100%;
  }
  .news-lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
  }
}

/* 3.5. GALLERY SECTION */
.gallery-subsets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.gallery-subset-card {
  background-color: var(--color-light-card);
  border: 1px solid rgba(46, 42, 37, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-subset-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold);
}

.gallery-subset-image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
}

.gallery-subset-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-subset-card:hover .gallery-subset-image-wrapper img {
  transform: scale(1.05);
}

.gallery-subset-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-subset-card:hover .gallery-subset-overlay {
  opacity: 1;
}

.gallery-subset-btn {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark-bg);
  background-color: var(--color-gold);
  padding: 10px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-subset-card:hover .gallery-subset-btn {
  transform: translateY(0);
}

.gallery-subset-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-subset-title {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.gallery-subset-card:hover .gallery-subset-title {
  color: var(--color-gold-hover);
}

.gallery-subset-desc {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

.gallery-subset-meta {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  margin-top: auto;
}

/* 3.6. BIOGRAPHY SECTION */
.bio-header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(46, 42, 37, 0.08);
  padding-bottom: 20px;
}

.bio-title-wrapper {
  display: flex;
  flex-direction: column;
}

.bio-lang-selector {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.bio-lang-btn {
  background: transparent;
  border: 1px solid rgba(46, 42, 37, 0.15);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
  opacity: 0.6;
  outline: none;
}

.bio-lang-btn:hover {
  opacity: 1;
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.bio-lang-btn.active {
  opacity: 1;
  border-color: var(--color-gold);
  background-color: rgba(194, 160, 120, 0.08);
  box-shadow: 0 4px 10px rgba(194, 160, 120, 0.15);
}

.bio-lang-btn svg {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bio-content-lang,
.bio-intro-lang,
.bio-sub-lang,
.bio-title-lang {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.bio-content-lang.active,
.bio-intro-lang.active,
.bio-sub-lang.active,
.bio-title-lang.active {
  display: block;
  opacity: 1;
}

span.bio-sub-lang.active,
span.bio-intro-lang.active,
span.bio-title-lang.active {
  display: inline;
}

@media (max-width: 768px) {
  .bio-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

}

.bio-intro-block {
  margin-bottom: 80px;
  text-align: center;
}

.bio-hero-img-wrapper {
  max-width: 900px;
  margin: 0 auto 20px auto;
  border: 1px solid rgba(46, 42, 37, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

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

.bio-hero-img-wrapper:hover .bio-hero-img {
  transform: scale(1.02);
}

.bio-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.bio-intro-lead {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-text-dark);
}

.bio-columns {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.bio-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-text-col p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-dark-muted);
  text-align: justify;
}

.bio-text-col p strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.bio-images-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
}

.bio-img-card {
  position: relative;
  border: 1px solid rgba(46, 42, 37, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--color-light-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bio-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold);
}

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

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

.bio-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-text-white);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
  text-align: center;
}

.bio-img-card:hover .bio-img-caption {
  opacity: 1;
}

/* Lightbox styles */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2100;
}

.lightbox-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-smooth);
  z-index: 2050;
  outline: none;
}

.lightbox-arrow:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.lightbox-arrow svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.lightbox-arrow-prev {
  left: 30px;
}

.lightbox-arrow-prev:hover svg {
  transform: translateX(-2px);
}

.lightbox-arrow-next {
  right: 30px;
}

.lightbox-arrow-next:hover svg {
  transform: translateX(2px);
}

.lightbox-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.lightbox-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65vh;
  margin-bottom: 20px;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: scale(0.98);
}

.lightbox-image-wrapper img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-loader {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--color-gold);
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lightbox-meta {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  color: var(--color-text-white);
}

.lightbox-meta-text {
  max-width: 80%;
}

#lightbox-caption-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-text-white);
  margin-bottom: 4px;
}

#lightbox-caption-desc {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

.lightbox-counter {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Lightbox thumbnails */
.lightbox-thumbnails-container {
  width: 100%;
  max-width: 800px;
  margin: 15px auto 0 auto;
  overflow-x: auto;
  padding-bottom: 5px;
}

.lightbox-thumbnails-container::-webkit-scrollbar {
  height: 4px;
}
.lightbox-thumbnails-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.lightbox-thumbnails-container::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  min-width: max-content;
  padding: 0 10px;
}

.lightbox-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.4;
  transition: var(--transition-smooth);
}

.lightbox-thumb:hover {
  opacity: 0.8;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
  transform: scale(1.05);
}

/* 3.8. MULTIMEDIA SECTION */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.media-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.media-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
}

.media-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.media-card:hover .media-thumbnail-wrapper img {
  transform: scale(1.05);
}

.media-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  background-color: rgba(12, 12, 12, 0.8);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.media-card:hover .media-play-btn {
  transform: translate(-50%, -50%) scale(1);
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
  box-shadow: 0 0 20px rgba(194, 160, 120, 0.4);
  opacity: 1;
}

.media-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: translateX(2px);
}

.media-info {
  padding: 20px;
}

.media-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text-white);
  margin-bottom: 5px;
}

.media-card-desc {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
}

/* Channels Styling */
.media-channels-block {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 50px;
  text-align: center;
}

.media-channels-title {
  font-size: 1.8rem;
  color: var(--color-text-white);
  margin-bottom: 30px;
}

.media-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel-card {
  background-color: var(--color-dark-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.channel-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  background-color: var(--color-dark-card);
}

.channel-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.channel-card:hover .channel-icon {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.channel-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.channel-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.channel-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text-white);
  line-height: 1.2;
}

.channel-platform {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
  margin-top: 2px;
}

/* 3.8.1. CUSTOM VIDEO PLAYER DECK */
.video-player-block {
  margin-bottom: 80px;
  background: rgba(24, 24, 24, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-player-deck {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 50px;
}

/* Left Column: Player Stage */
.video-stage-column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 50px;
  min-width: 0;
}

.video-player-container {
  width: 100%;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 4px;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-player-wrapper iframe,
.video-player-wrapper #main-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* Now playing metadata */
.video-now-playing {
  width: 100%;
  text-align: left;
  min-width: 0;
}

.video-track-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-text-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-track-album {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-track-artist {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

/* Right Column: Playlist Panel */
.audio-playlist-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* Search Bar */
.audio-search-container {
  position: relative;
  margin-bottom: 20px;
}

.audio-search-container .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--color-text-light-muted);
  pointer-events: none;
}

#audio-search-input {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-dark-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 15px 12px 45px;
  color: var(--color-text-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

#audio-search-input:focus {
  border-color: var(--color-gold);
  background-color: rgba(24, 24, 24, 0.85);
  box-shadow: 0 0 10px rgba(194, 160, 120, 0.1);
}

/* Album Filter Pills */
.audio-filters-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.audio-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 5px;
}

.audio-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-light-muted);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill:hover {
  color: var(--color-text-white);
  border-color: rgba(194, 160, 120, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.filter-pill.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark-bg);
}

/* Scrollable Playlist Accordion */
.audio-albums-accordion {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(12, 12, 12, 0.15);
  padding: 5px;
  border-radius: 4px;
}

/* Custom scrollbar for accordion */
.audio-albums-accordion::-webkit-scrollbar {
  width: 5px;
}

.audio-albums-accordion::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.audio-albums-accordion::-webkit-scrollbar-thumb {
  background: rgba(194, 160, 120, 0.3);
  border-radius: 3px;
}

.audio-albums-accordion::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Album Accordion Items */
.album-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.album-accordion-item:last-child {
  border-bottom: none;
}

.album-accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-left: 3px solid transparent;
}

.album-accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.album-accordion-item.active .album-accordion-header {
  background-color: rgba(255, 255, 255, 0.02);
  border-left-color: var(--color-gold);
}

/* Album Cover design */
.album-cover-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  background-color: #000;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.album-accordion-header:hover .album-cover-wrapper {
  transform: scale(1.05);
}

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

/* Play overlay on cover hover */
.album-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--color-gold);
}

.album-accordion-header:hover .album-play-overlay {
  opacity: 1;
}

.album-play-overlay svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Title & Info */
.album-header-info {
  flex-grow: 1;
  min-width: 0;
  text-align: left;
}

.album-header-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-smooth);
}

.album-accordion-header:hover .album-header-title,
.album-accordion-item.active .album-header-title {
  color: var(--color-text-white);
}

.album-accordion-item.playing .album-header-title {
  color: var(--color-gold);
}

.album-header-tracks-count {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-text-light-muted);
}

/* Chevron indicator */
.album-header-chevron {
  color: var(--color-text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.album-header-chevron svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.album-accordion-header:hover .album-header-chevron {
  color: var(--color-gold);
}

.album-accordion-item.active .album-header-chevron {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* Collapsible Content Area */
.album-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.15);
}

.album-accordion-item.active .album-accordion-content {
  opacity: 1;
}

.album-track-list {
  padding: 5px 0 10px 0;
}

/* Align nested track rows inside accordion */
.album-track-list .track-row {
  padding-left: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.album-track-list .track-row:last-child {
  border-bottom: none;
}

/* Playlist Rows */
.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.track-row:last-child {
  border-bottom: none;
}

.track-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 20px;
}

.track-row-left {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  flex-grow: 1;
  min-width: 0;
}

.track-index-col {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
  width: 25px;
  display: flex;
  align-items: center;
}

/* Small visualizer next to playing track */
.track-equalizer-icon {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 14px;
  height: 12px;
}

.track-equalizer-icon span {
  width: 2px;
  height: 2px;
  background-color: var(--color-gold);
  animation: track-wave 0.8s ease-in-out infinite alternate;
}

.track-equalizer-icon span:nth-child(1) { animation-delay: 0.1s; }
.track-equalizer-icon span:nth-child(2) { animation-delay: 0.3s; }
.track-equalizer-icon span:nth-child(3) { animation-delay: 0.2s; }

@keyframes track-wave {
  0% { height: 2px; }
  100% { height: 12px; }
}

.track-details-col {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  min-width: 0;
}

.track-row-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-smooth);
}

.track-row:hover .track-row-title {
  color: var(--color-text-white);
}

.track-row-album {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-text-light-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-row-right {
  margin-left: 15px;
  color: var(--color-text-light-muted);
  opacity: 0;
  transition: var(--transition-smooth);
}

.track-row:hover .track-row-right {
  opacity: 1;
}

.track-row-right svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Active Track Styling */
.track-row.active {
  background-color: var(--color-gold-light);
  border-left: 3px solid var(--color-gold);
}

.track-row.active .track-row-title {
  color: var(--color-gold);
  font-weight: 500;
}

.track-row.active .track-row-album {
  color: rgba(194, 160, 120, 0.8);
}

.track-row.active .track-row-right {
  opacity: 1;
  color: var(--color-gold);
}

/* Media Queries for Video Player responsive styling */
@media (max-width: 991px) {
  .video-player-deck {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-stage-column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .video-player-block {
    padding: 20px;
  }
}

/* Video Lightbox */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.video-lightbox.active {
  display: flex;
  opacity: 1;
}

.video-lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2100;
}

.video-lightbox-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.video-lightbox-container {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-lightbox-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-lightbox-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 4. DISCOGRAPHY SECTION */
.disco-category-group {
  margin-bottom: 60px;
}

.disco-category-title {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-light-bg-alt);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.disco-category-title:hover {
  color: var(--color-gold);
}

.disco-category-title .title-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.disco-category-title svg {
  fill: var(--color-gold);
  width: 24px;
  height: 24px;
}

.disco-category-title .chevron-icon {
  fill: currentColor;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--color-text-dark-muted);
}

.disco-category-group:hover .chevron-icon {
  color: var(--color-gold);
}

.disco-category-group.collapsed .chevron-icon {
  transform: rotate(-90deg);
}

.disco-category-content {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), margin-top 0.4s ease;
}

.disco-category-group:not(.collapsed) .disco-category-content {
  margin-top: 30px;
}

.disco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.disco-card {
  background-color: var(--color-light-card);
  border: 1px solid rgba(46, 42, 37, 0.05);
  border-radius: 0;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  border-left: 3px solid transparent;
}

.disco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-left-color: var(--color-gold);
}

.disco-album-header {
  margin-bottom: 15px;
}

.disco-album-title {
  font-size: 1.45rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.disco-album-artist {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: 15px;
}

.disco-album-meta {
  list-style: none;
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
}

.disco-album-meta li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disco-album-meta strong {
  color: var(--color-text-dark);
  font-weight: 500;
}

/* 5. CONTACT SECTION */
.contact-wrapper {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info-block {
	display: flex;
    flex-direction: row;
    /* gap: 35px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon-wrapper {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.contact-icon-wrapper svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}

.contact-details h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
  margin-bottom: 6px;
}

.contact-details a, .contact-details p {
  color: var(--color-text-white);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--color-gold);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  background-color: var(--color-dark-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  padding: 15px 20px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(194, 160, 120, 0.2);
}

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

.form-status {
  padding: 15px;
  font-size: 0.85rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(39, 174, 96, 0.15);
  border: 1px solid #27ae60;
  color: #2ecc71;
}

.form-status.error {
  display: block;
  background-color: rgba(192, 57, 43, 0.15);
  border: 1px solid #c0392b;
  color: #e74c3c;
}

/* 6. FOOTER SECTION */
.site-footer {
  background-color: var(--color-dark-bg-alt);
  color: var(--color-text-dark-muted);
  padding: 20px 20px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(46, 42, 37, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-copyright {
  font-family: var(--font-sans);
}

.footer-socials {
  display: flex;
  list-style: none;
  gap: 25px;
}

.footer-socials a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  color: var(--color-gold);
}

.footer-privacy a {
  color: var(--color-text-dark-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-privacy a:hover {
  color: var(--color-gold);
}


/* --- RESPONSIVE STYLING (Smartphones & Tablets) --- */

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Menu icon animation when active */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .press-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-subsets-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .disco-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .media-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero gallery strip responsiveness at 992px */
  .hero-gallery-strip-container {
    padding: 20px 30px;
  }
  .hero-gallery-item {
    flex: 0 0 240px;
  }
  .hero-bg-slide {
    background-size: cover;
    background-position: 0% 25%;
  }

  .hero-bg-slide-center {
    background-position: center;
  }

  .hero-bg-slide-left {
    background-position: left;
  }
  .hero-bg-slide-right {
    background-position: right;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 15px;
  }
  
  .hero-container {
    padding: 0 20px;
    padding-bottom: 110px; /* Space for the bottom gallery strip */
  }
  
  .press-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }

  /* Biography Section Mobile */
  .bio-intro-lead {
    font-size: 1.05rem;
  }
  
  .bio-text-col p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .bio-images-col {
    flex-direction: column;
    align-items: center;
  }
  
  .bio-img-card {
    width: 100%;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media-channels-grid {
    grid-template-columns: 1fr;
  }

  /* Hero gallery strip responsiveness at 600px */
  .hero-gallery-strip-container {
    padding: 15px 15px;
  }
  .hero-gallery-item {
    flex: 0 0 200px;
    padding: 8px;
    gap: 10px;
  }
  .hero-gallery-thumb {
    width: 60px;
    height: 40px;
  }
  .hero-gallery-title {
    font-size: 0.85rem;
    max-width: 110px;
  }
}

/* --- LIGHTBOX RESPONSIVENESS --- */
@media (max-width: 768px) {
  /* Biography Section tablet/mobile collapse */
  .bio-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bio-images-col {
    position: relative;
    top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .bio-img-card {
    flex: 1 1 250px;
    max-width: 100%;
  }

  /* Lightbox responsiveness */
  .lightbox-arrow {
    width: 45px;
    height: 45px;
  }
  .lightbox-arrow-prev {
    left: 10px;
  }
  .lightbox-arrow-next {
    right: 10px;
  }
  .lightbox-image-wrapper {
    height: 55vh;
  }
  .lightbox-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
  }
  .lightbox-meta-text {
    max-width: 100%;
  }
  .lightbox-thumbnails-container {
    display: none;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
  }

  /* Video Lightbox responsiveness */
  .video-lightbox-container {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
  .video-lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   GLOBAL LANGUAGE SELECTOR STYLES
   ========================================================================== */
.header-menu-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1001;
}

.global-lang-selector {
  display: flex;
  gap: 12px;
  align-items: center;
}

.global-lang-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 24px;
  height: 16px;
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.global-lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.global-lang-btn.active {
  opacity: 1;
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.4);
}

.global-lang-btn .flag-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-link {
    font-size: 1.2rem;
  }

  .header-menu-container {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }

  .header-nav-wrapper {
    display: block;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .global-lang-selector {
    gap: 8px;
    flex-shrink: 0;
  }

  .global-lang-btn {
    width: 20px;
    height: 13px;
    flex-shrink: 0;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
    justify-content: center;
  }

  .mobile-lang-item {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-link {
    font-size: 1.05rem;
  }
  .header-right {
    gap: 8px;
  }
  .global-lang-selector {
    gap: 6px;
  }
}
