.sam-theme {
  --primary: #ffffff;
  --secondary: #000000;
  --accent: #f3f4f6;
  --text: #111827;
}

.deus-theme {
  --primary: #0f172a;
  --secondary: #ffffff;
  --accent: #1e293b;
  --text: #f8fafc;
}

.theme-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-effect {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bandsintown-wrapper {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.bandsintown-wrapper.visible {
  opacity: 1;
}

@layer utilities {
  .font-lynch {
    font-family: 'Public Sans', sans-serif;
    font-style: italic;
  }
}

/* Fix Font Awesome icons ONLY - target specific sections */
#samLinks a:hover,
#deusLinks a:hover {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

#samLinks a:hover i,
#deusLinks a:hover i {
  background: none !important;
  background-color: transparent !important;
  color: #2563eb !important;
  transition: color 0.3s ease;
}

/* Ensure Font Awesome icons themselves don't get backgrounds */
#samLinks .fab:hover,
#samLinks .fas:hover,
#samLinks .far:hover,
#deusLinks .fab:hover,
#deusLinks .fas:hover,
#deusLinks .far:hover {
  background: none !important;
  background-color: transparent !important;
}

/* Collaboration card avatar hover effects */
.collab-card:hover .collab-avatar,
.collab-card:hover .collab-avatar-initials {
  border-color: rgba(96, 165, 250, 0.6);
  transform: scale(1.05);
}

.collab-avatar,
.collab-avatar-initials {
  transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Enhanced Google Form Styling */
#samBumperStickers iframe {
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsive iframe adjustments */
@media (max-width: 768px) {
  #samBumperStickers iframe {
    height: 1000px;
  }
}

@media (max-width: 480px) {
  #samBumperStickers iframe {
    height: 1100px;
  }
}
