/*Navbar Section*/
/*Background*/
.navbar {
  background-color: black;
  padding: 1rem 1rem;
  
}

/*Navbar Section*/
/*Background*/
.navbar {
  background-color: black;
  padding: 1rem 1rem;
  
}

/*Text*/
.navbar-brand {
  font-family: "baskerville", serif;
  font-size: 30px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
}

/*Nav Links*/
.nav-link {
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
}


/*Hero Section*/
/*Background*/
.hero-section {
  background: url('../Photos/hero-bg.png') no-repeat center center;
  background-size: cover;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  position: relative;
  border-style: solid;
  border-color: rgb(255, 255, 255);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 176, 176, 0.705); /* dark overlay for readability */
}

.hero-section .container {
  position: relative;
  z-index: 1; /* keeps text above overlay */
}

.hero-heading {
  font-family: "baskerville", serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);

}

.hero-text {
  font-family: "baskerville", serif;
  font-size: 24px;
  font-weight: light;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);
  padding-bottom: 20px;
}

.hero-content-button {
  text-decoration: none;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: light;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  padding: 12px;
}




/*Content Section*/
#music {
  background-color: black;
  padding-bottom: 50px;
}

.content-heading {
  padding-top: 20px;
  font-family: "baskerville", serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
  text-align: center;
}

.content-row {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  display: grid;
  gap: 20px;
  min-width: 700px;
  margin: 0 auto;
}

.photos img{
  width: 100%;
  display: block;

}


/*Membership Section*/
.membership-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.membership-heading {
  padding-top: 20px;
  font-family: "baskerville", serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);
  padding-bottom: 10px;
}

.membership-text {
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: light;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);
}

.membership-button {
  text-decoration: none;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: light;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  padding: 10px;
}


/*Carousel*/
.testimonial-box{
  border: 2px solid;
  max-width: 350px;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: light;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);
  display: inline;
  padding-bottom: 20px;
  min-height: 240px;

  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.row.text-center {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px; 
  padding-bottom: 40px;
}

.testimonial-heading {
  padding-top: 40px;
  font-family: "baskerville", serif;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);
  padding-bottom: 20px;
  
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
 
   filter: invert(0%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(0%) contrast(300%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; 
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -40px; 
}

.carousel-control-next {
  right: -40px; 
  
}



/*Footer*/
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: auto;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  padding: 1rem 1rem;
}

.footer-logo {
  padding-left: 40px;
  text-decoration: none;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
}

.footer-item {
  padding-right: 10px;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  
}

.footer-foot {
  display: flex;
}


.policies {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 30px;
  margin-top: 10px;

}

.policy_text {
  align-items: center;
  justify-content: center;
  display: flex;
  text-decoration: none;
  font-family: "baskerville", serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(0, 0, 0);

}

/* =========================
   RESPONSIVE FIXES ONLY
   (Original layout preserved)
========================= */

/* 🔧 Fix grid overflow on small screens */
@media (max-width: 991px) {
  .content-row {
    min-width: unset; /* removes forced overflow */
  }
}

/* =========================
   TABLET ADJUSTMENTS
========================= */
@media (max-width: 991px) {

  .hero-heading {
    font-size: 36px;
  }

  .hero-text {
    font-size: 20px;
  }

  .membership-heading,
  .content-heading,
  .testimonial-heading {
    font-size: 32px;
  }

  .footer-container {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */
@media (max-width: 576px) {

  /* Navbar */
  .navbar-brand {
    font-size: 22px;
  }

  .nav-link {
    font-size: 16px;
  }

  /* Hero */
  .hero-section {
    min-height: 45vh;
    padding: 20px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-text {
    font-size: 18px;
  }

  /* Content grid stacks naturally */
  .content-row {
    grid-template-columns: 1fr;
  }

  /* Membership */
  .membership-heading {
    font-size: 26px;
  }

  .membership-text {
    font-size: 16px;
  }

  /* Testimonials */
  .testimonial-box {
    max-width: 100%;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-foot {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .policies {
    flex-direction: column;
    gap: 10px;
  }
}
