:root {
  --bg-color: #111;
  --text-color: #f0f0f0;
  --accent-color: #e10600;
  --section-padding: 60px 20px;
  --radius: 8px;
  --transition: .25s ease;
  --card-bg: #1e1e1e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Roboto Slab', serif;
  line-height: 1.5;
}

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

a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

h1, h2 {
  font-family: 'UnifrakturCook', cursive;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero {
  position: relative;
  color: white;
  background-color: #111;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center 35%;
  text-align: center;
  padding: 0;
}

.logo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-bottom: 8px;
}

#logo-image {
  display: none;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.8));
}

.main-nav {
  background: rgba(0,0,0,0.9);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #222;
}

.main-nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background .2s;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.08);
}

.section {
  padding: var(--section-padding);
  border-bottom: 1px solid #2a2a2a;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 8px auto 0;
  border-radius: 2px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.member {
  background: var(--card-bg);
  padding: 0.75rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -4px rgba(225, 16, 0, 0.4);
}

.member img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.75rem;
  object-fit: cover;
}

.member h3 {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  color: #fff;
}

.member p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #ccc;
}

.photo-placeholder {
  background: #222;
  width: 100%;
  padding-top: 100%; /* pomer 1:1 */
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder svg {
  position: absolute;
  width: 50%;
  height: 50%;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-block {
  flex: 1 1 300px;
}

.contact-row .email {
  flex: 1 1 250px;
}

.contact-block p {
  margin: 4px 0;
}

.phone a {
  color: var(--text-color);
  text-decoration: underline;
}

.contact-row .social {
  flex: 0 0 auto;
}

.facebook {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #fff;
  transition: background .2s;
}

.facebook svg {
  display: block;
  fill: #fff;
}

.facebook:hover {
  background: rgba(225,16,0,0.15);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn .25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--accent-color);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 8px 25px rgba(225,16,0,0.6);
}
.concert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.concert-card {
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border: 1px solid #2a2a2a;
}

.concert-info {
  flex: 1 1 100%;
}

.concert-date {
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.concert-location {
  margin-bottom: 6px;
  color: #ccc;
}

.concert-links a {
  font-size: 0.85rem;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(225,16,0,0.1);
  color: #e10600;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}

.concert-links a:hover {
  background: rgba(225,16,0,0.2);
}


/* Responsívne */
@media (max-width: 800px) {
  .member { padding: .5rem; }
  .section { padding: 40px 16px; }
  .main-nav .nav-inner { gap: 0.75rem; }
  #logo-image { max-width: 220px; }
}
