/* ===================== */
/* COMIC/GEEK THEME - VARIABLES */
/* ===================== */
:root {
    /* Nieuwe kleurenpalet */
    --primary: #ff3b3b; /* Heldere comic rood */
    --primary-dark: #d10000;
    --primary-light: #ff6b6b;
    --secondary: #00a8ff; /* Comic blauw */
    --secondary-dark: #0078cc;
    --accent: #ffd700; /* Geel voor highlights */
    --accent-dark: #ffa800;
    
    /* Achtergrond kleuren */
    --bg-color: #f0f8ff; /* Lichte blauwe tint */
    --card-bg: #ffffff;
    --panel-bg: #ffffff;
    
    /* Tekst kleuren */
    --text-color: #1a1a1a;
    --text-light: #333333;
    --text-muted: #666666;
    
    /* Comic effecten */
    --comic-border: #1a1a1a;
    --comic-shadow: 4px 4px 0px var(--comic-border);
    --comic-shadow-small: 2px 2px 0px var(--comic-border);
    --comic-highlight: #ffff00;
    
    /* Comic fonts */
    --font-heading: 'Bangers', 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Comic Neue', 'Comic Sans MS', cursive;
    --font-accent: 'Press Start 2P', 'Courier New', monospace;
}

/* ===================== */
/* COMIC FONTS IMPORTEREN */
/* ===================== */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&family=Press+Start+2P&display=swap');

/* ===================== */
/* BASIS COMIC STYLING */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 59, 59, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 255, 0.1) 0%, transparent 20%);
    background-attachment: fixed;
}

/* Comic bubble effect voor tekst containers */
.comic-bubble {
    position: relative;
    background: var(--card-bg);
    border: 3px solid var(--comic-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--comic-shadow);
}

.comic-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--comic-border) transparent transparent;
}

.comic-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 20px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--card-bg) transparent transparent;
}

/* ===================== */
/* LAYOUT COMPONENTEN - COMIC STYLE */
/* ===================== */

/* Header met comic bubble */
.header {
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    border-bottom: 5px solid var(--comic-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 0px var(--comic-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: white;
    text-shadow: 3px 3px 0px var(--comic-border);
    transform: rotate(-2deg);
    background: var(--secondary);
    padding: 0.5rem 1.5rem;
    border: 3px solid var(--comic-border);
    box-shadow: var(--comic-shadow);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    border: 2px solid var(--comic-border);
    border-radius: 10px;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 0px var(--comic-border);
    box-shadow: var(--comic-shadow-small);
}

.nav a:hover {
    background: var(--accent);
    color: var(--comic-border);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--comic-border);
}

.phone {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: white;
    background: var(--accent-dark);
    padding: 0.5rem 1rem;
    border: 2px solid var(--comic-border);
    border-radius: 5px;
    box-shadow: var(--comic-shadow-small);
}

/* Footer */
.footer {
    padding: 2rem 4rem;
    background: var(--primary-dark);
    border-top: 5px solid var(--comic-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    background: var(--accent);
    color: var(--comic-border);
    transform: scale(1.1);
}

/* ===================== */
/* SECTIE STYLING - COMIC PANELS */
/* ===================== */

.section-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0px var(--comic-border);
}

.section-header::after {
    content: '!!!';
    position: absolute;
    right: -35px;
    top: -10px;
    color: var(--accent);
    font-size: 1.8rem;
    transform: rotate(15deg);
}

/* Hero Sectie */
.hero {
    padding: 6rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-bottom: 5px solid var(--comic-border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 4px 4px 0px var(--comic-border);
    transform: rotate(-1deg);
    background: var(--primary);
    padding: 1rem 2rem;
    display: inline-block;
    border: 5px solid var(--comic-border);
    box-shadow: var(--comic-shadow);
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 15px;
    border: 3px solid var(--accent);
}

/* Over Sectie */
.about {
    padding: 4rem 4rem;
    border-bottom: 3px dashed var(--comic-border);
    background: var(--panel-bg);
}

.about-content {
    max-width: 800px;
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--card-bg);
    padding: 2rem;
    border: 4px solid var(--primary);
    border-radius: 0 25px 25px 25px;
    box-shadow: var(--comic-shadow);
    position: relative;
}

.about-content::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary);
    position: absolute;
    top: -30px;
    left: 20px;
    line-height: 1;
}

/* Projecten Sectie */
.projects {
    padding: 4rem 4rem;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 59, 59, 0.05) 10px,
        rgba(255, 59, 59, 0.05) 20px
    );
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.project-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: normal;
    color: var(--primary);
    text-shadow: 3px 3px 0px var(--comic-border);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 4px solid var(--secondary);
    border-radius: 15px;
    box-shadow: var(--comic-shadow);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 8px 8px 0px var(--comic-border);
    border-color: var(--accent);
}

.project-card:hover::before {
    opacity: 0.1;
}

.project-category {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 1rem;
    background: var(--accent);
    padding: 0.3rem 0.8rem;
    display: inline-block;
    border: 2px solid var(--comic-border);
    border-radius: 20px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: var(--accent);
    border: 2px solid var(--comic-border);
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.project-link:hover {
    gap: 1rem;
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Diensten Sectie */
.services {
    padding: 4rem 4rem;
    background: var(--card-bg);
    border-top: 5px dotted var(--primary);
    border-bottom: 5px dotted var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--panel-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 4px solid var(--accent);
    box-shadow: var(--comic-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.service-item::after {
    content: '✓';
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid var(--comic-border);
}

.service-item:hover {
    transform: rotate(2deg) scale(1.05);
    border-color: var(--secondary);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Interests Sectie */
.interests {
    padding: 4rem 4rem;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        transparent,
        transparent 15px,
        rgba(0, 168, 255, 0.05) 15px,
        rgba(0, 168, 255, 0.05) 30px
    );
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.interest-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--comic-border);
    transition: all 0.3s ease;
    box-shadow: var(--comic-shadow);
    position: relative;
}

.interest-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed var(--accent);
    border-radius: 10px;
    pointer-events: none;
}

.interest-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 6px 6px 0px var(--comic-border);
}

.interest-item h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.interest-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Sectie */
.contact {
    padding: 4rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '✉️📱💻';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    opacity: 0.5;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 0px var(--comic-border);
}

.contact p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--accent);
}

/* ===================== */
/* BUTTONS - COMIC STYLE */
/* ===================== */

.cta-button, .submit-btn, .login-button, .logout-button {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border: 3px solid var(--comic-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--comic-shadow-small);
    text-shadow: 1px 1px 0px var(--comic-border);
    letter-spacing: 1px;
}

.cta-button, .submit-btn {
    background: var(--primary);
    color: white;
}

.login-button {
    background: var(--secondary);
    color: white;
    border: 2px solid var(--comic-border);
}

.logout-button {
    background: var(--accent-dark);
    color: var(--comic-border);
    border: 2px solid var(--comic-border);
}

.cta-button:hover, .submit-btn:hover {
    background: var(--primary-dark);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--comic-border);
}

.login-button:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

.logout-button:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* ===================== */
/* FILMS MODAL - COMIC STYLE */
/* ===================== */

/* Films Grid Container */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg-color);
    border: 4px solid var(--secondary);
    border-radius: 15px;
    margin: 1rem;
}

/* Films Card Styling */
.film-card {
    background: var(--card-bg);
    border: 3px solid var(--comic-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--comic-shadow-small);
    height: 320px;
    overflow: hidden;
}

.film-card:hover {
    transform: translate(-3px, -3px);
    border-color: var(--primary);
    box-shadow: 6px 6px 0px var(--comic-border);
}

.film-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 12px 12px 0 0;
}

.film-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    min-height: 40px;
    flex-shrink: 0;
}

.film-type {
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: normal;
    order: 2;
    border: 2px solid var(--comic-border);
}

.film-actions {
    display: flex;
    gap: 0.5rem;
    order: 1;
}

.edit-btn, .delete-btn {
    background: none;
    border: 2px solid var(--comic-border);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-btn {
    background: var(--accent);
    color: var(--comic-border);
}

.delete-btn {
    background: var(--primary-light);
    color: white;
}

.edit-btn:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(5deg);
}

.delete-btn:hover {
    background: var(--primary-dark);
    transform: rotate(-5deg);
}

.film-poster-container {
    width: 100%;
    height: 150px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--comic-border);
}

.film-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.film-card:hover .film-poster {
    transform: scale(1.05);
}

.film-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.film-poster-placeholder.loading {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.film-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.film-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.3;
    flex-shrink: 0;
}

.film-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0;
    font-family: var(--font-accent);
}

.film-rating {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 0px var(--comic-border);
}

.film-notes {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 2.8em;
    font-family: var(--font-body);
}

.film-card:hover .film-notes {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow-y: auto;
    background: var(--accent);
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px dashed var(--comic-border);
}

.film-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 2px dotted var(--comic-border);
    flex-shrink: 0;
    font-family: var(--font-accent);
}

/* Films Controls */
.films-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--secondary);
    border-bottom: 3px solid var(--comic-border);
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem;
    border-radius: 10px;
    border: 3px solid var(--comic-border);
}

.search-input {
    padding: 0.75rem 1rem;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    width: 300px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: white;
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-controls select {
    padding: 0.75rem;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    background: white;
    font-family: var(--font-body);
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

/* Modal Comic Style */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    border: 5px solid var(--comic-border);
    box-shadow: 8px 8px 0px var(--comic-border);
}

.close-button {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
    background: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px solid var(--comic-border);
    box-shadow: var(--comic-shadow-small);
    font-family: var(--font-heading);
}

.close-button:hover {
    color: var(--secondary);
    background: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 3px solid var(--comic-border);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 0px var(--comic-border);
}

.modal-header p {
    color: white;
    margin: 0;
    font-family: var(--font-body);
}

/* ===================== */
/* FORMULIEREN - COMIC STYLE */
/* ===================== */

.contact-form {
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    background: var(--panel-bg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.contact-form label.required::after {
    content: " *";
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 2px 2px 0px var(--comic-border), 0 0 0 3px rgba(255, 59, 59, 0.2);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Star Rating Comic Style */
.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 2rem;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 0px var(--comic-border);
}

.star:hover,
.star.active {
    color: var(--accent);
    transform: scale(1.2);
    text-shadow: 2px 2px 0px var(--comic-border);
}

.star:hover ~ .star {
    color: var(--gray-light);
}

/* ===================== */
/* RESPONSIVE DESIGN - COMIC STYLE */
/* ===================== */

@media (max-width: 768px) {
    .header {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about, .projects, .services, .contact, .interests {
        padding: 3rem 2rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    /* Films controls op mobile */
    .films-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }
    
    .search-input {
        width: 100%;
    }
    
    .filter-controls {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .films-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
        max-height: 50vh;
    }
    
    .close-button {
        right: 10px;
        top: 5px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about, .projects, .services, .contact, .interests {
        padding: 2rem 1rem;
    }
    
    .project-grid, .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.625rem 0.75rem;
    }
}

/* ===================== */
/* GAME LIBRARY SPECIFIEK - COMIC STYLE */
/* ===================== */

/* Game Library Modal specifiek */
#gameLibraryModal .modal-content {
    max-width: 95%;
    width: 95%;
    height: 95vh;
    margin: 2.5vh auto;
    padding: 0;
    border: 5px solid var(--secondary) !important;
    border-radius: 20px !important;
    box-shadow: 10px 10px 0px var(--comic-border) !important;
}

.game-library-modal .modal-body {
    padding: 0;
    height: calc(100% - 80px);
    width: 100%;
}

#gameLibraryFrame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 15px 15px;
    background: var(--card-bg);
}

/* Game Library Header */
#gameLibraryModal .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--comic-border);
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
    border-radius: 15px 15px 0 0;
    margin: 0;
}

#gameLibraryModal .modal-header h2 {
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 0px var(--comic-border);
}

#gameLibraryModal .modal-header p {
    margin: 0;
    color: white;
    font-family: var(--font-body);
}

/* ===================== */
/* FILMS MODAL SPECIFIEK - COMIC STYLE */
/* ===================== */

.films-modal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    background: var(--bg-color);
}

.films-modal .modal-header {
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
}

.films-modal .modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Admin Controls */
.admin-controls {
    display: none;
    gap: 10px;
    align-items: center;
    margin: 1rem 2rem 0;
    padding: 0.75rem 1rem;
    background: var(--accent);
    border: 3px solid var(--comic-border);
    border-radius: 10px;
    box-shadow: var(--comic-shadow-small);
    font-family: var(--font-accent);
    font-size: 0.8rem;
}

.admin-controls.visible {
    display: flex;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.logout-button {
    background: var(--primary);
    color: white;
    border: 2px solid var(--comic-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: var(--font-accent);
    box-shadow: var(--comic-shadow-small);
}

.logout-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Films Controls */
.films-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--secondary);
    border-bottom: 3px solid var(--comic-border);
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 1rem 1rem;
    border-radius: 10px;
    border: 3px solid var(--comic-border);
    box-shadow: var(--comic-shadow-small);
}

.search-input {
    padding: 0.75rem 1rem;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    width: 300px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: white;
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-controls select {
    padding: 0.75rem;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    background: white;
    font-family: var(--font-body);
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

#addFilmButton {
    background: var(--primary);
    color: white;
    border: 3px solid var(--comic-border);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--comic-shadow-small);
}

#addFilmButton:hover {
    background: var(--primary-dark);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--comic-border);
}

/* Films Grid */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem 2rem;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    border: none;
    margin: 0;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.1rem;
    background: var(--card-bg);
    border: 3px dashed var(--comic-border);
    border-radius: 15px;
    margin: 1rem;
}

/* ===================== */
/* LOGIN MODAL SPECIFIEK */
/* ===================== */

#loginModal .modal-content {
    background: var(--card-bg);
    border: 5px solid var(--primary);
    border-radius: 20px;
}

#loginModal .modal-header {
    background: linear-gradient(90deg, var(--primary), var(--accent-dark)) !important;
}

#loginForm .form-group {
    margin-bottom: 1.5rem;
}

#loginForm input {
    background: white;
    border: 3px solid var(--comic-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: inset 2px 2px 0px var(--comic-border);
}

#loginForm input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: inset 2px 2px 0px var(--comic-border), 0 0 0 3px rgba(0, 168, 255, 0.2);
}

#loginMessage {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 1rem;
}

#loginMessage.success {
    background: rgba(0, 255, 0, 0.1);
    color: green;
    border: 2px solid green;
}

#loginMessage.error {
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* ===================== */
/* STAR RATING FIX */
/* ===================== */

.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.star {
    font-size: 2rem;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 0px var(--comic-border);
}

.star:hover,
.star.active {
    color: var(--accent);
    transform: scale(1.2);
    text-shadow: 2px 2px 0px var(--comic-border);
}

.star:hover ~ .star {
    color: var(--gray-light);
}

/* ===================== */
/* RESPONSIVE FIXES */
/* ===================== */

@media (max-width: 768px) {
    /* Game Library responsive */
    #gameLibraryModal .modal-content {
        width: 98%;
        height: 98vh;
        margin: 1vh auto;
    }
    
    .game-library-modal .modal-body {
        height: calc(100% - 70px);
    }
    
    #gameLibraryModal .modal-header {
        padding: 1rem 1.5rem;
    }
    
    /* Films responsive */
    .films-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        margin: 0 1rem 1rem;
    }
    
    .search-input {
        width: 100%;
    }
    
    .filter-controls {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .films-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem 1rem;
        max-height: 50vh;
    }
    
    .admin-controls {
        margin: 1rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Game library op zeer kleine schermen */
    #gameLibraryModal .modal-content {
        width: 99%;
        height: 99vh;
        margin: 0.5vh auto;
    }
    
    .game-library-modal .modal-body {
        height: calc(100% - 60px);
    }
    
    #gameLibraryModal .modal-header {
        padding: 0.75rem 1rem;
    }
    
    #gameLibraryModal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    /* Films extra small */
    .films-grid {
        max-height: 45vh;
    }
    
    .film-card {
        height: 280px;
    }
    
    .film-poster-container {
        height: 120px;
    }
}