* {
  box-sizing: border-box;
}

body {
  background-color: #202125;
  font-family: "Roboto condensed", sans-serif;
  color: #faffff;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  padding: 24px;
  line-height: 1.6;
}

section {
  margin-top: 10px;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.subcolor {
  color: #62ffa1;
}

.social-links {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-links a {
  color: #faffff;
}

.social-links a:hover {
  border-bottom-color: #faffff;
}

a {
  color: #62ffa1;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  opacity: 0.8;
  border-bottom-color: #62ffa1;
}

.header {
  display: flex;
  flex-direction: row;
  gap: 48px;
  padding: 2px 0;
  align-items: center;
}

.header .titles {
  flex: 1;
}

.header .subtile {
  margin-bottom: 24px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.profile-picture {
  flex-shrink: 0;
}

.profile-picture img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts for Sections */
.section-content {
  display: grid;
  gap: 16px;
  width: 100%;
}

section.photo .section-content {
  grid-template-columns: repeat(4, 1fr);
}

section.photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}

section.photo img:hover {
  transform: scale(1.02);
}

section.music .section-content {
  grid-template-columns: repeat(2, 1fr);
}

section.music iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 8px;
  border: none;
  display: block;
}

footer {
  margin-top: 80px;
  text-align: center;
  padding: 40px 0;
  opacity: 0.6;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  section.photo .section-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding: 20px 0;
  }

  .title {
    font-size: 1.8rem;
  }

  .social-links {
    justify-content: center;
  }

  /* Force single column earlier */
  section.music .section-content,
  section.photo .section-content {
    grid-template-columns: 1fr !important;
  }

  section.music iframe {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .title {
    font-size: 1.5rem;
  }

  .profile-picture img {
    width: 140px;
    height: 140px;
  }

  section {
    margin-top: 40px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    font-size: 0.9rem;
  }
}

/* Social links separators */
.social-links a:not(:last-child)::after {
  content: ".";
  margin-left: 12px;
  color: #faffff;
  pointer-events: none;
  opacity: 0.5;
}