  body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
  }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

nav {
  position: fixed;
  width: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
}

section {
  padding: 60px 20px;
}

.band-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.band-grid .member {
  width: 200px;
  text-align: center;
}

video {
  max-width: 80%;
  height: auto;
}

form {
  max-width: 500px;
  margin: auto;
}

.success {
  color: green;
  text-align: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

#about {
  background-color: transparent; /* optional since page is already dark */
}

#about h1 {
  font-size: 4rem;
}

#about p {
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

#band .card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: cover;
  height: 600px;
}

#band h2 {
  font-size: 8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

a i {
  transition: transform 0.2s ease;
}

a:hover i {
  transform: scale(1.1);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Reduce height of the textarea */
textarea.form-control {
  min-height: 100px; /* Shrink the height by half */
}

/* Optional: Add some padding to the section */
#contact {
  background-color: #121212; /* Dark theme */
}

#contact .form-control {
  background-color: #222; /* Slightly darker input background */
  color: #fff; /* White text inside input */
  border: 1px solid #444; /* Subtle border */
}

#contact .form-label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff; /* Ensure labels are visible */
}

#contact .btn-outline-light {
  border-radius: 50px; /* Rounded corners for the button */
  padding: 10px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#contact .btn-outline-light:hover {
  background-color: #fff;
  color: #121212; /* Inverse button color on hover */
}

#contact .form-description {
  max-width: 500px;
  margin: 0 auto 10px;
}
