@font-face {
    font-family: "the-myths";
    src: url("fonts/the-myths.woff") format("woff");
}

html, body {
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    box-sizing: border-box; /* Ensure consistent box model */
}

*, *::before, *::after {
    box-sizing: inherit; /* Inherit box-sizing for all elements */
}

body {
    background-color: #FCF8F8;
    font-family: "area-normal-1", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
}

p {
    font-size: 32px;
}

a {
    color: #000000;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
    cursor: pointer;
}

#content-wrapper {
    width: 80%;
    margin: 110px auto 0; /* Centers horizontally */
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: auto; /* Ensure no unintended offsets */
    max-width:1508px;
}

#name {
    font-family: "the-myths", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0; /* Reset negative margin */
    padding: 0;
    line-height: 1.25;
    position: absolute;
    top: -30px;
    text-align: left;
    z-index: 10;
}

#introduction-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    width: 100%;
    position: relative;
}

#photo {
    display: block;
    text-align: center;
    padding-left:60px;
}

#links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: flex-end;
    margin-top: 5px;
    margin-bottom: -5px;
    text-align: left;
}

#links p {
    margin: 0;
}

#links a {
    padding: 0;
    border-bottom: none;
}

#links a:hover {
    border-bottom: 1px solid black;
}

#details {
    margin: 40px auto 0;
    font-size: 32px;
}

#extracurriculars {
    margin-bottom: 72px;
}

#extracurriculars p {
    margin-bottom: 32px;
    font-size: 14px;
}

::selection {
    background-color: #FFD700; /* Highlight color for selected text */
    color: #000000; /* Text color for selected text */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-16px, -16px);
}

.custom-cursor.active {
    opacity: 1;
}

.studio-link {
    cursor: none;
    border: none;
}

@media (max-width: 1015px) {
    #content-wrapper {
        flex-direction: column;
        min-width: unset;
        align-items: center; /* Center all children horizontally */
    }

    #introduction-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #photo {
        display: none;
    }

    #links {
        gap: 40px;
        align-self: center;
        text-align: center;
        margin: 40px auto;
        width: 100%; /* Ensure #links spans the full width for proper centering */
    }

    #links a {
        border-bottom: 1px solid black;
    }

    #name {
        font-family: "area-normal-1", sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1.3;
        position: static;
        text-align: center;
        z-index: auto;
        display: block;
        margin-bottom: 40px;
        width: 100%; /* Ensure #name spans the full width for proper centering */
    }

    #name h1 {
        margin: 0;
        line-height: 1.3;
        font-size: 32px;
        font-weight: 700;
        display: inline;
    }

    #details,
    #extracurriculars {
        text-align: left;
        margin-top: 40px;
    }

    #extracurriculars a {
        padding-bottom: 2px;
    }

    .photo-credit {
        display: none; /* Hide photo credit on smaller screens */
    }

    .tan-credit {
        display: none; /* Hide tan credit on smaller screens */
    }
}