﻿/* Reset en basiselementen */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --theme-primary: #164e8e;
    --theme-secondary: #287ecf;
    --theme-secondary-hover: #1960ab;
    --theme-background: #e4edfa;
    --theme-background-dark: #164376;
    --theme-text: #170a07;
    --theme-header-text: #164e8e;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
}

html {
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--theme-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header styles */
header {
    background-color: var(--theme-background);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 50;
    top: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--theme-primary);
}

.logo {
    background-image: url(https://psinfoodservice.com/_next/static/media/logo.cac6c12b.png);
    background-size: contain;
    height: 100px;
    background-repeat: no-repeat;
    padding-left: 110px;
} 
.disabled {
    opacity: 0.23;
    cursor: not-allowed;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

    .nav-menu a {
        color: var(--theme-header-text);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        padding: 0.5rem 0;
    }

        .nav-menu a:hover {
            color: var(--theme-secondary);
        }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Main content */
.main-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* Hero section */
.hero {
    background-color: var(--theme-background);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--theme-primary);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Section styling */
section {
    margin-bottom: 3rem;
    background-color: white;  
    padding: 2rem;
}

h2 {
    color: var(--theme-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--theme-background);
    font-size: 1.75rem;
}

h3 {
    color: var(--theme-primary);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    list-style-type: none;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--theme-secondary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background-color: var(--theme-secondary-hover);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: white;
    color: var(--theme-secondary);
    border: 1px solid var(--theme-secondary);
}

    .btn-secondary:hover {
        background-color: #f8f9fa;
        color: var(--theme-secondary-hover);
    }

/* Cards */
.card {
    background-color: white;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .card h3 {
        margin-top: 0;
        color: var(--theme-primary);
    }

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Code blocks */
.code-block {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    font-family: monospace;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul {
    list-style: none;
    margin-left: 0;
}

    .footer-col ul li {
        margin-bottom: 0.75rem;
    }

.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-col a:hover {
        color: white;
        text-decoration: underline;
    }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.tab {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

    .tab.active {
        border-bottom-color: var(--theme-secondary);
        color: var(--theme-secondary);
        font-weight: 500;
    }

/* Plugin cards layout */
.plugin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plugin-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
}

    .plugin-card:hover {
        border-color: var(--theme-secondary);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .plugin-card h3 {
        margin-top: 0;
        color: var(--theme-primary);
    }

.plugin-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}
#inleiding, #introduction, #releases {
    margin-top: 40px;
}

/* Download sections */
.download-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0px;
    margin-bottom: 1.5rem;
}

.download-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.download-icon {
    margin-right: 1rem;
    color: var(--theme-secondary);
    font-size: 1.5rem;
}

.download-title {
    margin: 0;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--theme-primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--theme-background);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }
}

.version-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 10px;
}

.version-latest {
    background-color: #10b981;
    color: white;
}

.version-stable {
    background-color: #3b82f6;
    color: white;
}

.release-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--theme-background);
}

.release-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.change-list {
    margin-left: 0;
    padding-left: 0;
}

.change-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f9fafb;
}

.change-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 10px;
    min-width: 80px;
    text-align: center;
}

.type-feature {
    background-color: #dbeafe;
    color: #1e40af;
}

.type-improvement {
    background-color: #d1fae5;
    color: #065f46;
}

.type-bugfix {
    background-color: #fee2e2;
    color: #991b1b;
}

.type-breaking {
    background-color: #fef3c7;
    color: #92400e;
}

.type-security {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.roadmap-section {
    background: #f8f9fa;
    color: #666;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

    .roadmap-section h2 {
        color: #666;
        border-bottom: 2px solid rgba(255,255,255,0.3);
    }

.roadmap-item {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid #164e8e;
}

.roadmap-quarter {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e5e7eb;
    }

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -2.3rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--theme-secondary);
        border: 3px solid white;
        box-shadow: 0 0 0 2px var(--theme-secondary);
    }