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

body {
  font-family: 'Open Sans', sans-serif;
  background: black;
  color: #eee;
  margin: 0;
  padding: 0;
}

.page-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #4caf50;
  margin: 30px 0;
  letter-spacing: 3px;
}

.band-container {
  display: flex;
  background: #222;
  border-radius: 10px;
  max-width: 850px;
  margin: 20px auto;
  overflow: hidden;
  padding: 40px 40px;
}

.band-photo {
  width: 50%;
  object-fit: cover; 
  background: #000;
  border:5px solid #222;
}

.band-bio {
  padding: 20px;
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 1rem;
}

.band-bio p {
  margin: 0;
}

@media (max-width: 700px) {
  .band-container {
    flex-direction: column;
    text-align: center;
  }

  .band-photo {
    width: 100%;
    height: auto;
  }
}


header {
  background: #1f1f1f;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.showcase-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #4caf50; 
  letter-spacing: 4px;
  margin: 40px 0 30px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 10px;
}

.showcase-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #4caf50;
  margin: 8px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 8px #4caf50aa;
}

.showcase-subtitle {
  text-align: center;
  color: #a5d6a7; 
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  margin-top: -10px; 
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-style: italic;
}
.logo-section {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4caf50; 
}

.logo-section img.logo {
  height: 50px;
  margin-right: 12px;
}

.logo-section h1 {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.6rem;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.info-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #4caf50;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-card p {
  color: #ddd;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #4caf50;
  outline: none;
}


.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  z-index: 1000; 
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #4caf50;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

footer {
  background: #1f1f1f;
  color: #777;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-top: 1px solid #333;
}

@media (max-width: 600px) {
  nav ul.nav-links {
    flex-direction: column;
    gap: 15px;
  }
  
  section.hero {
    margin: -100px 20px 40px 20px;
    font-size: 1.1rem;
    padding: 25px 20px;
  }
}

.instagram-button {
  display: inline-block;
  background: #1a892c;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
}

.instagram-button:hover {
  background: #4caf50;
}
.showcase-subtitle {
  text-align: center;
  color: #a5d6a7; 
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  margin-top: -10px; 
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-style: italic;
}
.@media (max-width: 900px) {
  section.gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 100px;
  }
}

@media (max-width: 600px) {
  nav ul.nav-links {
    flex-direction: column;
    gap: 15px;
  }
  section.gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 90px;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #eee;
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav ul.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1f1f1f;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    gap: 15px;
    display: none;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }

  nav ul.nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  header {
    padding: 15px 20px;
  }

  .logo-section h1 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .gallery-title {
    font-size: 18px;
    margin: 30px 0 20px;
    letter-spacing: 2px;
  }

  .gallery-title::after {
    width: 50px;
    height: 3px;
  }

  section.gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
    gap: 8px;
    margin: 10px auto;
  }

  section.gallery img {
    height: 100px;
    object-fit: cover;
  }

  .showcase-subtitle {
    font-size: 0.9rem;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-close {
    font-size: 2.5rem;
    top: 15px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  section.gallery {
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: auto; 
    gap: 8px;
    margin: 10px auto;
  }

  section.gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .menu-toggle {
    height: 24px;     
    align-self: center; 
  }

  .menu-toggle span {
    height: 2px;      
  }

  .logo-section img.logo {
    height: 35px;
  }

  .logo-section h1 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  header {
    padding: 12px 20px; 
  }
}
