/*start about me*/
.about_me {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 10px;
    min-height: unset;
}
.inspo, .ervaring, .about {
    margin-top: 0;
    margin-bottom: 0;
    align-self: center;
}
.about_me img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Remove unused divs for less whitespace if possible */
.about_me .div1, .about_me .div5, .about_me .div6, .about_me .div7, .about_me .div8, .about_me .div9 {
    display: none;
}
/*end about me*/

.border_project{
    width: 100%;
}
.projects{
    display: flex;
}
.projects img{
    width: 1000px;
}


.character_sheet {
    width: 35%;
    border: 8px solid #777;
    padding: 2rem;
    margin: 3rem auto;
    background: #161616;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.15);
    max-width: 800px;
    font-family: 'IM Fell English', serif;
    position: relative;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.character_sheet::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 10px double #555;
    clip-path: polygon(12% 0%, 88% 0%, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0% 88%, 0% 12%);
    z-index: -1;
}

.character_sheet::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><pattern id="gothic-border" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25 0 L50 25 L25 50 L0 25 Z" stroke="%23777" stroke-width="2" fill="none"/></pattern><rect width="100%" height="100%" fill="url(%23gothic-border)"/></svg>');
    z-index: -2;
    opacity: 0.5;
}

.character_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.character_info,
.disciplines,
.attributes {
    border: 3px solid #777;
    padding: 1.5rem;
    background: #222;
    box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.15);
    position: relative;
    clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
}

h3 {
    font-size: 1.8rem;
    border-bottom: 2px solid #777;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #ccc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dots {
    letter-spacing: 2px;
    color: #ccc;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ccc;
    margin-right: 3px;
}

.dots span.filled {
    background: #ccc;
}

.health_status span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    margin-right: 5px;
}

.slider-test {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background: #111;
    border: 20px solid transparent;
}

.slick-slide {
    margin: 0 15px;
}

.project-card {
    background: #181818;
    color: #fff;
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: left;
    font-size: 1.1rem;
    width: 320px;
    min-height: 180px;
    margin: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 0 #ffd700;
    font-family: 'New Gothic Style', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 2px 0 #ffd700;
    border-color: #fff;
}
.project-card img {
    max-width: 100%;
    max-height: 160px;
    border-radius: 10px;
    border: 2px solid #ffd700;
    margin-bottom: 1rem;
    object-fit: cover;
    background: #222;
}
.project-info-text {
    font-size: 1.05rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px #000;
    margin-top: 0.5rem;
    word-break: break-word;
    text-align: center;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 14px;
    color: #999;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
    transform: scale(1.5);
}

.slick-prev, .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #999;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slick-prev:before, .slick-next:before {
    font-size: 22px;
    color: #fff;
}

@media (max-width: 768px) {
    .project-card {
        width: 100%;
        font-size: 0.9rem;
    }
}

.gothic-footer {
    background: #000;
    color: #eee;
    padding: 40px;
    text-align: center;
    border-top: 5px double #666;
    font-family: 'New Gothic Style', sans-serif;
}

.gothic-footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
}

.gothic-footer .footer-info {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.gothic-footer .footer-info h2 {
    font-size: 28px;
    color: #ccc;
    border-bottom: 2px solid #666;
    padding-bottom: 5px;
}

.gothic-footer .footer-info p {
    font-size: 16px;
    margin: 5px 0;
}

.gothic-footer .contact-form {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.gothic-footer .contact-form h3 {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 10px;
}

.gothic-footer .contact-form form {
    display: flex;
    flex-direction: column;
}

.gothic-footer .contact-form form input,
.gothic-footer .contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background: #111;
    border: 1px solid #666;
    color: #eee;
    font-size: 16px;
}

.gothic-footer .contact-form form button {
    background: #333;
    color: #fff;
    border: 1px solid #666;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.gothic-footer .contact-form form button:hover {
    background: #666;
    color: #000;
}

/* Project Buttons */
.project-buttons-section {
    margin-bottom: 2rem;
}
.project-btn {
    background: #222;
    color: #fff;
    border: 2px solid #666;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: 'New Gothic Style', sans-serif;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.project-btn:hover {
    background: #444;
    color: #ffd700;
    border-color: #ffd700;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #181818;
    color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 0 40px #000;
    position: relative;
    min-width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}
.modal-content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px #000;
}
.modal-content h4 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px #000;
}
.modal-content h5 {
    font-size: 1.2rem;
    color: #ffe066;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-shadow: 0 1px 2px #000;
}
.modal-content ul {
    margin: 0.8rem 0;
    padding-left: 1.2rem;
}
.modal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.modal-content a {
    color: #4fc3f7;
    font-weight: 500;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
}
.modal-content a:hover {
    color: #fff;
    background: rgba(79, 195, 247, 0.3);
    border-color: #4fc3f7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
}
.highlight-section {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}
.small-files-section, .all-files-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.small-files-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}
.small-files-section li {
    margin: 0;
    list-style: none;
}
.small-files-section a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 224, 102, 0.1);
    border: 1px solid rgba(255, 224, 102, 0.3);
    color: #ffe066;
}
.small-files-section a:hover {
    background: rgba(255, 224, 102, 0.2);
    border-color: #ffe066;
    color: #fff;
}
.close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover {
    color: #ffd700;
}
#projectForm label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}
#projectForm textarea, #projectForm input[type="file"] {
    width: 100%;
    margin-bottom: 1rem;
    background: #222;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 0.5rem;
}
#projectForm button[type="submit"] {
    background: #333;
    color: #fff;
    border: 1px solid #ffd700;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#projectForm button[type="submit"]:hover {
    background: #ffd700;
    color: #222;
}

/* Leerdoelen Tabs/Dropdown */
.leerdoelen-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.leerdoel-tab {
    background: #222;
    color: #fff;
    border: 2px solid #666;
    border-radius: 8px 8px 0 0;
    padding: 0.6rem 1.5rem;
    margin: 0 0.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'New Gothic Style', sans-serif;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.leerdoel-tab.active, .leerdoel-tab:hover {
    background: #ffd700;
    color: #222;
    border-bottom: 2px solid #ffd700;
}
.leerdoel-content {
    background: #181818;
    color: #fff;
    border: 2px solid #666;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
    font-size: 1.1rem;
    min-height: 80px;
    box-shadow: 0 2px 10px #0002;
}

/* Set a readable font for the whole site except the main name */
body, h2, h3, h4, h5, h6, p, a, button, input, textarea, label, .project-info-text, .leerdoel-content, .gothic-footer, .character_sheet, .character_info, .disciplines {
    font-family: 'Figtree', Arial, sans-serif !important;
}

/* Keep the gothic font for the main name only */
.banner_title h1 {
    font-family: 'New Gothic Style', 'UnifrakturMaguntia', serif !important;
    letter-spacing: 5px;
    font-size: 70px;
    color: #ccc;
    align-content: center;
    margin: 0;
}

/* Kopjes submenu styles */
.kopjes-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}
.kopje-tab {
    background: #222;
    color: #fff;
    border: 2px solid #666;
    border-radius: 8px 8px 0 0;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Figtree', Arial, sans-serif;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.kopje-tab.active, .kopje-tab:hover {
    background: #ffd700;
    color: #222;
    border-bottom: 2px solid #ffd700;
}
.bordered-content {
    border: 2px solid #ffd700;
    border-radius: 0 0 8px 8px;
    background: #181818;
    color: #fff;
    padding: 1.5rem;
    font-size: 1.05rem;
    min-height: 80px;
    box-shadow: 0 2px 10px #0002;
    margin-bottom: 2rem;
    text-align: left;
}

/* Verbeterde leesbaarheid voor leerdoelen */
.leerdoel-content, .bordered-content {
    font-size: 1.15rem;
    line-height: 1.8;
    padding: 2rem 2rem 2rem 2rem;
    color: #fff;
    background: #181818;
    text-shadow: 0 1px 2px #0008;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 10px #0002;
    letter-spacing: 0.01em;
}
.leerdoel-content strong, .bordered-content strong, .leerdoel-content h4, .bordered-content h4, .leerdoel-content h5, .bordered-content h5 {
    color: #ffe066;
    font-size: 1.18rem;
    font-weight: 700;
    display: block;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}
.leerdoel-content ul, .bordered-content ul {
    margin-left: 1.5em;
    margin-bottom: 0.5em;
}
.leerdoel-content li, .bordered-content li {
    margin-bottom: 0.3em;
    color: #fffbe7;
    font-weight: 500;
}
.leerdoel-content a, .bordered-content a {
    color: #ffe066;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.leerdoel-content a:hover, .bordered-content a:hover {
    color: #fffbe7;
}
