/* ===== RESET / BASE ===== */

body {
  margin: 0;
  background: #0b0b0b;
  color: #e5e5e5;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
}

/* ===== CONTAINER ===== */

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(23px, 6vw, 95px);
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  border-bottom: 1px solid #222;
}

/* ===== HEADER LAYOUT ===== */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: relative;
}

/* ===== BRAND ===== */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 40px 0 0; 
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text {
  font-family: "Rubik", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: 2px;
  color: #dab00b; /*#e31212;*/
  line-height: 1;
  text-shadow:
    2px 2px 0 #000,
    0 0 10px rgba(227,18,18,0.7),
    0 0 20px rgba(227,18,18,0.4);
 
}

.logo-text:hover {
  color: #ff2a2a;
}

/* ===== NAV ===== */

.main-nav {
  position: static;
}

/* ===== MENU (DESKTOP) ===== */

.menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.menu-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px 20px;
}

.menu a {
  color: #ddd;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.menu a:visited {
  color: #ddd;
}

.menu a:hover {
  color: #d94a4a;              /* przygaszona czerwień */
  text-decoration: none;
}

/* ===== HAMBURGER ===== */

.menu-toggle {
  display: none;
}

/* ===================================== */
/* ========== MOBILE ==================== */
/* ===================================== */

@media (max-width: 900px){

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text {
    font-size: 32px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;

    position: absolute;
    top: 10px;
    right: 15px;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
    background: #111;
    padding: 15px 20px;

/*    position: static;   /* ← usuwa panel boczny */
  }


  .menu li {
    width: 100%;
  }

  .menu.active {
    display: flex;
  }
}
  .menu a {
    font-size: 16px;
  }

/* ===== TREŚĆ ===== */

.page-title {
  font-family: "Rubik", Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
}

/* ===== LINKI ===== */

a {
  color: #d94a4a;              /* przygaszona czerwień */
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:visited {
  color: #a83a3a;              /* ciemniejszy, "zużyty" kolor */
}

a:hover {
  color: #e31212;
  opacity: 1;
  text-shadow:
    0 0 2px #000,
    0 0 6px rgba(227,18,18,0.5);
}

/* ===== NEWS ===== */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  border-left: 3px solid #e31212;
  padding-left: 20px;
}

.news-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}

.news-item h2 {
  margin: 0 0 10px;
  color: #fff;
}

.news-item p {
  margin: 0;
  line-height: 1.6;
}

/* ===== FOOTER ===== */

.site-footer {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* ===== SKŁAD ZESPOŁU ===== */

.sklad-content {
  margin-top: 30px;
}

.sklad-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid #e31212;
}

.sklad-block h2 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #dab00b;              /* ciemny żółty */
}

.sklad-block h2 span {
  color: #888;
  font-size: 16px;
}

.sklad-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sklad-list li {
  margin-bottom: 6px;
  line-height: 1.6;
}


/* ===== HISTORIA ===== */

.tekst { 
  text-align: justify;
  line-height:120%;
  color: #ddd;
}

.cytat {
  margin: 15px 0 15px 55px;
  width:80%;
  line-height:125%;
  font-style: italic;
}


/* ===== WYWIADY ===== */

.wywiady-content {
  margin-top: 20px;
}

.wywiady-block {
  margin: 30px 0 0 0;
  padding-left: 20px;
  border-left: 3px solid #e31212;
}

.wywiady-block h2 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #d94a4a;		/* przygaszona czerwień */
}

.wywiady-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wywiady-list li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.wywiady-list a {
  color: #ddd;
}

.wywiady-list a:hover {
  color: #d94a4a;		/* przygaszona czerwień */
  text-decoration: none;
}


/* ===== DYSKOGRAFIA ===== */

.discography {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.album {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 3px solid #e31212;
  padding-left: 20px;
  overflow: visible; /* upewnij się */
}

.album img {
  width: 140px;
  height: auto;
}

.album_solo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-left: 20px;
  overflow: visible; /* upewnij się */
}

.album_solo img {
  width: 250px;
  height: auto;
}

.album_big img {
  width: 200px;
  height: auto;
}

h1 {
  font-size: 20px;
  font-weight: 700;
  color: #d94a4a;		/* przygaszona czerwień */
}


/* kontener linku */
.album a {
  display: inline-block;
}

.album a img {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.album a:hover img {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 20px rgba(255,255,255,0.8);
}

.album_solo a {
  display: inline-block;
}

.album_solo a img {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.album_solo a:hover img {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 20px rgba(255,255,255,0.8);
}

.album-info h2 {
  margin: 0;
}

.year {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.opis {
  font-size: 14px;
}

span.album_opis {
	font-size:13px;
	color:#F7EDD2;
	text-transform: uppercase;
}

.mp3 { font-size: 11px;
}

/* mobile */

@media (max-width: 700px){
  .album {
    flex-direction: column;
  }

  .album img {
    width: 100%;
    max-width: 300px;
  }
}

.tracklista {
  color: #dab00b;              /* ciemny żółty */
}

.tracklista a, a:visited {
  color: #a83a3a;              /* przygaszona czerwień */
}

.tracklista a:hover {
  color: #e31212;
}


/* ===== GALERIA ===== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;   /* przycina zamiast rozciągać */
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* lightbox */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}


/* ===== MULTIMEDIA ===== */

 .multimedia-title { 
   font-size: 18px;
   text-transform: uppercase; 
}

.multimedia-row {
  display: flex;
  gap: 30px;
}

.multimedia-left,
.multimedia-right {
  flex: 1;
}

.multimedia-left {
  color: #d94a4a;
  text-align: left;
}

.multimedia-right {
  color: #d94a4a;
  text-align: left;
}

.multimedia-left a,
.multimedia-right a {
  color: #ddd;
  text-decoration: none;
}

.multimedia-left a:hover,
.multimedia-right a:hover {
  color: #fff;
  text-decoration: underline;
}

.video {
  width: 100%;
  max-width: 800px; /* opcjonalnie limit na desktop */
  aspect-ratio: 16 / 9;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

p.yt {
  line-height:220%;
  margin: 10px 0 0 0;
  color: #d94a4a;
}

.multimedia-left {
  color: #d94a4a;		/* przygaszona czerwień */
  float: left;
  width: calc(50% - 50px); /* połowa szerokości minus połowa odstępu */
  margin: 0 0 50px 0;
}

.multimedia-right {
  color: #d94a4a;		/* przygaszona czerwień */
  float: left;
  width: calc(50% - 50px);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


/* ===== TABULATURY ===== */

.tabulatury-content {
  margin-top: 20px;
  line-height:140%;
}

.tabulatury-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid #e31212;
}

.tabulatury-block h2 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #d94a4a;              /* przygaszona czerwień */
}

.tabulatury-block h2 span {
  color: #888;
  font-size: 13px;
}

.tabulatury-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabulatury-list li {
  margin-bottom: 6px;
  line-height: 1.6;
}


/* ===== SPRZĘT ===== */

.k {
  color: #d94a4a;		/* przygaszona czerwień */
}


/* ===== KONTAKT ===== */
.kontakt-note {
  margin: 40px 0 30px 0;
  font-size: 14px;
}

.center {
  text-align: center;
}

.small {
  font-size: 0.7em; /* odpowiednik size="-2" */
}

.separator p {
  padding-top: 15px;
  margin-top: 40px;
  border-top: 1px solid #ccc;
/*  border-bottom: 1px solid #ccc;*/
  text-align: center;
}


/* ===== BLINKING ===== */

.blinking {
  color: #d94a4a;               /* kolor początkowy */
  animation: blink 2s linear infinite; /* 2 sekundy w jedną stronę, w nieskończoność */
}

@keyframes blink {
  0%   { color: #d94a4a; }
  50%  { color: black; }
  100% { color: #d94a4a; }
}