/*
Theme Name: MonkeyManMatt
Theme URI: https://monkeymanmatt.nl
Author: MonkeyManMatt
Author URI: https://monkeymanmatt.nl
Description: Natuurlijk & organisch thema voor MonkeyManMatt - Presentatie & Trainingen
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: monkeymanmatt
*/

/* ===========================
   CSS VARIABELEN & RESET
=========================== */
:root {
  --moss: #3a6b28;
  --fern: #5a9645;
  --leaf: #7ab648;
  --lime: #a8d44e;
  --cream: #f9fbf2;
  --bark: #2d3d1e;
  --light: #e8f0d8;
  --mid: #c8dba0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f4f7ee;
  color: #2d3d1e;
  overflow-x: hidden;
}

/* ===========================
   NAVIGATIE
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--mid);
}

.main-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.1rem 2rem;
  flex-wrap: wrap;
}

.main-navigation a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss);
  text-decoration: none;
  transition: color 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--leaf);
}

/* ===========================
   HERO / BANNER
=========================== */
.hero-banner {
  min-height: 440px;
  background: linear-gradient(150deg, #e8f3d8 0%, #d4ecb8 50%, #c2e29a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.5) 0%, transparent 65%);
}

.hero-banner > * { position: relative; }

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--moss);
}

.site-tagline-sub {
  font-size: 0.7rem;
  color: var(--fern);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bark);
  max-width: 560px;
  margin-bottom: 1rem;
}

.hero-heading em { color: var(--moss); font-style: italic; }

.hero-description {
  font-size: 0.95rem;
  color: #5a7a42;
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ===========================
   KNOPPEN
=========================== */
.btn-primary,
.wp-block-button__link {
  background: var(--moss);
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
.wp-block-button__link:hover { background: var(--fern); }

/* ===========================
   SECTIES
=========================== */
.site-section {
  padding: 3rem 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.6rem;
}

.section-title,
h2.wp-block-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--bark);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mid), transparent);
  margin: 0.5rem 2rem 0;
}

/* ===========================
   AANBOD / DIENSTEN
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--leaf);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(90,150,69,0.1);
}

.service-icon { font-size: 1.4rem; margin-bottom: 0.65rem; }

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 0.35rem;
}

.service-desc { font-size: 0.8rem; color: #6a8a62; line-height: 1.6; }

/* ===========================
   BLOG / POSTS
=========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--mid);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: var(--leaf);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(90,150,69,0.1);
}

.blog-card .post-thumbnail {
  height: 150px;
  overflow: hidden;
}

.blog-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 1.1rem 1.2rem; }

.blog-card .post-date {
  font-size: 0.72rem;
  color: #8aaa70;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.blog-card .post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.blog-card .post-title a { color: inherit; text-decoration: none; }
.blog-card .post-title a:hover { color: var(--moss); }

.blog-card .post-excerpt { font-size: 0.8rem; color: #6a8a62; line-height: 1.6; }

.post-tag {
  display: inline-block;
  background: var(--light);
  color: var(--moss);
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-top: 0.6rem;
  text-decoration: none;
}

/* ===========================
   RECENSIES
=========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
}

.review-stars { color: var(--leaf); font-size: 1rem; margin-bottom: 0.65rem; letter-spacing: 2px; }

.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: #4a6a38;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-name { font-size: 0.82rem; font-weight: 500; color: var(--moss); }
.review-context { font-size: 0.72rem; color: #aac890; }

/* ===========================
   OVER MIJ
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-text { font-size: 0.93rem; line-height: 1.85; color: #4a6a38; }
.about-text p { margin-bottom: 1rem; }

.about-quote {
  background: var(--light);
  border-left: 3px solid var(--leaf);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
}

.about-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--moss);
  line-height: 1.65;
}

/* ===========================
   CONTACT FORMULIER
=========================== */
.contact-wrap {
  background: #fff;
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-intro { font-size: 0.88rem; color: #6a8a62; margin-bottom: 1.5rem; line-height: 1.7; }

/* WordPress / Contact Form 7 styling */
.wpcf7 .form-row,
.contact-wrap .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.wpcf7 label,
.contact-wrap label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a9a62;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.contact-wrap input,
.contact-wrap textarea {
  background: var(--cream);
  border: 1px solid var(--mid);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.contact-wrap input:focus,
.contact-wrap textarea:focus { border-color: var(--fern); }

.wpcf7 textarea,
.contact-wrap textarea { min-height: 90px; resize: vertical; }

.wpcf7 input[type="submit"],
.contact-wrap .btn-submit {
  background: var(--moss);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.7rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  width: 100%;
}

.wpcf7 input[type="submit"]:hover,
.contact-wrap .btn-submit:hover { background: var(--fern); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--bark);
  color: #a8c890;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #d4ecb8;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-col p,
.footer-col a {
  font-size: 0.82rem;
  color: #8aaa70;
  line-height: 2;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--lime); }
.social-link { display: flex; align-items: center; gap: 0.5rem; }

.footer-bottom {
  max-width: 880px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #3a5530;
  font-size: 0.72rem;
  color: #4a6a42;
  text-align: center;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .hero-heading { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .main-navigation { gap: 1rem; }
}
