/* ============================================
   Dyad Webdesign - Main Stylesheet
   Colors: Coral #E07A5F | Marine #3D405B | Cream #F4F1DE | Green #81B29A | Yellow #F2CC8F
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --coral: #E07A5F;
    --coral-dark: #C96A52;
    --coral-light: #F0A090;
    --marine: #3D405B;
    --marine-light: #4D5070;
    --cream: #F4F1DE;
    --cream-dark: #E8E5D4;
    --green: #81B29A;
    --green-dark: #6B9A84;
    --yellow: #F2CC8F;
    --white: #FFFFFF;
    --gray-100: #F8F7F4;
    --gray-200: #E5E3DE;
    --gray-300: #D1CFC8;
    --gray-400: #A8A59C;
    --gray-500: #7A776E;
    --gray-600: #5C5A52;
    --gray-700: #3E3D38;
    --gray-800: #2A2926;
    --gray-900: #1A1917;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(61, 64, 91, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 64, 91, 0.12);
    --shadow-lg: 0 12px 40px rgba(61, 64, 91, 0.18);
    --shadow-coral: 0 8px 32px rgba(224, 122, 95, 0.25);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--coral-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--marine);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1em;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 64, 91, 0.06);
    transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-svg {
    height: 40px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 10px 18px;
    color: var(--marine);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--coral);
    background: rgba(224, 122, 95, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--coral);
    border-radius: 1px;
}

.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--coral-dark);
    box-shadow: var(--shadow-coral);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--marine);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129, 178, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 122, 95, 0.1);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    margin-bottom: 20px;
    color: var(--marine);
}

.hero-title .highlight {
    color: var(--coral);
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    box-shadow: var(--shadow-coral);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--marine);
    border-color: var(--gray-300);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    width: 100%;
    max-width: 520px;
    position: relative;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA42; }

.mockup-body {
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-block {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.mockup-block.large { height: 120px; width: 100%; }
.mockup-block.medium { height: 60px; width: 70%; }
.mockup-block.small { height: 40px; width: 50%; }

.mockup-floating {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    animation: float 6s ease-in-out infinite;
}

.mockup-floating.stats {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.mockup-floating.speed {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

.mockup-floating .label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mockup-floating .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--coral);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--coral);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* ============================================
   DIENSTEN
   ============================================ */
.diensten {
    background: var(--white);
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.dienst-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.dienst-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.dienst-card:hover::before {
    transform: scaleX(1);
}

.dienst-icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.dienst-card:nth-child(2) .dienst-icon { background: rgba(129, 178, 154, 0.1); }
.dienst-card:nth-child(3) .dienst-icon { background: rgba(242, 204, 143, 0.2); }
.dienst-card:nth-child(4) .dienst-icon { background: rgba(61, 64, 91, 0.08); }
.dienst-card:nth-child(5) .dienst-icon { background: rgba(224, 122, 95, 0.1); }
.dienst-card:nth-child(6) .dienst-icon { background: rgba(129, 178, 154, 0.1); }

.dienst-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.dienst-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    background: var(--cream);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--marine) 0%, var(--marine-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(61, 64, 91, 0.6) 100%);
}

.portfolio-image-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.portfolio-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: 100px;
    font-weight: 500;
}

.portfolio-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.portfolio-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.portfolio-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   OVER ONS
   ============================================ */
.over-ons {
    background: var(--white);
}

.over-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.over-ons-visual {
    position: relative;
}

.over-ons-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.over-ons-image svg {
    width: 60%;
    height: auto;
    opacity: 0.9;
}

.over-ons-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.over-ons-stats .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.over-ons-stats .label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.over-ons-content h2 {
    margin-bottom: 20px;
}

.over-ons-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.over-ons-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.over-ons-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-600);
    font-weight: 500;
}

.over-ons-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   NIEUWS
   ============================================ */
.nieuws {
    background: var(--cream);
}

.nieuws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.nieuws-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.nieuws-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.nieuws-image {
    height: 180px;
    background: linear-gradient(135deg, var(--marine) 0%, var(--coral) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nieuws-image-placeholder {
    color: var(--white);
    font-size: 2.5rem;
    opacity: 0.8;
}

.nieuws-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nieuws-date {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-weight: 500;
}

.nieuws-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.nieuws-excerpt {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.nieuws-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nieuws-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.nieuws-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-details a {
    color: var(--marine);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-details a:hover {
    color: var(--coral);
}

/* Contact Form */
.contact-form {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--marine);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--coral);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #DC2626;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-success {
    background: rgba(129, 178, 154, 0.1);
    color: var(--green-dark);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--green);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--marine);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(244, 241, 222, 0.1);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
    color: var(--cream);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-contact li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--coral);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ============================================
   PRIVACY & VOORWAARDEN PAGES
   ============================================ */
.page-content {
    padding: 140px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 32px;
}

.page-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.page-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.page-content ul {
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-body {
    background: var(--gray-100);
    min-height: 100vh;
}

.admin-header {
    background: var(--marine);
    color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header .logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav {
    display: flex;
    gap: 4px;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-user span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.admin-user a {
    color: var(--coral);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-main {
    padding: 40px 0;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.admin-card h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.data-table th {
    font-weight: 600;
    color: var(--marine);
    background: var(--gray-100);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover td {
    background: var(--gray-100);
}

.data-table .actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.btn-edit {
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-edit:hover {
    background: var(--green-dark);
}

.btn-delete {
    background: #DC2626;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-delete:hover {
    background: #B91C1C;
}

.btn-view {
    background: var(--marine);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-view:hover {
    background: var(--marine-light);
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-published {
    background: rgba(129, 178, 154, 0.15);
    color: var(--green-dark);
}

.badge-draft {
    background: rgba(242, 204, 143, 0.2);
    color: #B8860B;
}

.badge-read {
    background: rgba(129, 178, 154, 0.15);
    color: var(--green-dark);
}

.badge-unread {
    background: rgba(224, 122, 95, 0.1);
    color: var(--coral);
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 24px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.login-card .logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-card .logo svg {
    height: 50px;
    width: auto;
}

.login-card h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.login-card .subtitle {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.login-error {
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid #DC2626;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 2FA */
.two-fa-code {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 24px 0;
}

.two-fa-code input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--marine);
}

.two-fa-code input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 64, 91, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--marine);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination a {
    color: var(--marine);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.pagination a:hover {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.pagination span.current {
    background: var(--coral);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-container,
    .over-ons-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .admin-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px;
        text-align: center;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-tagline {
        max-width: none;
    }

    .contact-form {
        padding: 24px;
    }

    .login-card {
        padding: 32px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .diensten-grid,
    .nieuws-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
