@import url('https://fonts.googleapis.com/css2?family=Vina+Sans&family=Oswald:wght@700&family=Anton&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #000;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  text-align: center;
}

.band-logo {
  width: 600px;
  object-fit: contain;
}

.navbar-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
}

.navbar-nav a {
  font-family: "Vina Sans", sans-serif;
  color: #fff;
  font-size: 1.3em;
  letter-spacing: 3px;
  transition: color 0.3s;
}

.navbar-nav a:hover {
  color: #dda409;
}

/* Hero */
.hero-section {
  background: url('assets/herobackground.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-title {
  font-family: "Anton", sans-serif;
  font-size: 5em;
  letter-spacing: 5px;
  color: #fff;
}

.hero-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #dda409;
}

.social-icons-overlay {
  justify-content: center;
  display: flex;
  gap: 25px;
}

.social-icons-overlay a {
  font-size: 1.8em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons-overlay a:hover {
  color: #dda409;
}

/* Sections */
.section {
  padding: 100px 20px;
  text-align: center;
  background-color: #111;
}

.section:nth-child(even) {
  background-color: #1a1a1a;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: 3em;
  color: #dda409;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 50px;
}

/* Music */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.video-card {
  background: #222;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* Shows */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.show-card {
  background: #222;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.show-card:hover {
  transform: translateY(-5px);
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #dda409;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #fff;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  color: #ccc;
}

.about-images {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-images img {
  width: 45%;
  border-radius: 15px;
  filter: brightness(0.9);
  transition: transform 0.3s;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
  font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
}
ç
.contact-form input:active::placeholder,
.contact-form textarea:active::placeholder {
  color: #414141;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: #414141;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.shop-item {
  background: #222;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.shop-item:hover {
  transform: scale(1.03);
}

.shop-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .band-logo {
        width: 400px;
        object-fit: contain;
        }
  .hero-title {
    font-size: 3em;
  }

  .navbar-nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .section {
    padding: 70px 15px;
  }
}
/* Navbar */
.navbar-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  padding: 15px 0;
  text-align: center;
}

.navbar-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-nav a {
  font-family: "Vina Sans", sans-serif;
  color: #fff;
  font-size: 1.35em;
  font-weight: 200;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.navbar-nav a:hover {
  color: #dda409;
}

/* Hero */
.hero-section {
  background: url('assets/herobackground.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 8rem; /* offset for sticky navbar */
}
@media (max-width: 480px) {
    .band-logo {
        width: 300px;
        object-fit: contain;
        }
    }

    @media (max-width: 360px) {
    .band-logo {
        width: 200px;
        object-fit: contain;
        }
    }