/*CODE COMPLETED*/

/*Home CSS*/
body,
html {
    position: fixed;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #252525;
    background-image:
        linear-gradient(-30deg,
            rgba(255, 220, 131, 0.25) 0%,
            rgba(37, 37, 37, 0.9) 40%,
            rgba(37, 37, 37, 0.9) 70%,
            rgba(255, 255, 255, 0.1) 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 700' width='700' height='700' opacity='0.2'><defs><filter id='nnnoise-filter' x='-20%' y='-20%' width='140%' height='140%' filterUnits='objectBoundingBox' primitiveUnits='userSpaceOnUse' color-interpolation-filters='linearRGB'><feTurbulence type='fractalNoise' baseFrequency='0.2' numOctaves='4' seed='15' stitchTiles='stitch' x='0%' y='0%' width='100%' height='100%' result='turbulence'></feTurbulence><feSpecularLighting surfaceScale='11' specularConstant='0.9' specularExponent='20' lighting-color='%23ffffff' x='0%' y='0%' width='100%' height='100%' in='turbulence' result='specularLighting'><feDistantLight azimuth='3' elevation='103'></feDistantLight></feSpecularLighting></filter></defs><rect width='700' height='700' fill='transparent'></rect><rect width='700' height='700' fill='%23ffffff' filter='url(%23nnnoise-filter)'></rect></svg>");
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Inter", sans-serif;
    user-select: none;
}

/*EnriquezInk Title*/
.title {
    color: #FFFFFF;
    font-weight: bold;
    font-size: clamp(40px, 5vw, 45px);
    text-decoration: none;
    padding-right: 20px;
    cursor: default;
    z-index: 25;
    transition: 0.75s;
}

.title:hover {
    color: #FFF4DB;
    text-shadow:
        -5px -5px 10px rgba(255, 255, 255, 0.5),
        10px 10px 10px rgba(0, 0, 0, 0.5);
    transition: 0.25s;
}

/*Menu Logo*/
#check {
    display: none;
}

.hamburger {
    display: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.75s;
}

.hamburger .line {
    display: block;
    width: 45px;
    height: 6px;
    background-color: #FFFFFF;
    margin-block: 10px;
    border-radius: 6px;
    transition:
        background-color 0.8s,
        box-shadow 0.8s,
        transform 0.5s,
        opacity 0.25s;
}

.hamburger:hover .line,
.hamburger:focus-visible .line {
    background-color: #FFF4DB;
    box-shadow:
        0 0 30px #FFFFFF,
        2px 2px 8px rgba(0, 0, 0, 1),
        -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: 0.25s;
}

.hamburger:hover {
    transform: scale(1.2);
    transition: 0.25s;
}

#check:checked+.hamburger .line:nth-child(1) {
    transform: translateY(16px) rotate(45deg);
}

#check:checked+.hamburger .line:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

#check:checked+.hamburger .line:nth-child(3) {
    transform: translateY(-16px) rotate(-45deg);
}

/*Navigation*/
.navbar {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    gap: 8px;
}

.nav-item a {
    display: inline-block;
    color: #FFFFFF;
    padding: 8px;
    background: rgba(255, 255, 255, 0);
    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 7px;
    text-decoration: none;
    font-size: clamp(22px, 2.5vw, 25px);
    font-weight: bold;
    transition: 0.75s;
}

.nav-item a:hover,
.nav-item a:focus-visible {
    color: #FFF4DB;
    box-shadow:
        0 0 18px rgba(255, 241, 195, 0.5);
    text-shadow:
        5px 5px 10px rgba(0, 0, 0, 0),
        -5px -5px 10px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0.05);
    border: solid 1px rgba(255, 241, 195, 0.15);
    transform: scale(1.05);
    border-radius: 5px;
    transition: 0.25s;
}

/*Top Head*/
.tophead {
    top: 0;
    left: 0;
    border-bottom: solid 2px rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 80px;
    backdrop-filter: blur(10px);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-left: 20px;
    box-sizing: border-box;
    z-index: 10;
}

/*Home Button*/
.homebuttons {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 120px;
    box-sizing: border-box;
    gap: 25px;
    z-index: 1;
}

.homebuttons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: clamp(150px, 90vw, 1000px);
    height: clamp(70px, 14vh, 100px);
    backdrop-filter: blur(10px);
    font-size: 30px;
    font-weight: bold;
    background: rgba(48, 48, 48, 0.5);
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.6),
        -5px -5px 20px rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    z-index: 1;
}

.homebuttons a:hover {
    transform: scale(1.05);
    border-radius: 15px;
    transition: 0.25s;
}

/*My Art*/
.myart {
    color: #508EFF;
    outline: solid 2px #508EFF;
    transition: 0.75s;
}

.myart:hover {
    color: #FFFFFF;
    outline: solid 4px #FFFFFF;
    background: #508EFF;
    box-shadow: 0 0 40px #508EFF;
    transition: 0.25s;
}

/*Commission Art*/
.commissionart {
    color: #FFFFFF;
    outline: solid 2px #FFFFFF;
    transition: 0.75s;
}

.commissionart:hover {
    color: #000000;
    outline: solid 4px #000000;
    background: #FFFFFF;
    box-shadow: 0 0 40px #FFFFFF;
    transition: 0.25s;
}

/*Character Design*/
.characterdesign {
    color: #FFDC83;
    outline: solid 2px #FFDC83;
    transition: 0.75s;
}

.characterdesign:hover {
    color: #FFFFFF;
    outline: solid 4px #FFFFFF;
    background: #FFDC83;
    box-shadow: 0 0 40px #FFDC83;
    transition: 0.25s;
}

/*Comic Series*/
.comicseries {
    color: #68FF50;
    outline: solid 2px #68FF50;
    transition: 0.75s;
}

.comicseries:hover {
    color: #FFFFFF;
    outline: solid 4px #FFFFFF;
    background: #68FF50;
    box-shadow: 0 0 40px #68FF50;
    transition: 0.25s;
}

/*© 2025 EthanEnriquez*/
.copyright-text {
    position: fixed;
    font-size: 14px;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.15);
    background-color: rgba(37, 37, 37, 0);
    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 8px;
    box-shadow:
        2px 2px 8px rgba(255, 220, 131, 0),
        -2px -2px 8px rgba(255, 255, 255, 0);
    margin-top: 5px;
    cursor: default;
    font-size: clamp(15px, 2vw, 18px);
    transition: 0.75s;
    z-index: 15;
}

.copyright-text:hover {
    transform: scale(1.05);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    border: solid 1px rgba(255, 255, 255, 0.15);
    box-shadow:
        2px 2px 8px rgba(255, 220, 131, 0.15),
        -2px -2px 8px rgba(255, 255, 255, 0.15);
    transition: 0.25s;
}

/*Version Label*/
.version-label {
    position: fixed;
    font-size: 14px;
    bottom: 10px;
    left: 5px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.15);
    background-color: rgba(37, 37, 37, 0);
    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 8px;
    box-shadow:
        2px 2px 8px rgba(255, 220, 131, 0),
        -2px -2px 8px rgba(255, 255, 255, 0);
    cursor: default;
    margin: 35px 0 0 5px;
    transition: 0.75s;
    z-index: 15;
}

.version-label:hover {
    transform: scale(1.05);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    border: solid 1px rgba(255, 255, 255, 0.15);
    box-shadow:
        2px 2px 8px rgba(255, 220, 131, 0.15),
        -2px -2px 8px rgba(255, 255, 255, 0.15);
    transition: 0.25s;
}