* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    --c-black: #050510;
    --c-black-gentle: #454555;
    --c-accent-light: #10cccc;
    --c-accent-dark: #be1399;
    --c-white-icy: #effcfb;
    --c-white-vapor: #e3e3f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #050510;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23454555' fill-opacity='0.25' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--c-white-vapor);

    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
h1, h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}

#network-tour {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1rem 2rem;
    align-items: center;
    margin-bottom: 2rem;
}
#network-tour p {
    font-size: 1.15rem;
}
#network-tour h1 {
    font-size: 3rem;
    padding-block: 2rem 3rem;
    grid-column: span 2;
}
#network-tour p:last-child {
    grid-column: span 2;
}


/* Layout Containers */
.container {
    margin: 0 auto;
    padding: 0 2rem;
    width: min(100vw, 1000px);
}
.coming-soon {
    position: relative;
}
.coming-soon > * {
    opacity: 50%;
    user-select: none;
}
.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 2rem;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}


/* Navigation */
header {
    flex-shrink: 0;

    background-color: var(--c-white-vapor);
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23effcfb' fill-opacity='0.5'%3E%3Cpath d='M84 23c-4.417 0-8-3.584-8-7.998V8h-7.002C64.58 8 61 4.42 61 0H23c0 4.417-3.584 8-7.998 8H8v7.002C8 19.42 4.42 23 0 23v38c4.417 0 8 3.584 8 7.998V76h7.002C19.42 76 23 79.58 23 84h38c0-4.417 3.584-8 7.998-8H76v-7.002C76 64.58 79.58 61 84 61V23zM59.05 83H43V66.95c5.054-.5 9-4.764 9-9.948V52h5.002c5.18 0 9.446-3.947 9.95-9H83v16.05c-5.054.5-9 4.764-9 9.948V74h-5.002c-5.18 0-9.446 3.947-9.95 9zm-34.1 0H41V66.95c-5.053-.502-9-4.768-9-9.948V52h-5.002c-5.184 0-9.447-3.946-9.95-9H1v16.05c5.053.502 9 4.768 9 9.948V74h5.002c5.184 0 9.447 3.946 9.95 9zm0-82H41v16.05c-5.054.5-9 4.764-9 9.948V32h-5.002c-5.18 0-9.446 3.947-9.95 9H1V24.95c5.054-.5 9-4.764 9-9.948V10h5.002c5.18 0 9.446-3.947 9.95-9zm34.1 0H43v16.05c5.053.502 9 4.768 9 9.948V32h5.002c5.184 0 9.447 3.946 9.95 9H83V24.95c-5.053-.502-9-4.768-9-9.948V10h-5.002c-5.184 0-9.447-3.946-9.95-9zM50 50v7.002C50 61.42 46.42 65 42 65c-4.417 0-8-3.584-8-7.998V50h-7.002C22.58 50 19 46.42 19 42c0-4.417 3.584-8 7.998-8H34v-7.002C34 22.58 37.58 19 42 19c4.417 0 8 3.584 8 7.998V34h7.002C61.42 34 65 37.58 65 42c0 4.417-3.584 8-7.998 8H50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: var(--c-black-gentle);
    font-weight: 500;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;

    background: var(--c-white-vapor);
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--c-black-gentle);
    color: var(--c-black-gentle);
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.projects h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-white-vapor);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 5rem;
}
.card-anchor {
    text-decoration: none;
}
.card-anchor:visited {
    color: currentColor;
}
.card {
    background: var(--c-white-vapor);
    color: var(--c-black-gentle);
    padding: 1.5rem;
    border: 1px solid var(--c-black-gentle);
    border-radius: 8px;
    transition: transform 0.2s;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
}

#resume {
    background: #F4F4F4; /* For compliance with CompTIA logo standards */
    color: var(--c-black-gentle);
    padding: 2rem;
}
#resume h1 {
    font-size: 6rem;
}
#resume h2 {
    font-size: 2rem;
    margin-block: 2rem 1rem;
    border-bottom: 1px solid #a3a3d0;
}
#resume ul {
    padding-inline: 1rem;
}
.resume-header {
    display: grid;
    grid-template-columns: min-content 1fr;
}
.cert-logos {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    flex: 1;
}
.cert-logos > img {
    width: 8rem;
}
.resume-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
}
.resume-grid > h3, .resume-grid > ul {
    grid-column: 1 / 3;
}
.resume-grid > p:nth-child(even) {
    font-style: italic;
    text-align: end;
}
.flex-2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.flex-2 > p {
    flex: 1;
    flex-basis: 15rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--c-white-vapor);
    color: var(--c-black-gentle);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: 500ms;
}
.btn:hover {
    background: var(--c-black);
    color: var(--c-white-icy);
}

@media (max-width: 900px) {
    .resume-header { grid-template-columns: 1fr; }
    .cert-logos { justify-content: start; }
}

@media (max-width: 600px) {
    nav ul {
	display: none;
    }
    .hero h1, #resume h1, .projects h2 { font-size: 2rem; }
    .cert-logos { justify-content: center; }
    .cert-logos > img { width: 7rem; }
    #network-tour {
	display: flex;
	flex-direction: column;
    }
}
