@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Audiowide', sans-serif;
}

body {
    background-image: url("img/vignettegrunge.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin-left:auto;
    margin-right:auto;
}

/* Base */
body {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
}


/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    position: relative;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #00ff88;
    text-shadow: 0 0 6px rgba(0, 255, 136, 0.7);
}

/* Active page indicator */
.nav a.active {
    color: #fff;
}

/* Underline animation */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: #00ff88;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* Header */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header h1 {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.3em;
}

/* Main layout */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
}

/* CRT image */
.crt {
    width: 469px;
    height: 500px;
    background: url("img/2413304_54601.png") no-repeat center;
    background-size: contain;
    position: relative;
}

.crt img {
    position: absolute;
    top: 50px;     /* adjust to fit screen area */
    left: 50px;    /* adjust to fit screen area */
    width: 370px;
    height: 310px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    /*transition: opacity 0.3s ease-in-out;*/
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #00ff88;
}

/* Footer */
footer {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}


/* About */
/* Lists */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.2rem;
    opacity: 0.85;
}

/* subtiele bullet */
li::before {
    content: "•";
    position: absolute;
    left: 0;
    opacity: 0.4;
}

/* About Dingoskye */
.about-dingoskye {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 2rem;
}

/* Stack section */
.about-experience {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    text-align: center;
}

.about-experience div {
    flex-direction: row;
    text-align: center;
}

/* Stack grids */
.about-experience ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.5rem 1.5rem;
}

