* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.social {
  display: flex;
  gap: 24px;
}

.social a {
  font-weight: 600;
  text-decoration: none;
  color: #0070f3;
  transition: color 0.2s ease;
}

.social a:hover {
  color: #005bb5;
}

/* Profile */
.profile h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.profile .tagline {
  margin-bottom: 6px;
}

.profile .roles {
  margin-bottom: 6px;
}

.profile .motto {
  margin-top: 12px;
  margin-bottom: 0;
}


/* Mixcloud */
.mix-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mix-container iframe {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 8px;
  background-color: #e0e0e0;
}

/* Contact */
.contact {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #ccc;
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.contact a {
  color: #0070f3;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}