@font-face {
  font-family: Rockwell;
  src: url(../Fonts/Rockwell-Font/Rockwell-Font/WOFF2/Rockwell-Regular.woff2);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Rockwell;
  src: url(../../Assets/Fonts/Rockwell/Rockwell-Bold.woff2);
  font-weight: 700;
  font-style: normal;
}

:root {
  --accent: #fedd00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Rockwell, serif;
  color: #1a1a1a;
}

.hero {
  border-bottom: 0.5px solid #7d7d7d;
}

.section-image {
  width: 100%;
  height: auto;
}

.section-text {
  font-size: 24px;
  line-height: 1.7;
  text-align: justify;
  padding: 10%;
}

#short-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10%;
  gap: 50px;
}

#short-bio .section-text {
  padding: 0;
}

#short-bio img {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  object-fit: cover;
}

.buttons {
  display: flex;
  gap: 30px;
}

.buttons a {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid gainsboro;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.buttons a::after {
  content: attr(data-label);
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.buttons a:hover {
  transform: scale(1.15);
}
.buttons a:hover::after {
  opacity: 1;
}

.entry {
  margin-bottom: 1.2em;
}
.entry p {
  margin: 0;
}

.status-ok {
  color: chartreuse;
}
.status-fail {
  color: red;
}

.brand-303hz {
  background-color: blue;
  color: white;
  display: inline-block;
  line-height: 1.5;
}

.highlight-certified {
  color: var(--accent);
}

.platform {
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.platform:hover {
  opacity: 0.8;
}
.platform-soundcloud {
  color: #ff7700;
}
.platform-spotify {
  color: #1db954;
}
.platform-apple {
  color: #7d7d7d;
}
.platform-youtube {
  color: #ff0000;
}
