/* Make sure the footer stays at the bottom of the viewport */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full screen height */
}

/* Whatever wraps your main content */
main {
  flex: 1; /* pushes the footer down */
}

/* Footer stays at bottom */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
  background-color: #000; /* optional, to match your design */
}

/*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;
}

/*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.jpg') 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(25, 25, 25, 0.648); /* dark overlay for readability */
}

.hero-section .container {
  position: relative;
  z-index: 1; /* keeps text above overlay */
}

.hero-heading {
  font-family: "baskerville", serif;
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
}


/*Music Section*/
.content{
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
  gap: 18px;
  justify-items: center;
  align-items: start;
  min-width: 700px;
  background-color: black;
  padding-top: 40px;
  padding-bottom: 60px;
}


.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.photo img {
  width: 250px;
  height: 250px;
  display: block;
  margin-bottom: 20px;
}

.contents-headings {
  font-family: "baskerville", serif;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.button {
  font-family: "baskerville", serif;
  font-size: 18px;
  color: black;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  border: none;
  padding: 10px;
  margin-top: 10px;
  width: 250px;
  text-decoration: none;
}

.buttons-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.expired-text {
  color: #ffffff;
}


/* Lightbox Background */
.lightbox {
  display: none;              /* stays hidden until activated */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* darker backdrop */
  backdrop-filter: blur(5px);      /* subtle blur effect */
  justify-content: center;
  align-items: center;
}

/* Content wrapper scales responsively */
.lightbox-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  max-height: 95vh;
  text-align: center;
}

/* Responsive Video */
.lightbox video {
  width: 100%;
  height: auto;
  max-height: 85vh; /* keeps video inside screen vertically */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1100;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ----------------------------- */
/*     RESPONSIVE BREAKPOINTS    */
/* ----------------------------- */

/* Tablets */
@media (max-width: 992px) {
  .close {
    font-size: 32px;
    top: 5px;
    right: 10px;
  }

  .lightbox video {
    max-height: 80vh;
  }
}

/* Phones */
@media (max-width: 600px) {
  .lightbox-content {
    width: 95%;
  }

  .lightbox video {
    border-radius: 8px;
    max-height: 75vh;
  }

  .close {
    font-size: 30px;
    padding: 8px 12px;
    right: 8px;
  }
}


/*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;
}


/* Music Player Content*/
#playerBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; /* Center everything horizontally */
  gap: 15px;
  padding: 12px 20px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.6);
  z-index: 1000;
}

#playerTitle {
  font-size: 1rem;
  font-weight: bold;
  color: #000000; 
}

#audioPlayer {
  min-width: 800px;
}

#closePlayer {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: #000000;
  font-size: 30px;
  cursor: pointer;
  font-weight: 700;
}