
/*
Theme Name: Stichtingpeuterspeelzalenmiddendelfland Theme 20260526
Theme URI: undefined
Description: Professional theme for Stichtingpeuterspeelzalenmiddendelfland
Version: 1.0.0
Author: PBN Automation
*/

/* Creative Studio Theme - Bold & Colorful */

/* Import Creative Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&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: #333;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1a;
}

/* Header */
.site-header {
  background: white;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #4CAF50, #FFEB3B, #F44336) 1;
}

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

.site-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

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

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

.main-navigation a {
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.main-navigation a:hover,
.main-navigation a.current {
  color: white;
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #b0b0b0;
  padding: 80px 0 40px 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4CAF50, #FFEB3B, #F44336);
}

.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: #999;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-navigation a:hover {
  color: #4CAF50;
  transform: translateY(-2px);
}

.copyright {
  color: #666;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.post-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 6px solid #4CAF50;
}

.post-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.post-thumbnail {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
}

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

.post-card:hover .post-thumbnail img {
  transform: scale(1.12) rotate(2deg);
}

.post-content {
  padding: 32px;
}

.post-title {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 16px 0;
  line-height: 1.3;
  font-family: 'Space Grotesk', sans-serif;
}

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

.post-title a:hover {
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more:hover {
  transform: scale(1.05);
  gap: 12px;
}

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

.single-post-content h1 {
  font-size: 56px;
  margin-bottom: 32px;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
}

.single-post-content img {
  border-radius: 24px;
  margin: 40px 0;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 24px;
  border: 3px solid #e5e5e5;
  border-radius: 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 4px #4CAF5022;
}

.contact-form button {
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  color: white;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-form button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

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

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

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

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

/* Selection */
::selection {
  background: #4CAF50;
  color: white;
}

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

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4CAF50, #FFEB3B);
  border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FFEB3B, #F44336);
}
