/* Street69 — light redesign (original palette) */
:root {
  --bg: #0c0c0c;
  --bg-panel: #161616;
  --bg-panel-2: #1c1c1c;
  --text: #d4d4d4;
  --muted: #9a9a9a;
  --heading: #f0f0f0;
  --accent: #7c0303;
  --accent-soft: #a31a1a;
  --border: #2e2e2e;
  --divider: #768163;
  --link: #c3c3c3;
  --max: 980px;
  --font: Georgia, "Times New Roman", Times, serif;
  --font-ui: Tahoma, Verdana, Geneva, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(124, 3, 3, 0.22), transparent 55%),
    linear-gradient(180deg, #111 0%, var(--bg) 40%, #080808 100%);
  line-height: 1.55;
}

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

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

.site-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 8px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--heading);
}

.site-logo img {
  width: min(180px, 42vw);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(124, 3, 3, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.site-logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 22px rgba(124, 3, 3, 0.55));
}

.site-logo__name {
  font-family: var(--font-ui);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #eee;
}

.site-logo__tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-decor {
  width: 100%;
  max-width: var(--max);
  margin: 10px auto 0;
  height: 72px;
  background: url("/images/svetlo.png") center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

/* Nav */
.site-nav {
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 2px;
  padding: 10px 8px;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--link);
  padding: 8px 11px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  border-color: #3a1515;
  background: linear-gradient(180deg, rgba(124, 3, 3, 0.35), rgba(0, 0, 0, 0.2));
}

.site-nav a.nav-external {
  color: #b8b08a;
}

.nav-toggle {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
  margin: 8px auto;
}

/* Main */
.site-main {
  flex: 1 0 auto;
  padding: 28px 0 48px;
}

.page-header {
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading);
}

.page-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Home */
.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
  animation: fade-up 0.7s ease both;
}

.home-hero__visual {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.home-hero h1 {
  margin: 18px 0 6px;
  font-family: var(--font-ui);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.home-hero p {
  margin: 0;
  max-width: 36em;
  color: var(--muted);
}

.home-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.home-col {
  flex: 1 1 280px;
  min-width: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 16px 18px 20px;
  animation: fade-up 0.75s ease both;
}

.home-col:nth-child(2) {
  animation-delay: 0.08s;
}

.home-col:nth-child(3) {
  animation-delay: 0.16s;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

.section-title h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.section-title img {
  height: 28px;
  width: auto;
}

.news-item {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #242424;
}

.news-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-date {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--accent-soft);
  margin: 0 0 4px;
}

.news-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.more-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* Concerts table */
.koncert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.koncert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #282828;
}

.koncert-day {
  font-family: var(--font-ui);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  min-width: 2.2em;
  padding-right: 12px;
  border-right: 1px solid var(--divider);
}

.koncert-meta {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  color: #fff;
  min-width: 5.5em;
  padding-right: 10px;
  border-right: 1px solid var(--divider);
  line-height: 1.3;
}

.koncert-time {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  color: #fff;
  min-width: 3.5em;
}

.koncert-place {
  flex: 1 1 160px;
  font-size: 0.92rem;
  color: #c3c3c3;
  line-height: 1.4;
}

.koncert-place b {
  color: #fff;
  font-weight: 700;
}

.concerts-plain {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.concerts-plain .line {
  padding: 6px 0;
  border-bottom: 1px solid #222;
}

/* Band members */
.members {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.member {
  flex: 0 1 170px;
  text-align: center;
}

.member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  margin: 0 auto 10px;
  background: #111;
}

.member h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: #fff;
}

.member p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Media */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.video-grid .embed {
  flex: 1 1 280px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background: #000;
}

.video-grid iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery a {
  flex: 0 1 calc(25% - 8px);
  min-width: 100px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #111;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

/* Partners */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.partners img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px;
}

/* Discography */
.albums {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.album {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 18px;
}

.album__cover {
  flex: 0 0 180px;
  width: 180px;
  border: 1px solid var(--border);
}

.album__body {
  flex: 1 1 260px;
  min-width: 0;
}

.album__body h2 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 1.2rem;
  color: #fff;
}

.tracklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.tracklist li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #262626;
  font-size: 0.92rem;
}

.tracklist a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-block {
  flex: 1 1 240px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 16px 18px;
}

.contact-block h2 {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 8px;
}

.contact-block p {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

/* News page */
.news-feed .news-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 14px 16px;
  margin-bottom: 12px;
}

/* Social strip */
.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.social-strip img {
  height: 36px;
  width: auto;
}

.social-strip a[href*="facebook"] img {
  height: 48px;
}

/* Content helpers */
.content-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 18px 20px;
}

/* Blog listing tweaks in site chrome */
.blog-container {
  width: 100%;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 14px 16px;
}

.blog-title {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
}

.blog-title a {
  color: #fff;
}

.blog-title a:hover {
  color: var(--accent-soft);
}

.blog-preview {
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-preview p {
  margin: 0;
}

/* Article shell keeps .romlicontainer rules from template */
.romlicontainer {
  max-width: 100%;
  color: var(--text);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #0a0a0a url("/images/patka.jpg") center / cover no-repeat;
  border-top: 1px solid var(--border);
  color: #bbb;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82));
}

.site-footer__logo {
  height: 28px;
  width: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.site-footer__nav a {
  color: #ddd;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__copy {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #999;
}

.romlifooter {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 20px;
}

.romlidata {
  margin: 24px 0 8px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav__inner {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 12px;
  }

  .site-nav.is-open .site-nav__inner {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .gallery a {
    flex: 0 1 calc(50% - 8px);
  }

  .header-decor {
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
