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

body {
  font-family: 'Open Sans', sans-serif;
  background: black;
  color: #eee;
  line-height: 1.6;
}

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

.logo-section {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4caf50; /* Vibrant green */
}

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

.logo-section h1 {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.6rem;
}
.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;
}
.show-container {
  display: flex;
  background: #222;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
  margin: 102px auto;
  max-width: 850px;
  overflow: hidden;
  color: #eee;
  font-family: 'Open Sans', sans-serif;
}

.show-photo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 10px 0 0 10px;
  background-color: #222;
  flex-shrink: 0;
}
.show-details {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.show-date {
  color: #4caf50;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.show-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 4px;
  color: #a5d6a7;
}

.show-venue {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

.show-extra {
  font-size: 0.95rem;
  color: #ccc;
  font-style: italic;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .show-container {
    flex-direction: column;
    max-width: 100%;
  }

  .show-photo {
    width: 100%;
    height: 220px;
    border-radius: 10px 10px 0 0;
  }

  .show-details {
    padding: 15px 20px;
  }

  .show-name {
    font-size: 1.3rem;
  }
}

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;
}


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;
  }
}
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.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);
  }
}
.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;  /* reduce side padding */
  }

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

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

}

@media (max-width: 600px) {
  .show-container {
    flex-direction: column;
    max-width: 100%;
    margin: 20px auto;
  }

  .show-photo {
    width: 100%;
    height: auto; 
    max-height: 220px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
  }

  .show-details {
    padding: 15px 20px;
  }

  .show-date {
    font-size: 0.85rem;
  }

  .show-name {
    font-size: 1.3rem;
  }

  .show-venue {
    font-size: 1rem;
  }

  .show-extra {
    font-size: 0.9rem;
  }
}

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

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


@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; 
  }
}

