body,
html {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
}

header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#logo {
  flex-shrink: 0;
  padding-left: 10px;
}

#logo img {
  height: auto;
  width: 150px;
  max-width: 150%;
  margin-left: 20px;
}

nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.close {
  display: none;
}

.nav-links.active + .close {
  display: block;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  padding: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  color: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
}

.hero-section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.streaming-service-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.streaming-service-icons img {
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.streaming-service-icons img:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.slideshow-image {
  transition: opacity 3s ease-in-out, transform 3s ease-in-out;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: cover;
  transform: scale(1.1);
}

.slideshow-image.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes imageAnimation {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
  8%,
  33% {
    opacity: 1;
    transform: scale(1);
  }
}

.slideshow-image:nth-of-type(1) {
  animation-delay: 0s;
}

.slideshow-image:nth-of-type(2) {
  animation-delay: 20s;
}

.slideshow-image:nth-of-type(3) {
  animation-delay: 24s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 4em; /* Increased font size */
  margin-bottom: 0.5em;
  font-weight: bold; /* Added font weight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow */
  padding: 0 20px; /* Added padding for better spacing */
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ee6e33;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.stream-btn svg {
  margin-right: 10px;
}

.stream-btn:hover {
  background-color: #999999;
}

.spotify-btn {
  background-color: #1db954;
}

.spotify-btn:hover {
  background-color: #1aa34a;
}

.apple-music-btn {
  background-color: #fa233b;
}

.apple-music-btn:hover {
  background-color: #e02035;
}

footer {
  position: absolute;
  bottom: 30px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px);
}

footer h4 {
  color: white;
}

.social-media-icons img {
  width: 32px;
  height: 32px;
}

.social-media-icons a {
  margin: 0 10px;
}

main {
  margin: 20px;
  padding-top: 80px;
}

form label,
form input,
form textarea {
  display: block;
  margin-bottom: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
}

button {
  background-color: #5cb85c;
  color: white;
  padding: 10px 15px;
  border: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

button:hover {
  background-color: #4cae4c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
}

.music-platforms {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.music-platforms a {
  margin: 0 15px;
}

.music-platforms img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.album img {
  width: 100%;
  transition: transform 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.album:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
  }

  #logo {
    margin-bottom: 10px;
  }

  #logo img {
    margin-left: 0;
    width: 140px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    padding: 5px 0;
  }

  .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    cursor: pointer;
    color: white;
    font-size: 2rem;
  }

  .hero-section {
    height: 100vh;
    padding: 20px;
  }

  .hero-section::before {
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-content {
    padding: 20px 0;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .stream-btn {
    padding: 15px 25px;
    margin: 15px 5px;
  }

  .music-page .music-releases {
    margin: 20px;
  }

  .release img {
    width: 120px;
    height: 120px;
  }

  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .album-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #333;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  footer {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .social-media-icons {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px;
  }

  #logo img {
    width: 120px;
  }

  nav ul li {
    padding: 5px 0;
  }

  .hero-section {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 1.5em;
  }

  .stream-btn {
    padding: 10px 20px;
    margin: 10px 5px;
  }

  .album-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .release img {
    width: 100px;
    height: 100px;
  }

  .social-media-icons {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.apple-embed-container {
  width: 30%;
  margin: 40px auto;
  padding: 0 20px;
  position: absolute;
  top: 10%;
  left: 40px;
  z-index: 999;
}

.apple-embed {
  width: 100%;
  height: 150px;
}

.spotify-embed {
  width: 30%;
  margin: 40px auto;
  padding: 0 20px;
  position: absolute;
  top: 60%;
  right: 40px;
  z-index: 999;
}

@media (max-width: 768px) {
  .spotify-embed {
    margin: 20px auto;
    width: 90%;
  }

  .apple-embed-container {
    top: 10%;
    left: 10px;
    width: 90%;
  }
}

/* General Styles */
body, h2, h3, p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Merchandise Shop Section Styles */
#merch-shop {
  background-color: #f7f7f7;
  padding: 50px;
  text-align: center;
}

.merch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.merch-item {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.merch-image {
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.merch-title {
  font-size: 1.5em;
  margin: 15px 0;
  color: #333;
}

.merch-description {
  font-size: 1em;
  margin-bottom: 15px;
  color: #666;
}

.merch-price {
  font-size: 1.2em;
  color: #b4a717;
  margin-bottom: 15px;
}

.merch-order-info {
  font-size: 0.9em;
  color: #444;
  margin-top: 15px;
  background-color: #e9e9e9;
  padding: 10px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .merch-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  #merch-shop {
    padding: 20px;
  }

  .merch-container {
    grid-template-columns: 1fr;
  }
}

.currency-selector-container {
  display: flex;
  align-items: center;
}

#currency-selector {
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

#currency-selector:hover, #currency-selector:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

#currency-selector option {
  background-color: #333;
  color: white;
}

@media (max-width: 768px) {
  .currency-selector-container {
    margin-top: 15px;
  }

  #currency-selector {
    font-size: 12px;
    padding: 4px 8px;
  }
}
