
/* Center the donate section */

.cash-btn.paypal-btn {
  background-color: #0c59e7 !important; /* blue */
}

.center-donate-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 20px 0;
}
.center-donate-btn form,
.center-donate-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Body and general layout */
body {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  font-family: Arial, sans-serif;
  color: black;
  text-shadow: 1px 1px 2px white;
  border: 2px solid grey;     
  border-radius: 15px;         
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 

  background-image: url('images/speaker-high-volume_padded_3000x3000.png'); 
  background-size: cover;     
  background-repeat: no-repeat; 
  background-position: center;  /* center */
}

.legal-disclaimer {
  font-size: 14px;
  color: color(from color srgb r g b);
  font-weight: bold;
  margin: 15px 0;
}

.legal-disclaimer a {
  color: navy;
  text-decoration: underline;
}


/* Cash App donation button */
.cash-btn {
  background-color: #00c244;  
  width: 80px;
  height: 80px;
  font-size: 28px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cash-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cash-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* images and audio */
img {
  margin: 10px 0;
}

audio {
  display: block;
  margin: 10px 0;
}

/* Headers */
h1, h2 {
  color: black;
  padding: 10px;
  margin: 10px 0;
}

header {
  margin: 10px 0;
  position: relative;
}

/* Social media links */
.social-links {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  margin: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(123, 44, 255, 0.12);
  color: #000000f8;
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(123, 44, 255, 0.2);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(123, 44, 255, 0.3);
}

.social-links a:active {
  transform: translateY(0) scale(1);
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

nav a {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(123, 44, 255, 0.12);
  color: #000000f8;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: rgba(123, 44, 255, 0.2);
  transform: translateY(-1px);
}

nav a:active {
  transform: translateY(0);
  background: rgba(123, 44, 255, 0.15);
}

.header-logo {
  max-width: 300px;           
  height: auto;
  margin: 10px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


#donate {
  text-align: center;
}

/* Track name styling */
#trackName {
  font-weight: 600;
  margin: 6px 0 12px 0;
  color: #000000f8;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  display: inline-block;
  background: rgba(123, 44, 255, 0.12);
  border-radius: 999px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Two-column layout for contract page */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  text-align: left;
}

.two-column-layout section,
.two-column-layout aside {
  padding: 0 10px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.legal-content h2 {
  text-align: center;
  margin-bottom: 10px;
}

.legal-content h3 {
  text-align: center;
  color: black;
  margin: 20px 0 15px 0;
}

.legal-content h4 {
  color: black;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.legal-content ul {
  padding-left: 20px;
  line-height: 1.6;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content dl {
  line-height: 1.6;
}

.legal-content dt {
  font-weight: bold;
  margin-top: 12px;
  color: black;
}

.legal-content dd {
  margin-left: 0;
  margin-bottom: 8px;
  padding-left: 20px;
}

.two-column-layout aside p:last-of-type {
  font-weight: bold;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }

  /* Move social links below logo on mobile */
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    position: static;
    margin-top: 10px;
  }

  .header-logo {
    margin-bottom: 5px;
  }
}

/* Extra small screens (iPhone SE and similar) */
@media (max-width: 375px) {
  body {
    max-width: 100%;
    padding: 3px;
    border-width: 1px;
    margin: 0;
    box-sizing: border-box;
  }

  .header-logo {
    max-width: 200px;
  }

  nav {
    gap: 6px;
    flex-wrap: wrap;
  }

  nav a {
    padding: 4px 8px;
    font-size: 13px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  #contact-section {
    padding: 15px;
    margin: 20px 5px;
  }
}





