@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,700&display=swap');

/* Dark purple navbar */
.navbar {
  background-color: #4B0082 !important;
}

/* Site title in Literata font */
.navbar .navbar-brand {
    font-family: 'Literata', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow:
      0 0 5px #ffffff,
      0 0 10px #d8b4f8,
      0 0 20px #d8b4f8,
      0 0 30px #a64bf4,
      0 0 40px #a64bf4;
    animation: glow-pulse 2s ease-in-out infinite alternate;
  }
  

@keyframes glow-pulse {
    from {
      text-shadow:
        0 0 5px #ffffff,
        0 0 10px #d8b4f8,
        0 0 15px #a64bf4;
    }
    to {
      text-shadow:
        0 0 10px #ffffff,
        0 0 20px #d8b4f8,
        0 0 30px #a64bf4;
    }
  }
  

/* Just in case there are any nav links */
.navbar .nav-link {
  color: white !important;
  font-weight: 600;
  font-size: 1.1rem;
}

.navbar .nav-link:hover {
  color: #d8b4f8 !important;
}
body {
  background: linear-gradient(to bottom right, #E6E6FA, #ffffff);
}

/* Fully hide the Quarto title block on pages like index.qmd */
.quarto-title-block {
    display: none !important;
  }
  
/* Custom button for SoundCloud link */
.soundcloud-button {
    background-color: #ff5500; /* SoundCloud orange */
    color: white;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.6em 1em;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .soundcloud-button i {
    margin-right: 0.5em;
  }
  
  .soundcloud-button:hover {
    background-color: #e64a00;
    color: white;
    text-decoration: none;
  }
  