@font-face {
  font-family: Super-Bloom;
  src: url(fonts/Super-Bloom.ttf);
}

body {
  font-family: Super-Bloom;
  margin: 0;
  padding: 0;
  /*background-color: #d5d5d5; */
  background-color: #9a4ac7;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Headers -----------------------------------------------------------------*/

/* Add a black background color to the top navigation */

.header-bar {
  background-color: #9a4ac7;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.3s ease-in-out; /* Add smooth transition effect */
}

.container {
  width: 80%;
  font-size: 30px;
  position: relative;
  /* color: #333; */
  color: rgb(254, 251, 232);
  display: flex;
  align-items: center;
  height: 3em;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.header-actions-header-actions-left {
  font-size: 50px;
  margin-top: 30px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: rgb(254, 251, 232);
  font-size: 24px;
  text-decoration: none;
  margin: 0 8px;
}

.social-icons a[href*="instagram.com"]:hover {
  color: #d62976
    /* Change to orange when hovered over Instagram */
}

.social-icons a[href*="mailto:"]:hover {
  color: #1a78f1
    /* Change to blue when hovered over email */
}

.social-icons a[href*="spotify.com"]:hover {
  color: #1DB954
    /* Change to green when hovered over Spotify */
}

.social-icons a[href*="linktr.ee"]:hover {
  color: #1a78f1;
}

.social-icons a[href*="magnify.html"]:hover {
  color: #1a78f1; /* Blue on hover */
}

.social-icons a[href*="index.html"]:hover {
  color: #1a78f1; /* Blue on hover */
}

.image-text {
  margin-bottom: 15px;
  color: #9a4ac7;
  font-size: 1.8rem;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: auto; /* Ensures the image doesn’t cause scroll issues */
  flex: 1;
  padding-top: 10px;
  padding-bottom: 30px;
  background-color: rgb(254, 251, 232);
}


.audio-container {
  margin-top: 15px;
}

.song-title {
  color: white;
  font-size: 3em;
  position: absolute;
  white-space: nowrap;
  transform-origin: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -70px);
}

.image-container img {
  /* -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0009); */
  width: 100%; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  max-width: 450px; /* Prevent it from getting too large */
  margin: auto; /* Center the image */
  display: block;
}

.image-container::after {
  border-radius: 50%;
  /* Creates a circular shape for the reflection */
  transform: scaleY(0.5);
}

.listen-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0.5em;
  z-index: -1;
  transition: background-color 0.5s ease-in-out, -webkit-backdrop-filter 0.2s ease-in-out;
}

.listen-button:hover::before {
  -webkit-backdrop-filter: blur(10px);
}

.button-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

#prevBtn:hover,
#nextBtn:hover {
  background: #7d7d7d;
  color: #d5d5d5;
  transition: 0.2s;
}

#prevBtn:active,
#nextBtn:active {
  background: #1f1f1f;
}

/*-----------------------*/

/* Album art link styling */
.album-link img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 8px; /* optional: soft corners */
}

/* Hover effect: subtle scale + shadow */
.album-link:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/*-----------------------*/

.vinyl-campaign {
  max-width: 800px;
  margin: 40px auto;
  margin-top: 0px;
  padding: 24px;
  background: #fefbe8; /* matches your body bg */
  border: 4px solid #ddd;
  border-radius: 12px;
  text-align: center;
}

.vinyl-campaign h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #222;
}

.vinyl-campaign p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.vinyl-link {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

/*-----------------------*/

.vinyl-link:hover {
  background: #43a047;
  transform: scale(1.03);
}


/* Default button style */
#playButton {
  background-color: #9a4ac7 !important;
  border: 2px solid #422800;
  border-radius: 30px;
  box-shadow: #422800 4px 4px 0 0;
  color: #422800;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  padding: 0 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-family: Super-Bloom;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Button when playing (red color) */
#playButton.playing {
  transform: scale(1.05); /* Slightly enlarges when active */
  box-shadow: #422800 2px 2px 0 0;
  transform: translate(2px, 2px);
}

/* Hover effect */
#playButton:hover {
  background-color: #8d28c8 !important; /* Darker green on hover */
}

/*-----------------------*/

.footer-container {
  top: 0;
  padding-top: 0.5em;
  padding-bottom: 2em;
  width: 100%;
  position: relative;
  min-height: 100px;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: center;
  font-size: 30px;
}

.footer-bottom {
  display: block;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  width: 100%;
}

.footer-social-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  left: 50%;
}

.footer-social-icons a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  margin: 0 10px;
  padding-bottom: 10px;
}

.footer-social-icons a[href*="instagram.com"]:hover {
  color: #d62976
    /* Change to orange when hovered over Instagram */
}

.footer-social-icons a[href*="mailto:"]:hover {
  color: #1a78f1
    /* Change to blue when hovered over email */
}

.footer-social-icons a[href*="spotify.com"]:hover {
  color: #1DB954
    /* Change to green when hovered over Spotify */
}

.photographer-link {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Makes it the same color as surrounding text */
}

.photographer-link:hover {
  text-decoration: underline; /* Optional: Add underline on hover */
}

@media (max-width: 485px) {
  .container {
    width: 85%;
    font-size: 6vw;
  }
  .top-left {
    font-size: 10vw; /* smaller header text on mobile */
  }
  .social-icons a {
    font-size: 6vw; /* Adjust icon size for smaller screens */
    margin: 0 1vw;
  }
  .footer-top {
    font-size: 7vw;
  }
  .footer-bottom {
    font-size: 3vw;
  }
  .image-container {
    background-size: cover;
    width: auto;
    height: auto;
  }
  .image-container img {
    /* -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0009); */
    height: auto;  /* Maintains aspect ratio */
  }
  .header-bar {
    height: 100px;
    padding-bottom: 25px;
  }
}

@media (max-width: 1024px) and (min-width: 486px) { 
  .image-container {
    height: auto; /* Container height shrinks to fit image */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-container img {
    max-width: 80vw; /* Expand image on iPad */
    height: auto; /* Maintain aspect ratio */
  }
}

/*-----------------------*/