:root {
    --bodyText: #ffffff;
    --linkBackground: #702552;
    --linkText: #ffffff;
    --profileBackground: #390029;
    --defaultAvatarBackground: #000000;
    --profileTitleText: #ffffff;
    --profileDescriptionText: #ffffff;
    --socialLinkFill: #ffffff;
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--profileBackground);
    color: var(--bodyText);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding-top: 64px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-picture {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.profile-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-description {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.social-icon {
    width: 32px;
    height: 32px;
    fill: var(--socialLinkFill);
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.075);
}

.links-section {
    margin-bottom: 32px;
}

.section-header {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.link-button {
    display: block;
    background-color: var(--linkBackground);
    color: var(--linkText);
    text-decoration: none;
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 30px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s;
    text-align: center;
    border: 2px solid var(--linkBackground);
}

.link-button:hover {
    background-color: transparent;
    color: var(--linkText);
}

.site-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 48px;
    padding-bottom: 24px;
}
.footer-link {
    color: var(--bodyText);
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.7; /* Makes it slightly faded to not distract from main links */
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 1; /* Brightens up when hovered */
}
