/* Home page */
.hero-short {
    max-height: 300px;
    position: relative;
    overflow: hidden;
}

.typewriter {
    overflow: visible;
    border-right: none;
    white-space: normal;
    animation: none;
}

/* Contact page */
.contact-cli {
    max-width: 600px;
    margin: 2rem auto;
}

/* About page */
.hero-short {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.hero-short .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-size: 3rem;
    width: 100%;
}

/* About page */
body .content-container.about-content {
    max-width: 800px;
    width: 80%; /* 10% marge aan elke kant */
    margin-left: 1%;
    margin-right: 1%;
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--about-container-bg, #FFFFFF);
    text-align: var(--about-text-align, justify);
    font-size: var(--about-font-size, 16px);
    font-family: var(--about-font-family, Arial, sans-serif);
}

.about-content {
    font-family: 'VT323', monospace;
    padding: 0;
    box-shadow: none;
    margin-bottom: 1em;
    text-align: left; /* Default value, can be overridden by inline styles */
}

.about-text-container {
    font-family: 'VT323', monospace;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    text-align: left;
    color: hsl(0, 0%, 100%);
}

.about-title {
    text-align: left;
    color: #FF6600; /* Of een andere kleur die past bij je ontwerp */
    margin-bottom: 20px;
}

#about-content {
    white-space: pre-wrap; /* Behoudt witruimte en regeleinden */
}

/* CRT effect */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(
            circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 80%,
            rgba(0, 0, 0, 0.4) 100%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    background-size: 100% 100%, 100% 2px;
    pointer-events: none;
    z-index: 9999;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 9998;
}

/* Verwijder de typewriter effect van de titel */
.typewriter-text {
    overflow: visible;
    border-right: none;
    white-space: normal;
    animation: none;
}
/* Front Page Styles */
.hero-text {
    font-family: 'VT323', monospace;
}

.front-page-content {
    font-family: 'VT323', monospace;
}

/* Contact/Profile Page */
.cyberpunk-profile {
    max-width: 600px;
    width: 90%;
    margin: 2rem auto 70px;
    background-color: #0F0F1F;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-family: 'VT323', monospace;
    color: #FFFFFF;
}

.profile-header {
    position: relative;
}

.banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-image {
    position: absolute;
    bottom: -60px;
    left: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #0F0F1F;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.profile-info {
    padding: 70px 20px 20px;
    text-align: left;
}

.profile-info h1 {
    font-size: 28px;
    margin: 0 0 5px;
    color: #FF6600;
}

.username, .location, .joined {
    font-size: 18px;
    margin-bottom: 15px;
    color: #B19CD9;
}

.bio {
    margin-bottom: 15px;
    font-size: 16px;
    color: #FFFFFF;
}

.website a {
    color: #FF6600;
    text-decoration: none;
}

.website a:hover {
    text-decoration: underline;
}

.followers span {
    color: #FF6600;
    font-weight: bold;
}

.contact-button {
    background-color: #FF6600;
    color: #0F0F1F;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #FF8C00;
}

.contact-form {
    padding: 20px;
    background-color: rgba(255, 102, 0, 0.1);
    border-top: 1px solid #FF6600;
}

/* Single Post Styles */
.cyberpunk-single-post {
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
    font-family: 'VT323', monospace;
}

.cli-style {
    background-color: #0F0F1F;
    color: #00FF00;
    border: 1px solid transparent; /* Transparante border */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Subtiele schaduw voor diepte */
}

.cli-header {
    background-color: #0F0F1F;
    color: #FF6600;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #FF6600; /* Oranje onderlijn voor de header */
}

.cli-prompt {
    color: #FF6600;
}

.cli-content {
    padding: 20px;
    min-height: 400px;
}

.cli-content h1 {
    color: #FF6600;
    margin-bottom: 1rem;
    font-size: 2.5em;
}

.post-meta {
    margin-bottom: 1rem;
    font-size: 0.9em;
    color: #4169E1; /* Royal Blue */
}

.post-content {
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.post-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #FF6600; /* Oranje lijn boven de navigatie */
    padding-top: 1rem;
}

.prev-post, .next-post {
    color: #FF6600;
}

.prev-post a, .next-post a {
    color: #4169E1; /* Royal Blue */
    text-decoration: none;
}

.prev-post a:hover, .next-post a:hover {
    text-decoration: underline;
}

/* Comment Styles */
.comments-area {
    margin-top: 2rem;
    padding: 20px;
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00FF00;
    border-radius: 5px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 1rem;
    padding: 10px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 5px;
}

.comment-author {
    font-weight: bold;
    color: #FF6600;
}

.comment-metadata {
    font-size: 0.8em;
    color: #B19CD9;
}

.comment-content {
    margin-top: 0.5rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    background-color: #0F0F1F;
    border: 1px solid #00FF00;
    color: #00FF00;
}

.comment-form input[type="submit"] {
    background-color: #FF6600;
    color: #0F0F1F;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #FF8C00;
}
