/* 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 */

/* apr 26 2026 update, ive written everything else by hand which is why everything else sucks */

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

html {
    text-align: center;
}

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

a:link {
    color: rgb(235, 91, 175)
}

a:visited {
    color: rgb(235, 91, 175)
}


/* 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 {
    align-items: center;
    display: flex;
    padding-top: 30px;
    justify-content: center;
}

.wrapper a {
    color: inherit;
    text-decoration: none;
}

.profile-section {
    border-radius: 8px;
    display: flex;
    /* for the box and hyperlink */
    align-items: center;
    gap: 30px;
    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(4rem, 8vw, 6rem);
    margin-bottom: 10px;
}

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


/* Content Section */

.content {
    padding-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.albums {
    max-width: 500px;
    justify-content: center;
    margin: 60px auto;
}

.albums h4 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 30px;
}

.albums h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-top: 20px;
    margin-bottom: 25px;
}


/* About Section */

.about-section {
    margin: 60px auto;
    padding-top: 20px;
    max-width: 1000px;
}

.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: 10px;
    }
    .profile {
        width: 120px;
        height: 120px;
    }
    .links {
        padding: 15px 0;
    }
    .video-section {
        margin: 0px;
    }
    .about-section {
        margin: 40px auto;
        padding: 0px;
        max-width: 90vw;
    }
    .albums {
        margin: 20px auto;
    }
    .albums h3 {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

@media (max-width: 560px) {
    .profile {
        width: 100px;
        height: 100px;
    }
    .content {
        padding: 15px;
    }
    .player {
        max-width: 90vw;
    }
}