.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  box-sizing: border-box;
  top: 0;
  height: 50px;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  /* Burger button hidden on desktop */
}
.navbar.scrolled {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.navbar.scrolled .logo img {
  opacity: 1;
}
.navbar.scrolled nav a {
  opacity: 1;
}
.navbar .burger {
  display: none;
  font-size: 28px;
  background: none;
  color: black;
  border: none;
  cursor: pointer;
}
.navbar .logo img {
  opacity: 0;
  height: 40px;
  transition: opacity 0.4s ease;
}
.navbar nav a {
  opacity: 0;
  color: black;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
  transition: opacity 0.4s ease;
}
.navbar nav a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .navbar .burger {
    display: block;
    /* Show burger on mobile */
  }
  .navbar .nav-links {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    display: none;
    /* Hidden by default */
  }
  .navbar .nav-links.active {
    display: flex;
    /* Show when burger is toggled */
  }
}

html {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: nowrap;
}
body section {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  max-width: 800px;
}
body section .section-title {
  text-transform: uppercase;
}
body section#hero-section {
  text-align: center;
}
body section#hero-section .logo-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body section#hero-section .logo {
  resize: contain;
  max-height: 70vh;
  max-width: 700px;
  width: 80vw;
  height: auto;
}
body section#hero-section img#band {
  border-radius: 15px;
}
body section#hero-section .hero-text {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
  background-color: colors(c2);
}
body section#hero-section .hero-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: colors(c6);
  margin-bottom: 20px;
}
body section.about {
  max-width: 800px;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}
body section#audio-section {
  background: rgba(240, 237, 83, 0.1);
  border: 2px solid #ece129;
  border-radius: 15px;
  padding-top: 20px;
}
body section#audio-section .section-title {
  margin-top: 0;
}
body section#audio-section div {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  /* Audio Player */
}
body section#audio-section div .audio-player {
  margin-bottom: 20px;
  text-align: center;
}
body section#audio-section div .audio-player h3 {
  color: #F4D03F;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
}
body section#audio-section div audio {
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
body section#concerts-section {
  width: 100%;
  /* Section Concerts */
}
body section#concerts-section .concerts {
  background: #1a1a1a;
}
body section#concerts-section #concert-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
body section#concerts-section .concert-item {
  position: relative;
  color: white;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 15px;
  border-left: 5px solid;
  border-left-color: #ece129;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  body section#concerts-section .concert-item {
    flex-direction: column;
    align-items: center;
  }
}
body section#concerts-section .concert-item .concert-date {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  color: #ece129;
  font-weight: bold;
}
@media (max-width: 600px) {
  body section#concerts-section .concert-item .concert-date {
    flex-direction: row;
  }
}
body section#concerts-section .concert-item .concert-date p:nth-child(1) {
  font-size: 2rem;
}
body section#concerts-section .concert-item .concert-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}
body section#concerts-section .concert-item .concert-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  body section#concerts-section .concert-item .concert-title {
    align-self: center;
  }
}
body section#concerts-section .concert-item .concert-location {
  font-weight: 500;
  margin-top: 10px;
  align-self: flex-start;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  body section#concerts-section .concert-item .concert-location {
    align-self: center;
  }
}
body section#concerts-section .concert-item .concert-status {
  font-size: 1.4rem;
  position: absolute;
  top: 0px;
  right: 0px;
  transform-origin: top right;
  z-index: 10;
  color: #fff;
  padding: 6px 60px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  border-radius: 10px;
  background-color: #43a047;
}
body section#concerts-section .concert-item .concert-status.finished {
  background: #e53935;
}
@media (max-width: 600px) {
  body section#concerts-section .concert-item .concert-status {
    position: relative;
  }
}
body section#artists-section {
  padding-left: 20px;
  padding-right: 20px;
}
body section#artists-section .artist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
body section#artists-section .artist-list .artist-card {
  border: 2px solid black;
  border-radius: 20px;
  overflow: hidden;
  min-width: 350px;
  max-width: 350px;
}
body section#artists-section .artist-list .artist-card .artist-picture img {
  display: block;
  height: 250px;
  object-fit: cover;
  border: 0;
  width: 100%;
}
body section#artists-section .artist-list .artist-card .artist-info {
  border-top: 2px solid black;
  background-color: #1a1a1a;
  color: white;
  padding: 10px;
}
body section#artists-section .artist-list .artist-card .artist-bio {
  background-color: #1a1a1a;
  color: white;
  padding: 10px;
  display: none;
}
body section#artists-section .artist-list .artist-card .artist-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #ece129;
}
body section#artists-section .artist-list .artist-card .artist-role {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}
body section#contact-section .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
body section#contact-section .social-icons .social-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  color: black;
}
body section#contact-section .social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  object-fit: cover;
  border: 1px solid #cccccc;
}

.maj {
  color: crimson;
  font-weight: bold;
}

footer {
  margin-top: 150px;
  font-size: 1rem;
}

/*# sourceMappingURL=main.css.map */
