/* ==========================================================================
   Uroš Ržišnik – Kantavtor | Spletna stran
   Temno & Rock'n'Roll oblikovanje
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-bg: #0a0a0a;
  --clr-bg-alt: #111111;
  --clr-bg-card: #161616;
  --clr-text: #f0f0f0;
  --clr-text-muted: #a0a0a0;
  --clr-accent: #d4a017;
  --clr-accent-hover: #e8b52a;
  --clr-accent-glow: rgba(212, 160, 23, 0.25);
  --clr-purple: #6b4fa0;
  --clr-purple-glow: rgba(107, 79, 160, 0.2);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 70px;
  --container-max: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-accent-hover);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  margin-top: 12px;
}

.section__subtitle {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.section__subtitle--accent {
  font-style: italic;
  font-size: 1.3rem;
}

/* ---------- Section Diagonal Dividers ---------- */
.section__divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.section__divider--top {
  top: -1px;
}

.about .section__divider--top {
  background: var(--clr-bg);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.music .section__divider--top {
  background: var(--clr-bg-alt);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}

.gallery .section__divider--top {
  background: var(--clr-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.events .section__divider--top {
  background: var(--clr-bg-alt);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}

.contact .section__divider--top {
  background: var(--clr-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-bg);
  border-color: var(--clr-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--clr-accent);
  box-shadow: 0 0 20px var(--clr-accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-bg);
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-icon {
  height: 1.4em;
  width: auto;
  object-fit: contain;
}

.nav__logo:hover {
  color: var(--clr-accent);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  color: var(--clr-text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--clr-text);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-text);
  transition: all var(--transition);
}

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

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

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

/* ---------- Hero (Sticky Parallax) ---------- */
.hero-wrap {
  height: 200vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  will-change: transform;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 0%;
  transform: scale(1.15);
  animation: hero-zoom-in 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
}

@keyframes hero-zoom-in {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  margin-top: 6vh;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-content-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

@keyframes hero-content-in {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__cta {
  position: absolute;
  bottom: 12vh;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: hero-content-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  animation: hero-content-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards,
             hero-float 4s ease-in-out 2.5s infinite;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--clr-text-muted);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: hero-float 4s ease-in-out 3s infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Marquee / Running Line ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 20px 0;
  user-select: none;
}

.marquee--accent {
  background: var(--clr-accent);
  transform: rotate(-2deg) scale(1.02);
  margin: -10px 0;
}

.marquee--ghost {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: rotate(2deg) scale(1.02);
  margin: -10px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 60s;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee__content span {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 16px;
}

.marquee--accent .marquee__content span {
  color: var(--clr-bg);
}

.marquee--ghost .marquee__content span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 6vw, 5rem);
}

.marquee__dot {
  display: inline-block;
  width: 8px !important;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0 !important;
}

.marquee--accent .marquee__dot {
  background: var(--clr-bg);
}

.marquee--ghost .marquee__dot {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- About ---------- */
.about {
  background: var(--clr-bg-alt);
  padding-top: 120px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
}

.about__image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: grayscale(30%) brightness(0.9);
}

.about__image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.05);
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  background: linear-gradient(to top, rgba(212, 160, 23, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about__image:hover::before {
  opacity: 1;
}

.about__text p {
  margin-bottom: 20px;
  color: var(--clr-text-muted);
  text-align: justify;
}

.about__lead {
  font-size: 1.2rem;
  color: var(--clr-text) !important;
  font-weight: 400;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Interview ---------- */
.interview {
  padding-top: 80px;
}

.interview__content {
  margin-bottom: 40px;
}

.interview__text {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.interview__text:last-child {
  margin-bottom: 0;
}

.interview__video {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.interview__video-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 16px 12px;
  background: var(--clr-bg-card);
  letter-spacing: 0.04em;
}

/* ---------- Music ---------- */
.music {
  padding-top: 120px;
}

.music__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.music__card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.music__card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Tilted cards */
.music__card--tilted-left {
  transform: rotate(-1.5deg);
}

.music__card--tilted-left:hover {
  transform: rotate(-1.5deg) translateY(-6px) scale(1.02);
}

.music__card--tilted-right {
  transform: rotate(1.5deg);
}

.music__card--tilted-right:hover {
  transform: rotate(1.5deg) translateY(-6px) scale(1.02);
}

.music__card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-color: var(--clr-accent);
  border-width: 1px;
  position: relative;
}

.music__card--featured:hover {
  transform: translateY(-4px);
}

.music__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--clr-accent);
  color: var(--clr-bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
}

.music__card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.music__card--featured .music__card-image {
  aspect-ratio: auto;
}

.music__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.music__card:hover .music__card-image img {
  transform: scale(1.05);
}

.music__card-image--placeholder {
  background: linear-gradient(135deg, var(--clr-bg-alt), var(--clr-bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
}

.music__card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--clr-accent);
}

.music__card:hover .music__card-play {
  opacity: 1;
}

.music__card-info {
  padding: 28px;
}

.music__card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.music__card-info p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.music__card-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.music__card-credits span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--clr-bg-alt);
  padding-top: 120px;
}

/* Thumbnail grid on index page */
.gallery__thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.2);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__thumb:hover img {
  transform: scale(1.08);
}

.gallery__thumb:hover::after {
  opacity: 1;
}

.gallery__more {
  text-align: center;
  margin-top: 40px;
}

/* Full gallery page (galerija.html) */
.gallery-page {
  padding-top: 40px;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 16px;
}

.gallery-full__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-full__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.2);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-full__item:hover img {
  transform: scale(1.06);
}

.gallery-full__item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 16px;
  transition: color var(--transition);
  z-index: 2001;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--clr-accent);
}

.lightbox__close {
  top: 16px;
  right: 16px;
  font-size: 2.5rem;
}

.lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

/* ---------- Countdown Timer ---------- */
.countdown {
  background: var(--clr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.countdown__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: 24px;
}

.countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
  transition: transform 0.3s ease;
}

.countdown__number.tick {
  transform: scale(1.15);
}

.countdown__text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-top: 8px;
}

.countdown__sep {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--clr-accent);
  opacity: 0.5;
  padding-bottom: 24px;
}

/* ---------- Albums ---------- */
.albums {
  padding-top: 120px;
}

.albums__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.album-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.album-card__cover {
  cursor: pointer;
  overflow: hidden;
}

.album-card__cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.album-card__cover:hover img {
  transform: scale(1.05);
}

.album-card__info {
  padding: 24px;
  text-align: center;
}

.album-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.album-card__btn {
  display: inline-block;
}

/* Album Lightbox */
.album-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.album-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.album-lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color var(--transition);
}

.album-lightbox__close:hover {
  color: var(--clr-accent);
}

.album-lightbox__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
  max-height: 90vh;
}

.album-lightbox__main {
  max-height: 70vh;
  max-width: 80vw;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.album-lightbox__thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.album-lightbox__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity var(--transition), border-color var(--transition);
}

.album-lightbox__thumb:hover {
  opacity: 0.8;
}

.album-lightbox__thumb.active {
  border-color: var(--clr-accent);
  opacity: 1;
}

@media (max-width: 768px) {
  .albums__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 340px;
  }

  .album-lightbox__main {
    max-height: 60vh;
    max-width: 95vw;
  }

  .album-lightbox__thumb {
    width: 60px;
    height: 60px;
  }
}

/* ---------- Events ---------- */
.events {
  padding-top: 120px;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.events__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.events__item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.events__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.events__day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.events__month {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.events__info {
  flex: 1;
}

.events__info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.events__info p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.events__note {
  text-align: center;
  color: var(--clr-text-muted);
  margin-top: 40px;
  font-style: italic;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--clr-bg-alt);
  padding-top: 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--clr-text-muted);
}

.contact__item svg {
  flex-shrink: 0;
  color: var(--clr-accent);
}

.contact__item strong {
  display: block;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.contact__socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.contact__social:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  box-shadow: 0 0 15px var(--clr-accent-glow);
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--clr-text-muted);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--clr-accent);
}

.contact__form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
  text-align: center;
  margin-bottom: 24px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__logo-icon {
  height: 1.4em;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}

/* ---------- Lite YouTube Embed ---------- */
lite-youtube {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
}

lite-youtube::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--transition);
}

lite-youtube:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

lite-youtube.lyt-activated {
  cursor: default;
}

lite-youtube.lyt-activated::after {
  display: none;
}

lite-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lyt-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 68px;
  height: 48px;
  background: rgba(212, 160, 23, 0.9);
  border-radius: 12px;
  transition: all var(--transition);
}

lite-youtube:hover .lyt-playbtn {
  background: var(--clr-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.lyt-playbtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--clr-bg);
}

/* ---------- Video Cards ---------- */
.video-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-card__embed {
  position: relative;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 20px;
}

/* Music section video grid (index page - 4 videos) */
.music__video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.music__more {
  text-align: center;
  margin-top: 40px;
}

/* Videos page full grid (glasba.html - all videos) */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ---------- Page Header (glasba.html) ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 40px;
  background: var(--clr-bg-alt);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.page-header__subtitle {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.page-header__back:hover {
  color: var(--clr-accent);
}

.videos-page {
  padding-top: 40px;
}

/* Active nav link */
.nav__link--active {
  color: var(--clr-text) !important;
}

/* ---------- Fade-in Animation (Staggered) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Noise Texture Overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
  }

  .nav__links.active {
    right: 0;
  }

  .nav__links a {
    font-size: 1.1rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__stats {
    gap: 24px;
  }

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

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

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

  .gallery-full-grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .events__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }

  .events__date {
    flex-direction: row;
    gap: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .about, .music, .gallery, .events, .contact {
    padding-top: 90px;
  }

  .hero__scroll {
    display: none;
  }

  .hero-wrap {
    height: 150vh;
  }

  .section__divider {
    height: 30px;
  }

  .marquee--accent {
    transform: rotate(-2deg) scale(1.04);
  }

  .countdown {
    padding: 24px 16px;
  }

  .countdown__unit {
    min-width: 56px;
  }

  .gallery__swiper .swiper-slide {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .about__stats {
    flex-direction: column;
    gap: 16px;
  }

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

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

  .countdown__timer {
    gap: 4px;
  }

  .countdown__unit {
    min-width: 48px;
  }
}
