/* Garage door animation for #home section */
#home {
  transition: clip-path 0.18s cubic-bezier(.95,0,.8,1);
  clip-path: inset(0 0 0 0);
}
#home.garage-door-animate {
  clip-path: inset(0 0 100% 0);
}
#home.garage-door-reverse {
  clip-path: inset(0 0 0 0);
}
#home.garage-door-animate {
  clip-path: inset(0 0 100% 0);
}
/* Separator between video and aktualnosci */
.section-separator {
  width: 100%;
  height: 4vw;
  background: linear-gradient(to bottom, rgba(24,24,24,0) 0%, #181818 100%);
  border: none;
  margin: 0;
  z-index: 2;
}
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  min-height: 100dvh;
  font-family: 'Oswald', Arial, sans-serif;
}
/* Space below video for aktualnosci content */
#aktualnos-wrapper {
  min-height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6vw 0 4vw 0;
  /* slightly updated darker base to better separate the section */
  background: linear-gradient(180deg, rgba(15,15,16,0.98), rgba(24,24,24,0.98));
  position: relative;
  overflow: hidden;
  color: #e9e9e9; /* default text color inside wrapper */
  z-index: 1;
}

/* --- Grayscale / neat styling for aktualnosci wrapper --- */
/* Desaturate media inside the wrapper for a grayscale look; restore on hover */
#aktualnos-wrapper img {
  filter: grayscale(100%) contrast(0.98) brightness(0.95);
  transition: filter 260ms ease, transform 220ms ease;
}
#aktualnos-wrapper img:hover,
#aktualnos-wrapper .cover img:hover,
#aktualnos-wrapper .music-links a img:hover,
#aktualnos-wrapper .collab-logos img:hover {
  filter: none;
  transform: translateY(-4px) scale(1.02);
}

/* Tidy card appearance inside the wrapper */
#aktualnos-wrapper .card,
#aktualnos-wrapper .aktualnosci-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  padding: clamp(1.1rem, 1.6vw, 2.4rem);
  border-radius: 0.6rem;
}

/* Headings and dividers tuned for the grayscale wrapper */
#aktualnos-wrapper .block-title,
#aktualnos-wrapper .aktualnosci-card h2 {
  color: #f3f3f3;
  letter-spacing: 0.06em;
}
#aktualnos-wrapper .divider {
  width: 72px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(200,200,200,0.16), rgba(255,255,255,0.04));
}

/* Links inside the wrapper: muted by default, brighten on hover */
#aktualnos-wrapper a {
  color: #cfcfcf;
  transition: color 160ms ease, opacity 160ms ease;
}
#aktualnos-wrapper a:hover {
  color: #ffffff;
}

/* Slightly increase spacing between blocks inside wrapper for clarity */
#aktualnos-wrapper > .block {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

/* Make the featured gallery blend with grayscale look */
#aktualnos-wrapper .featured-gallery .cover {
  box-shadow: 0 6px 22px rgba(0,0,0,0.55);
}

/* On very small screens reduce borders and padding to save space */
@media (max-width: 480px) {
  #aktualnos-wrapper .card, #aktualnos-wrapper .aktualnosci-card { padding: 1rem; border-width: 1px; }
  #aktualnos-wrapper .divider { width: 56px; }
}
/* Logo row for logo and language links */
.logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: 100%;
}
.logo-row .logo-text {
  margin: 0;
}
.logo-row .simple-links {
  margin-top: 0;
    font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5vw;
}
.logo-row .simple-links a {
  font-size: 2.5rem;
  padding: 0 0.3em;
}

.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 3vw;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 48px;
  height: 48px;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1);
}
.scroll-indicator--hidden {
  opacity: 0;
  pointer-events: none;
}
.arrow-bounce {
  width: 48px;
  height: 48px;
  animation: arrow-bounce 1.2s infinite cubic-bezier(.5,0,.5,1);
  display: block;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}
/* Aktualnosci grid layout for index page */
.aktualnosci-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
}
.aktualnosci-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 2vw auto;
}
.aktualnosci-card {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 420px;
  margin: 0;
  background: #181818;
  border: 2px solid #ff0000;
  box-shadow: 0 0 24px #000, 0 0 8px #ff0000 inset;
  color: #fff;
  font-family: 'Arial Black', Arial, sans-serif;
  border-radius: 1vw 0 1vw 0;
  padding: 2vw 2vw 1vw 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
}
.aktualnosci-card h2 {
  color: #ff0000;
  font-size: 2rem;
  margin-bottom: 1vw;
  text-shadow: 0 2px 8px #000;
  letter-spacing: 0.1em;
}
.aktualnosci-card p, .aktualnosci-card a, .aktualnosci-card .music-links, .aktualnosci-card .collab-logos {
  font-size: 1.1rem;
  margin-bottom: 1vw;
}
.aktualnosci-card .music-links img, .aktualnosci-card .collab-logos img {
  filter: grayscale(0.2) contrast(1.2);
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0.5vw; /* keep a small outer margin for spacing */
  max-height: 48px;
  box-shadow: none;
  transition: filter 0.2s;
}

.aktualnosci-card .music-links img:hover, .aktualnosci-card .collab-logos img:hover {
  filter: none;
  box-shadow: none;
}
.aktualnosci-card .contact-link {
  color: #fff;
  background: #ff0000;
  padding: 0.5em 1.5em;
  border-radius: 0.5em;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}





.aktualnosci-card .contact-link:hover {
  background: #fff;
  color: #ff0000;
}
/* Make the contact link in the Kontakt section more prominent and responsive */
#kontakt .contact-link {
  font-size: clamp(1.2rem, 1.0vw, 3rem);
  padding: 0.6em 1.6em;
  font-weight: 600;
  border-radius: 0.6em;
}
.main-footer {
  color: #fff;
  background: transparent;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2vw;
  letter-spacing: 0.1em;
}
.main-footer a {
  color: #ff0000;
  text-decoration: none;
  font-weight: bold;
}
.main-footer a:hover {
  text-decoration: underline;
  color: #fff;
}
/* Centered Language Links */
.simple-links {
  position: absolute;
  top: 2vw;
  right: 2vw;
  z-index: 2000;
  text-align: right;
  margin-top: 0;
  font-size: 1.5rem;
  font-family: 'Inter', Arial, sans-serif;
  border-radius: 0.5em;
  padding: 0.5em 1em;
  box-shadow: 0 2px 12px #000a;
}
.simple-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
    padding: 0 0.1em;
  transition: color 0.2s;
}
.simple-links a:hover {
  color: #ff0000;
}
/* Logo Text Style */
.logo-text {
  font-family: 'Oswald', 'Space Grotesk', 'Impact', 'Arial Black', Arial, sans-serif;
  font-size: 7vw;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0em;
  font-weight: bold;
  text-align: center;
  margin: 2.5rem 0 2.5rem 0;
  text-shadow: 0 2px 16px rgb(0, 0, 0), 0 0 2px #fff, 0 0 8px #000;
  line-height: 1.1;
}
/* Gray stained glass overlay effect */
.stained-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(135deg, rgba(60,60,60,0.38) 0px, rgba(100,100,100,0.22) 8px, rgba(60,60,60,0.38) 16px),
              repeating-linear-gradient(45deg, rgba(80,80,80,0.18) 0px, rgba(30,30,30,0.13) 12px, rgba(80,80,80,0.18) 24px),
              rgba(30,30,30,0.38);
  backdrop-filter: blur(3.5px) brightness(0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  
/* Scroll Down Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 2vw;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
  z-index: 1001;
  pointer-events: none;
}
.scroll-indicator span {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 8px #000;
}
.scroll-indicator svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  filter: drop-shadow(0 0 6px #000);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}
  mix-blend-mode: multiply;
}

/* When the video is faded out, make the overlay noticeably darker */
/* This selector targets the overlay when the video element before it has the class .video-fade-out */
#background-video.video-fade-out ~ .stained-glass-overlay,
.stained-glass-overlay.darkened {
  /* darker base tint */
  background: repeating-linear-gradient(135deg, rgba(30,30,30,0.62) 0px, rgba(50,50,50,0.42) 8px, rgba(30,30,30,0.62) 16px),
              repeating-linear-gradient(45deg, rgba(50,50,50,0.32) 0px, rgba(10,10,10,0.2) 12px, rgba(50,50,50,0.32) 24px),
              rgba(8,8,8,0.62);
  backdrop-filter: blur(4.5px) brightness(0.45) contrast(1.05);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: transparent; /* Black background for a bold look */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Navigation Styles */
  header {
    background: transparent; /* Dark gray background for the header */
    padding: 1rem 0;
    position: relative;
    z-index: 2;
  }
  
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 50%;
    bottom: 2vw;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
    z-index: 1001;
    pointer-events: none;
    width: 48px;
    height: 48px;
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    transition: color 0.7s ease;
  }
  
  nav ul li a:hover {
    color: #ff0000; /* Red for hover effect */
  }
  
  /* Main Section Styles */
  main {
    text-align: center;
    padding: 2rem 1rem;
    flex: 1 0 auto;
  }
  
  main img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  /* Footer Styles */
  footer {
    background: #1a1a1a;
    padding: 1rem 0;
    text-align: center;
    flex-shrink: 0;
  }
  
  footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  footer ul li {
    margin: 0 1rem;
  }
  
  footer ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
  }
  
  footer ul li a:hover {
    color: #ff0000;
  }


  /* Style for the video background */
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  object-fit: cover; /* Ensures the video covers the entire section */
  z-index: -2; /* Places the video behind overlay and other content */
  transition: opacity 0.25s cubic-bezier(.8,0,.2,1);
  opacity: 1;
}

#background-video.video-fade-out {
  opacity: 0;
  pointer-events: none;
}

  
  /* Content overlay styles */
  section#home {
  position: relative;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff; /* Text color for visibility */
  margin: 0;
  }
  
  section#home .content {
    z-index: 1; /* Ensures content appears on top of the video */
  }
  
  section#home h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  section#home p {
    font-size: 1.5rem;
    max-width: 600px;
      font-size: 1.1rem;
      font-family: 'Inter', Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 0 0.3em;
  }
  

  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 0.5rem 0;
    }
  
    footer ul {
      flex-direction: column;
    }
  
    footer ul li {
      margin: 0.5rem 0;
    }
  }
  
/* Full-width block layout for aktualnosci sections */
.block {
  width: 100vw; /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: block;
  padding: 5vw 0;
}
.block--hero {
  padding: 1vw 0 1vw 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.12), rgba(12,12,12,0.06));
  background-color: #121212;
}


.block--nav {
  padding: 0.6rem 0;
  background: #0b0b0b; /* dark nav background */
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.block--dark {
  background: #121212;
}
.block--muted {
  background: #181818;
}

/* Ensure text inside blocks is light and links use the accent */
.block, #aktualnosci-wrapper {
  color: #e9e9e9;
}
.block a, #aktualnosci-wrapper a {
  color: #ffffff;
  text-decoration: none;
}
.block a:hover, #aktualnosci-wrapper a:hover {
  color: #ff0000;
}

/* Navigation inside aktualnosci */
.main-nav {
  display: flex;
  gap: 1.6vw;
  padding: 0.6rem 0;
  /* allow the nav to take available space so links can be centered */
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.nav-row {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 60;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  position: relative;
}

/* Responsive: on narrow screens stack nav above language selector */
@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: stretch;
    height: 7.5rem;
    gap: 0.8rem;
  }
  .main-nav {
    justify-content: center;
    order: 0;
    width: 100%;
  }
  .lang-select {
    position: static;
    transform: none;
    justify-content: right;
    order: 2;
    margin-top: 3rem;
    width: 100%;
  }
}
.lang-select {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.lang-select .lang {
  color: #e9e9e9;
  padding: 0.35em 0.6em;
  
  border-radius: 0.25em;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.lang-select .lang:hover {
  background: #e9e9e9;
  color: #0b0b0b;
}
.main-nav a {
  color: #e9e9e9;
  padding: 0.55em 0.9em;
  border-radius: 0.35em;
  font-weight: 600;
  transition: color 0.18s, background 0.18s;
}
/* invert text color on hover (light background + dark text) */
.main-nav a:hover {
  background: #e9e9e9;
  color: #0b0b0b;
}

/* Overlay language selector at the top-right of the nav-row on wider screens */
.lang-select {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 20;
}

/* Visual treatment when nav-row is sticky (applied by JS) */
.nav-row.is-sticky {
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  background: #0b0b0b; /* match block--nav */
  border-radius: 0;
}

/* Placeholder inserted when nav becomes fixed to preserve layout */
.nav-placeholder {
  display: block;
  width: 100%;
  height: 0;
}

/* Card text/colors */
.block .card h2 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.block .card p, .block .card a {
  color: #dcdcdc;
}

/* Footer in the wrapper */
.block .main-footer {
  color: #bdbdbd;
}


/* Centered inner container so content stays readable */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2vw;
}

/* Ensure blocks stack vertically from top to bottom inside wrapper */
#aktualnosci-wrapper {
  align-items: stretch;
}

/* Increase base font size inside the wrapper for improved readability */
#aktualnosci-wrapper, .block {
  font-size: clamp(1rem, 1.05rem + 0.4vw, 1.15rem); /* ~16px -> 18.4px on large */
  line-height: 1.6;
}

/* Slightly larger body text inside cards */
.block .card p, .block .card a, .block .card li {
  font-size: clamp(0.98rem, 0.98rem + 0.3vw, 1.05rem);
}

/* Tweak headings inside wrapper */
.block .card h2, .block .block-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

/* Helper to make a block visually full-bleed without affecting inner container */
.block--full-bleed {
  padding-left: 0;
  padding-right: 0;
}

/* Slight visual tweak for cards inside blocks */
.block .card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Make the collab logos flow nicely across the container */
.collab-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: center;
  align-items: center;
}

.collab-logos img {
  max-width: clamp(80px, 12vw, 140px);
  height: auto;
  object-fit: contain;
  margin: 0.7rem;
}

/* ---- Decorative & typographic polish for wrapper blocks ---- */
.block {
  /* subtle textured overlay */
  background-image: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.01), transparent 8%),
                    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.01), transparent 8%);
  background-blend-mode: overlay;
}

.block .block-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 3.4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f3f3f3;
  margin: 0 0 1rem 0;
  text-align: center;
}

/* Reduce vertical gap for block titles on small screens */
@media (max-width: 490px) {
  .block .block-title {
    margin: 0 0 0.4rem 0; /* smaller bottom gap */
    letter-spacing: 0.03em; /* tighten letters to save vertical space */
    line-height: 1.05;
    font-size: clamp(3.6rem, 6.0vw, 2.2rem); /* scale the title down on very small screens */
  }
}

@media (max-width: 540px) {
  .block .block-title {
    margin: 0 0 0.4rem 0; /* smaller bottom gap */
    letter-spacing: 0.03em; /* tighten letters to save vertical space */
    line-height: 1.05;
    font-size: clamp(3.8rem, 6.0vw, 2.2rem); /* scale the title down on very small screens */
  }
}

.subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #f3f3f3;
  margin-bottom: 1.4rem;
  text-align: center;
}

.block .divider {
  height: 1px;
  width: 64px;
  margin: 0.8rem auto 1.2rem auto;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255, 255, 255, 0.45), rgba(255,255,255,0.06));
  border-radius: 2px;
}

.block .card {
  padding: 2rem 2.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
  border-radius: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.block .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* uniform responsive logo sizing for music and credits */
.music-links a img, .collab-logos img {
  /* clamp(min, preferred, max) keeps sizes reasonable across viewports */
  max-height: clamp(64px, 7.5vw, 96px);
  object-fit: contain;
  filter: grayscale(0.05) contrast(1.05) brightness(0.95);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.music-links a img:hover, .collab-logos img:hover {
  transform: translateY(-4px) scale(1.02);
  filter: none;
}

/* Make the first music link slightly larger to emphasize Bandcamp */
.music-links a:first-child img {
  max-height: clamp(84px, 9.5vw, 120px);
}

/* Neat arrangement for music links */
.music-links {
  display: flex;
  gap: 1.8rem; /* increased spacing between logos */
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0; /* a bit more vertical breathing */
}
.music-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* remove background/backdrop so logos show as-is */
  padding: 0.08rem 0.08rem; /* tiny click padding */
  background: transparent;
  border-radius: 0;
}

/* Extra space to the right of the first (emphasized) logo */
.music-links a:first-child {
  margin-right: 0.8rem;
}

/* Featured gallery: horizontal auto-scrolling album covers */
.featured-gallery {
  margin-top: 1.4rem;
  overflow: hidden;
  width: 100%;
}
.featured-gallery .gallery-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  will-change: transform;
}
.featured-gallery .cover {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}
.featured-gallery .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make gallery smaller on narrow screens */
@media (max-width: 600px) {
  .featured-gallery .cover { width: 100px; height: 100px; }
}

/* First-logo special sizing removed — all logos use the same clamp() sizing */

/* Spacing adjustments for the hero and nav */
.block--hero .main-header {
  text-align: center;
}
.block--hero .main-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.main-image, .music-links img, .collab-logos img {
  max-width: 100%;
  height: auto;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .container { padding: 0 5vw; }
  .main-nav { gap: 10px; }
  .block .card { padding: 1.1rem; }
  /* slightly smaller logos on tablet-sized screens */
  .music-links a img, .collab-logos img { max-height: 56px; }
  .music-links a:first-child img { max-height: 72px; }
  .nav-row { flex-direction: column; gap: 0.6rem; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 12vw; }
  .main-nav a { padding: 0.45em 0.6em; font-size: 0.92rem; }
}

@media (max-width: 420px) {
  /* Slight reduction on the smallest phones to avoid overflow */
  #aktualnos-wrapper, .block { font-size: 0.98rem; }
  .block .card p, .block .card a { font-size: 0.95rem; }
}

@media (max-width: 360px) {
  body { font-size: 0.9rem; }
  .block .card h2 { font-size: 1.4rem; }
  .logo-text { font-size: clamp(1.8rem, 10vw, 3rem); }
}
