/* custom.css */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/slide1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

/* Audio Player Styling */
audio {
  width: 100%;
  margin-top: 1rem;
}

audio::-webkit-media-controls-panel {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 10px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
  background-color: #007bff;
  border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #333;
}

audio::-webkit-media-controls-timeline {
  background-color: #e9ecef;
  border-radius: 5px;
}

audio::-webkit-media-controls-volume-slider {
  background-color: #e9ecef;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 40px 0;
}

footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #007bff;
}