[v-cloak]{ display: none; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #222;
    color: #ccc;
}

a {
    color: #ffd700;
}

p>span {
    text-decoration: line-through;
}

/* navbar */
#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 30px;
    background-color: #333;
    border-bottom: 2px solid #444;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
}

#me {
    display: flex;
    align-items: center;
    margin: 0 7px;
}

#me img {
    width: 44px;
    height: 44px;
    border-radius: 35%;
    object-fit: cover;
}

#me h2 {
    font-size: 20px;
    margin: 0 15px;
}

#me h2 a {
    color: #fff;
    text-decoration: none;
    transition-duration: 0.2s;
}

#me h2 a:hover {
    color: #ffd700;
}

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-right: 20px;
}

#navbar a {
    height: 60px;
    margin: 0 15px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition-duration: 0.2s;
}

#navbar a:hover {
	background-color: #444;
	color: #ffd700;
}


/* sections */

section {
    min-height: 90vh;
    padding: 5vw 5vh;
    scroll-margin-top: 60px;
}

/* intro section */
section#intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    height: calc(90vh - 60px);
    padding: 5vw 5vh;
}


#pfpArt {
    font-family: 'Fira Mono', 'Consolas', 'Courier New', Courier, monospace;
    font-size: 14px;
    white-space: pre;
    color: #00861f;
    background: #232323;
    padding: 16px 12px;
    max-width: 420px;
    margin: 0 auto;
    display: block;
}

/* about section */

section#about {
    background-color: #2a2a2a;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section#about h1 {
    margin-bottom: 50px;
}

section#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* projects section */

section#projects ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

section#projects li {
    background: #333;
    border-radius: 16px;
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition-duration: 0.2s;
    border: 1px solid #333;
}

section#projects li:hover {
    transform: translateY(-6px) scale(1.025);
    border-color: #ffd700;
}

section#projects h2 {
    margin: 0 0 10px 0;
    color: #ffd700;
    font-size: 1.3rem;
}

section#projects p {
    margin: 0 0 16px 0;
    color: #ccc;
    font-size: 1.05rem;
}

section#projects img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    margin: 0 0 16px 0;
    object-fit: cover;
    align-self: center;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.project-btn {
    display: inline-block;
    background: #ffd700;
    color: #232323;
    border: none;
    border-radius: 12px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.2s;
    cursor: pointer;
}

.project-btn:hover {
    background: #ffe066;
    color: #111;
    outline: none;
}

.badge-wip {
    display: inline-block;
    background: #ff5252;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 4px 14px;
    margin-left: 6px;
    vertical-align: middle;
}


/* contact section */

section#contact {
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    padding: 30px 0 20px 0;
}

section#contact h1 {
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

section#contact p {
    font-size: 1.08rem;
    margin: 12px 0;
    color: #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

section#contact a {
    display: inline-block;
    background: #ffd700;
    color: #2a2a2a;
    border-radius: 10px;
    padding: 6px 18px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    transition-duration: 0.2s;
}

section#contact a:hover {
    background: #ffe066;
}