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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.7;
  font-size: 18px;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

.headshot {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 36px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.linkedin-link {
  display: inline-block;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}

.linkedin-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.linkedin-icon {
  display: block;
  margin: 0 auto;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.content-column {
  flex: 1;
  min-width: 0;
}

section {
  margin-bottom: 40px;
}

p {
  margin-bottom: 20px;
  text-align: left;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

ul li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #1a1a1a;
}

.emphasis {
  font-style: italic;
  margin-top: 15px;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.logo-container {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.logo {
  width: 60px;
  height: 60px;
  display: inline-block;
  cursor: pointer;
  transform-style: preserve-3d;
}

.logo:hover {
  animation: horizontal-spin 4s linear infinite;
}

@keyframes horizontal-spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.spotify-sidebar {
  flex-shrink: 0;
  width: 340px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.spotify-player {
  margin: 0;
}

.spotify-iframe {
  width: 100%;
  max-width: 100%;
  border: none;
  display: block;
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .spotify-sidebar {
    width: 100%;
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 30px 15px;
  }

  .headshot {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
  }

  h1 {
    font-size: 28px;
  }

  .linkedin-icon {
    width: 20px;
    height: 20px;
  }

  main {
    max-width: 100%;
  }

  .content-wrapper {
    gap: 25px;
  }

  section {
    margin-bottom: 35px;
  }

  .spotify-iframe {
    height: 352px;
  }
}
