/* === GENERAL STYLES === */
body, html {
  font-family: 'Segoe UI', sans-serif;
  background: url('/assets/images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  margin: 0;
  padding: 0;
}

/* === NAVBAR === */
.navbar {
  background-color: rgba(0, 0, 0, 0.6); /* transparent black */
  backdrop-filter: blur(5px); /* frosted effect */
}

.navbar .navbar-brand {
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.navbar .nav-link {
  color: #ffffff;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #ace5f8;
}

/* === MAIN CONTENT === */
main {
  padding-top: 60px;
  padding-bottom: 60px;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/* === FORMS === */
.form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* === FOOTER === */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ccc;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
  flex-shrink: 0;
}

/* === UTILITY CLASSES === */
.text-shadow {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  main {
    padding: 40px 20px;
  }
}

/* Song Request Card Styling */
.song-card {
  background-color: rgba(255, 255, 255, 0.05); /* semi-transparent black */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8f9fa;
  backdrop-filter: blur(4px);
  border-radius: 12px;
  transition: transform 0.2s ease-in-out;
}

.song-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.song-card .card-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.song-card .text-muted {
  color: #cccccc !important;
}

.song-card .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.song-card .btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
}
