.crazy-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  position: relative;
  display: inline-block;
  animation: shake 0.3s infinite, neon 1.5s ease-in-out infinite alternate;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);

}


body.treble {
  background-image: url("/images/SL_123119_26540_42.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  margin: 0;
}



.fiery-classical {
  background-image: url("/images/9624.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;   /* cleaner than 100% 30% */
  min-height: 100vh;             /* always at least full screen */
  height: 100%;                  /* allow it to stretch with content */
  padding-top: 100px;
}


.sparkly-classical {
  background-image: url("/images/musbackround1_11.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 30%;  
}

.sign-in {
  font-size: 2rem;
  color: black;
  text-shadow:
    2px 2px 6px rgba(0,0,0,0.8),  
    -2px -2px 6px rgba(255,255,255,0.3); 
}

.sign-up{
  font-size: 1.5rem;
  color: black;
  text-shadow:
    2px 2px 6px rgba(0,0,0,0.8),   /* strong dark shadow */
    -2px -2px 6px rgba(255,255,255,0.3); /* faint highlight */
}

.sign-up-h1 {
  font-size: 2rem;
  color: black;

  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);

  background: rgba(255,255,255,0.85);
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  display: inline-block;
}

 .sign-in-button {
      background-color: gray;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
    }

    .sign-in-button :hover {
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }


.edit-page {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9); 
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.edit-page h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}


.edit-page p {
  margin-bottom: 20px;
  font-style: italic;
  color: #444;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}

/* Inputs + textareas */
.form-group input,
.form-group textarea {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* Button styling */
.edit-page button {
  background: #4a90e2;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.edit-page button:hover {
  background: #357ab8;
}

/* Back link */
.back-button {
  display: inline-block;
  margin-top: 15px;
  color: #4a90e2;
  text-decoration: none;
}

.back-button:hover {
  text-decoration: underline;
}

.composer-details {
  max-width: 800px;          
  margin: 40px auto;         
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.9); 
  border-radius: 10px;       
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.work-details {
  max-width: 800px;          
  margin: 40px auto;         
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.9); 
  border-radius: 10px;       
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.favorite-button {
  background: #e63946;             
  color: #fff;                     
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.favorite-button:hover {
  background: #d62828;             /* slightly darker red */
  transform: scale(1.05);          /* pop effect */
}

.favorite-button:active {
  transform: scale(0.97);          /* press down */
}


.mango-button {
  background: orange;             
  color: #fff;                     
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.mango-button:hover {
  background: #d62828;            
  transform: scale(1.05);          
}

.mango-button:active {
  transform: scale(0.97);       
}

.work-item {
  border: 1px solid rgba(0, 0, 0, 0.2); 
  border-radius: 6px;
  padding: 10px 15px;
  margin: 10px 0;                    
  background: rgba(255, 255, 255, 0.8); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.work-item p {
  margin: 0; 
}

.favs-page {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9); 
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.favs-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: blue;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.2); 
  border-radius: 6px;
  padding: 10px 15px;
  margin: 10px 0;                    
  background: rgba(255, 255, 255, 0.8); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navvy-snazzy{
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  width: 100%; 
  position: fixed;  
  top: 0;
  left: 0;
  z-index: 1000;
  align-items: center;      
}

.navvy-snazzy ul {
  margin: 0;
  padding: 0;
  height: 100%;         
  display: flex;
  justify-content: center; 
  align-items: center;     
  list-style: none;
  gap: 50px;             
  width: 100%;            
}

.navvy-snazzy li {
   margin: 0 20px;
   padding: 0 20px;
}

.navvy-snazzy a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navvy-snazzy:hover {
  color: gold; /* highlight on hover */
}

.wonky-search{
  font-size: 2rem;
}

select {
  font-size: 1.6rem;  
  padding: 0.5rem;   
}

select option {
  font-size: 1.2rem;
}

input.search-box {
  font-size: 1.2rem;
  padding: 0.6rem;
}

.search-results li {
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
}
.search-results li:hover {
  background-color: #f0f0f0;
}

.works-list .work-item {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.work-link, .composer-link {
  font-size: 1.8rem;
}

.composer-list .composer-item {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}


.composer-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.composer-card {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recently-added li {
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  
}

.recents{
  font-size: 1.5rem;
  font-weight: bold;
  color: greenyellow;
  text-decoration: none;
  position: relative;
  display: inline-block;
  animation: shake 0.3s infinite, neon 1.5s ease-in-out infinite alternate;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* angled slash background */
.angled-bg::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e9ecef 50%, transparent 50%);
  z-index: 0;
}

.angled-bg > .container {
  position: relative;
  z-index: 1; /* keeps cards above the slash */
}

