@font-face {
  font-family: "IM Fell English";
  src: url("./fonts/IM_Fell_English/IMFellEnglish-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IM Fell English";
  src: url("./fonts/IM_Fell_English/IMFellEnglish-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: "IM Fell English", serif;
  background-color: black;
}

a {
  color: rgb(206 191 158);
  font-weight: bold;
  &:hover {
    color: white;
  }
}

details {
  backdrop-filter: blur(18px) saturate(160%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 10px;
  color: rgb(206 191 158);
  width: min(640px, 80dvw);
  margin: auto;

  &:not(:last-child) {
    margin-bottom: 1rem;
  }

  opacity: 0.5;
  &:hover {
    opacity: 1;
  }

  transition: all 0.3s ease;
}

summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
}

details[open] summary::after {
  content: "-";
}

details[open] {
  opacity: 1;
}

.detailsContainer {
  padding: 1rem;
}

.mainContainer {
  min-height: 100dvh;
}

.mainImageContainer {
  width: min(960px, 98dvw);
  background-image: url("./images/home-04-26.webp");
  background-size: cover;
  background-position: center;
  margin: 4rem auto calc(clamp(5rem, 1.571rem + 10.71vw, 8rem) * -1) auto;
  aspect-ratio: 2560 / 2048;
}

/* Social Media Links */

.socials {
  display: flex;
  gap: clamp(0.75rem, -0.083rem + 2.6vw, 2rem);
  margin: 2rem auto;
  margin-bottom: 8rem;
  justify-content: center;
}

.btn {
  position: relative;
  width: clamp(3.75rem, 3.411rem + 1.6vw, 4.688rem);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(160%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* dynamischer Glanz */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      rgba(255, 255, 255, 0.35),
      transparent 60%);
  opacity: 0.6;
  transition: opacity 0.2s;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-8px) scale(1.07);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.35),
    0 25px 50px rgba(0, 0, 0, 0.7);
}

.btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  opacity: 0.95;
  z-index: 1;
}

/* Tooltips */
.btn::after {
  content: attr(data-label);
  position: absolute;
  bottom: -35px;
  font-size: 14px;
  color: rgb(206 191 158);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Plattformfarben */
.facebook:hover {
  background: rgba(24, 119, 242, 0.25);
}

.instagram:hover {
  background: linear-gradient(45deg,
      rgba(240, 148, 51, 0.3),
      rgba(230, 104, 60, 0.3),
      rgba(220, 39, 67, 0.3),
      rgba(204, 35, 102, 0.3),
      rgba(188, 24, 136, 0.3));
}

.bandcamp:hover {
  background: rgba(98, 196, 255, 0.25);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.4);
}