/* this used to all be my own code and then i realised that i need
to do responsive design so i gave up and used claude 

sorry if you wanted to think i was a somewhat competent programmer */

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

html {
  text-align: center;
}

body {
  color: white; 
  background-image: linear-gradient(to right bottom, #28084d, #0a2e28);
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Social Links */
.links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.links a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s;
}

.links a:hover {
  opacity: 0.7;
}

.links img {
  display: block;
}

.lastfm {
  border-radius: 20%;
  max-width: 80%;
  height: auto;
  position: relative;
  bottom: 2px;
}


/* Profile Section */
.wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

.profile-section {
  display: flex;
  align-items: center; 
  gap: 40px;
  max-width: 600px;
  flex-wrap: wrap;
  justify-content: center;
}

.profile {
  width: 150px; 
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}


.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-text {
  text-align: center;
}

.profile-text h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 10px;
}

.profile-text .tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  opacity: 0.9;
}

/* Content Section */
.content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-section {
  margin: 40px 0;
}

.video-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.player {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 568px;
}

div.album-player {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 568px;
  margin-bottom: 20px;
}

.albums {
  max-width: 400px;
  justify-content: center;
  margin: 60px auto;
}
.albums h4 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}
.albums h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 10px;
}
/* About Section */
.about-section {
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 800px;
}

.about-section h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 20px;
}

.about-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 10px 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .profile {
    width: 120px;
    height: 120px;
  }
  
  .links {
    padding: 15px 0;
  }
  
  .video-section {
    margin: 30px 0;
  }
  
  .about-section {
    margin: 40px auto;
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .profile {
    width: 100px;
    height: 100px;
  }
  
  .content {
    padding: 15px;
  }
}
