/* 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);

}


/*Content Section*/
.music-container {
    background-color: black;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.content-row {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  display: grid;
  gap: 50px;
  min-width: 700px;
}

.photos img {
    width: 330px;
    display: block;
}

.description {
    padding-top: 20px;
    font-family: "baskerville", serif;
    font-size: 18px;
    font-weight: light;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    min-height: 130px;
}

.button {
    font-family: "baskerville", serif;
    font-size: 15px;
    font-weight: light;
    letter-spacing: 1px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 8px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;

}


/*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;
}