/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Rounded user avatars
- Buttons
- Brand Styles
*/

/* Rounded avatars
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.rounded-avatar {
  border-radius: 8px; /* Slightly rounded, not full circles */
}

.social-icon {
  font-size: 32px;
  padding: 10px;
  color: #ffcc00 !important;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.social-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
}
.social-icon-div {
  padding-bottom: 30px;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button,
button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none;
  min-height: 60px;
  text-align: center;
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 16px auto;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
}

.button:hover,
button:hover,
.button:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  outline: 0;
  color: #ffffff;
}

.button.button-primary {
  background: #ffcc00;
  color: #000000;
  border: none;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  border-radius: 4px; /* Harder edges for primary buttons */
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.button.button-primary:hover,
.button.button-primary:focus {
  background: #ffdb4d;
  color: #000000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
}

/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  margin-right: 12px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

/* Brand Styles (Override all brands to use Glassmorphism except Custom which we make Primary)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Custom link button (Use this for the Yellow "Ticket" buttons) */
.button.button-custom,
.button.button-littlelink-custom {
  background: #ff8c00 !important;
  color: #000000 !important;
  border: none !important;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1) !important;
  border-radius: 4px;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}
.button.button-custom:hover,
.button.button-custom:focus,
.button.button-littlelink-custom:hover,
.button.button-littlelink-custom:focus {
  background: #ffa500;
  color: #000000 !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
}
.button.button-custom .icon {
  filter: brightness(0); /* Make icons black on yellow background */
}

/* Default */
.button.button-default {
  /* Inherits glassmorphism */
}
.button.button-default:hover,
.button.button-default:focus {
  background: rgba(255, 255, 255, 0.08);
}

/* For all other social brands, we force them into the Glassmorphism look to keep the Helfer Area vibe */
.button[class*="button-"]:not(.button-custom):not(.button-primary):not(.button-littlelink-custom) {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
.button[class*="button-"]:not(.button-custom):not(.button-primary):not(.button-littlelink-custom):hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 140, 0, 0.8);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
  transform: translateY(-4px);
}

/* Specific brand icon colors if needed, but keeping them white/glass is cleaner */
.button-youtube .icon { filter: drop-shadow(0 0 4px rgba(255,0,0,0.5)); }
.button-instagram .icon { filter: drop-shadow(0 0 4px rgba(255,0,128,0.5)); }
.button-spotify .icon { filter: drop-shadow(0 0 4px rgba(0,255,0,0.5)); }
