/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #001f4d; /* Deep blue background */
  color: #ffffff;
}

a { 
  text-decoration: none; 
  color: #ffffff; 
}

nav {
  text-align: center;
  padding: 20px;
  background-color: #001f4d;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #ffcc00;
}

/* Hero Video Section */
.hero-container {
  width: 100%;
  height: 90vh; /* Tall to show full video */
  overflow: hidden;
}

.hero-container video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full video without cropping */
}

/* Hero Text Below Video */
.hero-text-bottom {
  text-align: center;
  background-color: #001f4d; /* Deep blue background behind text */
  color: #ffcc00;
  padding: 50px 20px;
}

.hero-text-bottom h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text-bottom p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffcc00;
  color: #001f4d;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  background-color: #e6b800;
  color: #ffffff;
}

/* Featured Songs Section */
#featured {
  padding: 50px 20px;
  text-align: center;
}

#featured h2 { 
  margin-bottom: 40px; 
  font-size: 2em;
  color: #ffffff;
}

.song-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.song {
  background: #002966;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.song img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.song h3 { 
  margin: 10px 0; 
  font-size: 1.2em; 
}

.song p { 
  font-size: 0.9em; 
  margin-bottom: 15px; 
  color: #cccccc; 
}

.song a.payhip-add-to-cart-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #ffcc00;
  color: #001f4d;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.song a.payhip-add-to-cart-button:hover {
  background-color: #e6b800;
  color: #ffffff;
}

/* Footer */
footer {
  background: #001f4d;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

footer p { 
  margin: 10px 0; 
  font-size: 0.9em; 
}

/* Responsive */
@media (max-width: 768px) {
  .song-list {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-bottom h1 {
    font-size: 1.8rem;
  }

  .hero-text-bottom p {
    font-size: 1.2rem;
  }
}
