:root {
  --main-bg: #0d0d0d;
  --accent: #c1121f;
  --text-light: #f5f5f5;
  --text-muted: #999;
  --font-main: 'Helvetica Neue', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--main-bg);
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Mobile First Base Styles --- */

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  padding: 0 1rem;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow: visible;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #111;
  flex-direction: column;
  align-items: center;
  display: none;
  padding: 1rem 0;
  gap: 1rem;
  list-style: none;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.logo-wrapper {
  position: absolute;
  left: 1rem;
  top: 20px;
  width: 100px;
  height: 100px;
  z-index: 1001;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  background-color: var(--main-bg);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px red;
}

header {
  position: relative;
  padding-bottom: 40px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0.5px 0.5px black;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}   

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Ensure hero content is above the slideshow */
.hero > *:not(.hero-slider) {
  position: relative;
  z-index: 1;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #780000;
}
.rep
{
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

section {
  padding: 4rem 1rem;
  text-align: center;
}

.about, .tour, .music, .contact {
  background-color: #121212;
  margin-bottom: 2rem;
  border-radius: 12px;
}
.about {
  padding: 4rem 1rem;
  background-color: inherit;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.05);
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-column {
  background-color: rgba(255, 255, 255, 0.05); /* very subtle transparent overlay */
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.about-column h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: inherit;
}

.about-column p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
}
/*sekce music*/

.music  img, .contact img {
    max-height: 50px;
    max-width: 50px;
}

.music img:hover, .contact img:hover {
    transform: scale(1.1);
}
.tour ul {
  list-style: none;
  padding: 0;
}

.tour li {
  margin: 0.5rem 0;
  color: var(--text-muted);
}

.media-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.media-links iframe {
  width: 100%;
  max-width: 350px;
  height: 200px;
  border-radius: 10px;
}

.social a {
  margin: 0 0.5rem;
  color: var(--accent);
  text-decoration: none;
}

.band-members-section {
  padding: 60px 20px;
  background-color: #121212; /* dark background like rest of the site */
  text-align: center;
  color: #f0f0f0; /* light text */
}

.band-members-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 600;
}

.band-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.band-member {
  background: #1e1e1e; /* dark card background */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.band-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.band-member img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.band-member h3 {
  margin: 10px 0 6px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}

.band-member p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
}
/* sekce contact */
.contact {
  padding: 4rem 1rem;
  background-color: #111; /* Match your main background color */
  color: #fff;             /* Match your main text color */
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: inherit;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}


/*
.submit-btn {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #45a049;
}*/


footer {
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery {
  padding: 4rem 1rem;
  background-color: #1a1a1a;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.02);
}

.gallery-grid img {
  width: 300px;
  /*height: auto;*/
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* Table container styling */
.table-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 10px;
  background-color: #1e1e1e; /* dark background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Base table style */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

/* Header styling */
table thead {
  background-color: #2e2e2e;
}

table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #444;
}

/* Body styling */
table tbody tr {
  transition: background-color 0.2s;
}

table tbody tr:nth-child(even) {
  background-color: #292929;
}

table tbody tr:hover {
  background-color: #333;
}

table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #444;
}
.song {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    
}

.song:hover {
    transform: scale(1.1);
    color: red;
}

/* Optional: Rounded corners on top */
table thead th:first-child {
  border-top-left-radius: 10px;
}
table thead th:last-child {
  border-top-right-radius: 10px;
}

.download-excel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  margin-top: 24px;
  background-color: #ffffff;
  color: #217346;
  border: 2px solid #217346;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.download-excel:hover {
  background-color: #217346;
  color: #ffffff;
}

.download-excel svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- Tablet and Up --- */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .navbar {
    justify-content: flex-end;
    padding: 0 2rem;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    background: transparent;
    gap: 2rem;
    padding: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .logo-wrapper {
    top: 20px;
    left: 2rem;
    width: 200px;
    height: 200px;
  }

  .logo-img {
    width: 200px;
    height: 200px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .media-links {
    flex-direction: row;
    justify-content: center;
  }

  .media-links iframe {
    width: 300px;
    height: 170px;
  }
}

@media screen and (min-width: 1024px) {
  .band-members-grid {
    grid-template-columns: repeat(3, 1fr); /* max 3 per row on large screens */
  }
}
