
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #ffd700;
  margin: 0;
  text-decoration: none;
}


.navbar {
  background-color: #000; 
  color: #ffd700; 
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}
* 🔥 Donation Alert Styles */
.donation-alert {
  font-size: 15px;
  font-weight: 700;
  color: #000;                     /* Black text for contrast */
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 5px;              /* Smooth corners */
  animation: fadeIn 1s ease-in-out;/* Smooth fade-in effect */
}

/* ✨ Donate Link Styles */
.donate-link {
  background-color: #000000;       /* Eye-catching red background */
  color: #ffd700;                  /* Gold text for premium feel */
  font-weight: bold;
  text-decoration: none;           /* Remove underline */
  padding: 5px 12px;               /* Balanced padding for button feel */
  border: 2px solid #ffd700;       /* Gold border for contrast */
  border-radius: 5px;              /* Smooth corners */
  transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Smooth effects */
}

.donate-link:hover {
  background-color: #ffd700;       /* Gold on hover for emphasis */
  color: #000;                     /* Black text on hover for readability */
  transform: scale(1.05);          /* Slight zoom on hover for interactivity */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}


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

.logo-img {
  width: 70px;
  height: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}


.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #fff; 
}


.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #ffd700;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
}

.nav-link:hover {
  background-color: #ffd700;
  color: #000;
}


.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffd700;
  transition: transform 0.3s;
}

.menu-icon:hover {
  transform: rotate(90deg);
}

.main-header {
  text-align: center;
  padding: 20px;
  background-color: #000;
}

.main-header h1 {
  color: #ffd700;
}


.course-section {
  padding: 30px 20px;
  text-align: center;
}

.course-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffd700;
}

.course-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #fff;
  text-decoration: none;
}


.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.playlist-box {
  background-color: #000;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.playlist-box h3 {
  margin-bottom: 5px;
  color: #ffd700;
  text-decoration: none;
}

.playlist-box p {
  color: #fff;
  text-decoration: none;
}

.playlist-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffd700;
}


.footer {
  background-color: #000;
  color: #ffd700;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #ffd700;
}


.footer-container {
  display: flex;
  justify-content: space-around; 
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px; 
  flex-wrap: wrap;
}


.footer-about,
.footer-nav,
.footer-contact,
.footer-donation,
.footer-social {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  padding: 10px;
  text-align: center;
}

.footer h3,
.footer h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #ffd700;
  padding-bottom: 5px;
}


.footer p,
.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  margin: 5px 0; 
  font-size: 14px;
}

.footer a:hover {
  color: #ffd700;
}


.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 5px; 
}

.footer-nav ul li a {
  color: #fff;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-nav ul li a:hover {
  color: #ffd700;
}


.footer-donation {
  text-align: center;
  padding: 10px;
}

.qr-code {
  width: 100px; 
  height: 100px;
  margin: 5px 0;
  border: 2px solid #ffd700;
  border-radius: 10px;
  transition: transform 0.3s;
}

.qr-code:hover {
  transform: scale(1.1);
}


.footer-contact p {
  margin-bottom: 5px; 
}


.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.footer-social .social-icons a {
  color: #ffd700;
  font-size: 18px; 
  transition: color 0.3s, transform 0.3s;
}

.footer-social .social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}


.footer-bottom {
  border-top: 1px solid #ffd700;
  padding-top: 10px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px; 
  }

  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-donation,
  .footer-social {
    max-width: none;
  }
}


@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #000;
    width: 200px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

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

  .nav-link {
    padding: 10px 20px;
    text-align: center;
  }

  .menu-icon {
    display: block;
  }

  .logo-text {
    font-size: 20px;
    padding: 15px;
  }
}
