/* Mobile drawer navigation styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2002;
}
.nav-toggle .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #1ec6e6;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,23,38,0.5);
  z-index: 2000;
}
@media (max-width: 1200px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -260px;
    width: 220px;
    height: 100vh;
    background: #0a1726;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
    box-shadow: 4px 0 16px rgba(30,198,230,0.08);
    max-height: 100vh;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 2001;
  }
  .nav-links.open {
    left: 0;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-overlay.open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
  }
  .sticky-nav {
    position: relative;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }
  .sticky-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0.5rem;
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  main {
    padding: 0.5rem;
  }
  .album, .gigs, .book, .shop, .signup {
    padding: 0.7rem;
    font-size: 0.98rem;
  }
  .products {
    flex-direction: column;
    gap: 0.7rem;
  }
  .product {
    min-width: 0;
    padding: 0.7rem 0.5rem;
  }
  .product img {
    width: 80px;
    height: 80px;
  }
  footer {
    padding: 1rem 0.3rem 0.7rem 0.3rem;
    font-size: 0.95rem;
  }
}
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #0a1726;
  color: #fff;
}

header {
  background: #0a1726;
  color: #fff;
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a1726;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 3px solid #1ec6e6;
}
.logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: #1ec6e6;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.logo img {
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
  font-size: 1rem;
}
nav ul li a:hover {
  color: #1ec6e6;
}
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #1ec6e6 0%, #0a1726 100%);
  opacity: 0.25;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px #0a1726;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #1ec6e6;
  text-shadow: 1px 1px 6px #0a1726;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #1ec6e6 0%, #1e90e6 100%);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30,198,230,0.15);
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.cta:hover {
  background: linear-gradient(90deg, #1e90e6 0%, #1ec6e6 100%);
  transform: scale(1.05);
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}
section {
  margin-bottom: 3rem;
}
.album, .gigs, .book, .shop, .signup {
  background: #12213a;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(30,198,230,0.08);
  margin-bottom: 2.5rem;
  border-left: 6px solid #1ec6e6;
}
.album h2, .gigs h2, .book h2, .shop h2, .signup h2 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1ec6e6;
  margin-bottom: 1.2rem;
}
.gig-list {
  list-style: none;
  padding: 0;
}
.gig-list li {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.gig-list a {
  color: #1ec6e6;
  text-decoration: underline;
  font-weight: 900;
}
.book form, .signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.book input, .signup input {
  flex: 1 1 200px;
  padding: 0.7rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  background: #1a2b47;
  color: #fff;
  border-bottom: 2px solid #1ec6e6;
}
.book button, .signup button {
  background: linear-gradient(90deg, #1ec6e6 0%, #1e90e6 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.7rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.book button:hover, .signup button:hover {
  background: linear-gradient(90deg, #1e90e6 0%, #1ec6e6 100%);
  transform: scale(1.05);
}
.products {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product {
  background: #1a2b47;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(30,198,230,0.08);
  border-top: 3px solid #1ec6e6;
}
.product img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 3px solid #1ec6e6;
}
.product h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 700;
}
.product p {
  color: #1ec6e6;
  font-weight: 900;
  font-size: 1.1rem;
}
footer {
  background: #0a1726;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 2rem;
  border-top: 3px solid #1ec6e6;
}
footer .social {
  margin-bottom: 1.2rem;
}
footer .social a {
  margin: 0 0.7rem;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s;
}
footer .social a:hover {
  transform: scale(1.2);
}
footer .social img {
  filter: invert(54%) sepia(98%) saturate(7492%) hue-rotate(163deg) brightness(98%) contrast(119%);
}
footer a {
  color: #1ec6e6;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .products {
    flex-direction: column;
    gap: 1.2rem;
  }
  main {
    padding: 1rem;
  }
  .album, .gigs, .book, .shop, .signup {
    padding: 1.2rem;
  }
  .sticky-nav {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 0.5rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
