@font-face {
    font-family: 'JetBrains Mono';
    font-weight: 800;
    src: url('../fonts/JetBrainsMono-ExtraBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/JetBrainsMono-Medium.ttf') format('truetype');
    font-display: swap;
}

:root {
    --background: oklch(0.3796 0.0294 287.14);
    --front-layer: oklch(0.2749 0.0294 285.75);
    --border: oklch(0.224 0.0294 285.75);

    --text: oklch(0.95 0.03 80);
    --muted: oklch(0.75 0.025 80);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
    min-height: 100vh;
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--background);
    color: var(--text);
    font-weight: 500;
}

p, label {
    color: var(--muted);
    margin-bottom: 5px;
    margin-top: 0;
}

h1, h2 {
    color: var(--text);
    font-weight: 800;
    margin-bottom: 8px;
}

ul {
    margin: 0;
}

li p {
    margin-left: 2px;
}

.mid-pge {
    width: min(90%, 650px);
    padding: 24px;
    border-radius: 18px;
    background-color: var(--front-layer);
    border: 4px solid var(--border);
    margin: 12px;
}

hr {
    color: var(--muted);
    margin: 1.4rem 0 1.4rem 0;
}

.title-m {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

.project-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pcard {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.25);
    border: 2px solid oklch(0.224 0.0294 285.75);
    border-radius: 14px;
    padding: 26px 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pcard:hover {
    transform: translateY(-2px);
    border-color: #fff;
    cursor: pointer;
}

.pcard h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: underline #fff 2px solid;
}

.anarchy {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.5)), url('../images/Sunflower_Plains_Vibrant.webp');
    background-size: 100%;
}

.conplu {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/placeholder1.png');
    background-size: 100%;
}

.muset {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/placeholder2.png');
    background-size: 100%;
}

.ora {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/abstract_orange_background.jpg');
    background-size: 100%;
}

.red {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/abstract_red_background.jpg');
    background-size: 100%;
}

.pur {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/abstract_purple_background.jpg');
    background-size: 100%;
}

.blu {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/abstract_blue_background.jpg');
    background-size: 100%;
}

.bla {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/abstract_light_grey_background.jpg');
    background-size: 100%;
}

.conpat {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/connected-paths.png');
    background-size: 100%;
}

.conbri {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/connected-bricks.png');
    background-size: 110%;
}

.conroc {
    background-image: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.05)), url('../images/connected-rocks.png');
    background-size: 110%;
}

.bene-dis-row {
    display: flex;
    gap: 15px;
}

.bene-dis {
    flex: 1;
}

.custom-form {
    max-width: 400px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Styling voor zowel de inputs als de textarea */
input[type="text"], textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'JetBrains Mono', monospace;
    border: #ccc 2px solid;
}

/* Specifieke styling voor de textarea */
textarea {
    height: 80px;
    resize: none; /* Blokkeert handmatig schalen van het vak */
}

/* Focus effect wanneer je in een veld klikt */
input:focus,
textarea:focus {
    outline: none;
}

.submit-btn {
    width: 100%;
    height: 3rem;
    background-color: #7766FF;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;

    border: none;
    border-radius: 6px;
    border-top: #988aff 1px solid;
    border-bottom: #5944fc 2px solid;

    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.submit-btn:hover {
    background-color: #43398d;
    border-top: #534c8a 1px solid;
    border-bottom: #322977 1px solid;
    transform: translateY(1px);
    cursor: pointer;
}

a {
    color: white;
    text-decoration: none;
}

.dropd {
    position: relative;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #534c8a;
}

.dropd p {
    margin: 0;
    font-weight: 800;
    color: white;
}

.dropdco {
    display: none;
    position: absolute;
}

.dropd:hover .dropdco {
    display: block;
}