
/*
Theme Name: vakmanandrewaterontharder.nl Theme 20260203
Theme URI: undefined
Description: Professional theme for vakmanandrewaterontharder.nl
Version: 1.0.0
Author: PBN Automation
*/

/* Tech Innovate Theme - Dark Mode Tech */

/* Import Tech Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #b0b0b0;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: white;
}

code, pre {
  font-family: 'JetBrains Mono', monospace;
}

/* Header */
.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-title {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  color: #0099CC;
  text-shadow: 0 0 10px #0099CC;
  letter-spacing: -1px;
}

.site-title a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 8px;
}

.main-navigation a {
  color: #b0b0b0;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navigation a:hover,
.main-navigation a.current {
  color: #0099CC;
  border-color: #0099CC;
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px #0099CC44;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: #666;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0099CC, #66CC66, transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.footer-navigation {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-navigation a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
}

.footer-navigation a:hover {
  color: #0099CC;
  text-shadow: 0 0 10px #0099CC;
}

.copyright {
  color: #444;
  font-size: 13px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'JetBrains Mono', monospace;
}

/* Blog & Archive */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  padding: 80px 0;
}

.post-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #0099CC;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.post-thumbnail {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0099CC33, #66CC6633);
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.1);
}

.post-content {
  padding: 28px;
}

.post-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.post-title a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-title a:hover {
  color: #0099CC;
  text-shadow: 0 0 10px #0099CC;
}

.post-excerpt {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.read-more {
  color: #0099CC;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'JetBrains Mono', monospace;
}

.read-more:hover {
  gap: 10px;
  text-shadow: 0 0 10px #0099CC;
}

/* Single Post */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 2rem;
  color: #b0b0b0;
}

.single-post-content h1 {
  font-size: 48px;
  margin-bottom: 32px;
  color: white;
}

.single-post-content img {
  border-radius: 16px;
  margin: 32px 0;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.single-post-content code {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  color: #0099CC;
  font-size: 14px;
}

.single-post-content pre {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: white;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0099CC;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px #0099CC44;
}

.contact-form button {
  background: linear-gradient(135deg, #0099CC, #66CC66);
  color: #0a0a0a;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 30px #0099CC66;
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px #0099CC;
}

/* Responsive */
@media (max-width: 768px) {
  .site-title {
    font-size: 20px;
  }

  .main-navigation {
    flex-direction: column;
    gap: 8px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #0099CC;
  color: #0a0a0a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0099CC, #66CC66);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0099CC;
}
