/* ...existing code... */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: url('assets/AJS_7232.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #111;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 80px; /* Space for footer */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.4); /* Adjust alpha for brightness */
  pointer-events: none;
}

/* Make sure body content is above the overlay */
body > * {
  position: relative;
  z-index: 1;
}

/* Responsive navbar */
.navbar {
  background: transparent !important;
  box-shadow: none !important;
  border: none;
  width: 100%;
  z-index: 1030;
}

#listNavbar {
  position: relative;
  right: 65px !important; /* Shift right by 20px */
}

@media (max-width: 767.98px) {
  #listNavbar {
    right: 0 !important;
  }
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  z-index: 1060;
  position: relative;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-img {
  height: 120px;
  width: auto;
}

/* Main content area */
.content-container {
  min-height: calc(100vh - 180px);
  padding-top: 0;
  display: flex;
  align-items: center; /* Vertically centers the content */
  margin-top: 0;
}

/* Add this to ensure the inner container takes full height */
.content-container .container-fluid {
  flex-grow: 1;
}

/* Album content layout - NEW */
.album-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.album-cover-container {
  flex: 0 0 auto;
  margin-right: 30px;
}

.album-cover {
  max-height: 300px;
  width: auto;
}

.album-text {
  flex: 1 1 250px;
}

/* Footer and signup positioning */
.footer-container {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  font-size: 0.97rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}


.signup-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  min-width: 220px;
  max-width: 280px;
  color: antiquewhite;
  pointer-events: auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Font styling */
#albumArt {
  font-family: 'ABC Diatype Expanded', sans-serif; 
  font-weight: bold;
  font-style: normal;
  color: rgb(254, 250, 245) !important;
}

.navbar-nav .nav-link {
  font-family: 'ABC Diatype', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: x-large;
  color: rgb(254, 250, 245) !important;
}

#cta {
  color: antiquewhite;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  html, body {
    overflow: auto;
    padding-bottom: 180px; /* More space for footer and signup on mobile */
  }
  
  .logo-img {
    height: 80px;
  }
  
  .signup-container {
    bottom: 100px;
    right: 10px;
    min-width: 200px;
  }
  
  .footer-container {
    position: relative;
    left: 10px;
    bottom: 20px;
    text-align: left;
  }

  
  #albumArt {
    font-size: 2.2rem; /* Adjusted for mobile */
  }
  
  /* Album adjustments - NEW */
  .album-content-wrapper {
    padding: 20px 10px;
  }
  
  .album-cover {
    max-height: 220px;
  }
  
  .album-cover-container {
    margin-right: 20px;
  }
}

/* Navbar fixes for mobile toggler/brand overlap */
@media (max-width: 767.98px) {
  .logo-img {
    height: 70px !important;
    max-width: 90vw;
    margin-left: 47px; /* Add this line to shift right */
  }
  .navbar-brand {
    z-index: 1050;
    position: relative;
  }
  .navbar-toggler {
    z-index: 1060;
    position: relative;
  }
}

/* Tour poster mobile tweaks for tour.html */
@media (max-width: 767.98px) {
  .tour-poster {
    max-height: 140px !important;
    margin-bottom: 18px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .tour-list {
    max-height: none !important;
    font-size: 1rem;
    overflow: visible !important;
  }
}

@media (max-width: 575px) {
  .signup-container {
    width: calc(100% - 20px);
    min-width: auto;
    max-width: none;
    right: 10px;
    left: 10px;
    bottom: 80px;
  }
  
  /* Album adjustments - NEW */
  .album-cover {
    max-height: 180px;
  }
  
  .album-cover-container {
    margin-right: 15px;
  }
  
  #albumArt {
    font-size: 1.8rem;
  }
  
  .btn {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .tour-poster {
    max-height: 110px !important;
  }
}

/* For very small screens - NEW */
@media (max-width: 450px) {
  .album-content-wrapper {
    justify-content: center;
  }
  
  .album-cover-container {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .album-text {
    text-align: center;
  }
}

.signup-bl {
  position: fixed;
  right: 32px;
  bottom: 110px; /* Space above the footer */
  z-index: 100;
  min-width: 220px;
  max-width: 280px;
  color: antiquewhite;
  pointer-events: auto;
}
.signup-bl .form-control,
.signup-bl .btn {
  border-radius: 0;
}
.signup-bl .form-control:focus {
  background: rgba(40,40,40,0.85);
  color: antiquewhite;
}
.signup-bl label {
  font-size: 0.92rem;
  color: antiquewhite;
  opacity: 0.85;
}

.signup-bl .form-control::placeholder {
  color: antiquewhite;
  opacity: 0.8;
}

@media (max-width: 767.98px) {
  .signup-container {
    position: static !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 30px auto 0 auto;
    padding: 10px 0;
    background: none;
    box-shadow: none;
  }
  .signup-container form {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .signup-container input,
  .signup-container button {
    font-size: 0.95rem;
    padding: 4px 8px;
    min-width: 0;
  }
  .signup-container label {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .signup-container {
    display: none !important;
  }
  .signup-modal-btn {
    display: block !important;
    position: fixed;
    right: 18px;
    bottom: 20px; /* Match footer's bottom */
    z-index: 1050;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.05rem;
    font-family: 'ABC Diatype', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    box-shadow: none !important;
    padding: 0;
    text-decoration: underline;
  }
  .signup-modal-btn:active,
  .signup-modal-btn:focus {
    outline: none !important;
    box-shadow: none !important;
  }
}

.signup-modal-btn {
  display: none;
}

/* Custom background for video page */
body.video-bg {
  background: url('assets/video-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

body.video-bg #bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
body.video-bg > *:not(#bg-video) {
  position: relative;
  z-index: 1;
}

/* Custom background for music page */
body.music-bg {
  background: url('assets/band_pic.jpg') no-repeat center center fixed;
  background-size: cover;
}

body.music-bg::before {
  background: rgba(0,0,0,0) !important; /* Adjust alpha for desired brightness */
}


/* Hide the grey underlay on the video page */
body.video-bg .videos-section {
  background: none !important;
  box-shadow: none !important;
}

/* Hide the email list button and modal on the video page */
body.video-bg .signup-modal-btn,
body.video-bg #signupModal {
  display: none !important;
}

/* Responsive video thumbnails for smaller screens */
@media (max-width: 767.98px) {
  .video-container {
    margin-bottom: 18px;
  }
  .video-responsive {
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 2px;
  }
  .video-responsive iframe {
    border-radius: 2px;
  }
}

@media (max-width: 767.98px) {
  body.music-bg .signup-modal-btn,
  body.music-bg #signupModal {
    display: none !important;
  }
}