/*
Theme Name: YurtSupport
Theme URI: https://yurtsupport.nl
Author: YurtSupport
Author URI: https://yurtsupport.nl
Description: Visueel aantrekkelijk WordPress thema voor YurtSupport, met homepage gericht op yurt opbouw en onderhoud.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yurtsupport
*/

:root {
  --color-primary: #0f5d45;
  --color-secondary: #d0f1e3;
  --color-background: #f4f5f7;
  --color-white: #ffffff;
  --color-text: #20212a;
  --color-text-secondary: #4e586f;
  --color-accent: #eef7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f5f7;
}

a {
  color: #0f5d45;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(32, 33, 42, 0.08);
}

.site-header .wrap,
.site-footer .wrap,
.section-wrap {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(17, 22, 53, 0.06);
}

.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.site-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f5d45;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(15, 93, 69, 0.12) 0%, rgba(244, 245, 247, 1) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

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

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
}

.hero-copy p {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: #3d4555;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 1rem 1.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button-primary {
  background: #0f5d45;
  color: #ffffff;
}

.button-secondary {
  background: rgba(15, 93, 69, 0.08);
  color: #0f5d45;
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero-visual {
  min-height: 420px;
  border-radius: 28px;
  background: radial-gradient(circle at top left, #d0f1e3, transparent 30%),
    radial-gradient(circle at bottom right, #eef7fb, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  box-shadow: 0 24px 60px rgba(15, 93, 69, 0.08);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.hero-visual .card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(15, 93, 69, 0.05);
}

.card-hero-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #0f5d45;
}

.card-hero-text {
  margin: 0;
  color: #4e586f;
}

.section {
  padding: 4rem 0;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #121421;
}

.section p.lead {
  margin: 0 0 2rem;
  max-width: 680px;
  color: #4e586f;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-service,
.card-feature {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(32, 33, 42, 0.05);
}

.card-service h3,
.card-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.card-service p,
.card-feature p {
  margin: 0;
  color: #4e586f;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-panel .contact-card {
  background: #0f5d45;
  color: #ffffff;
  border-radius: 30px;
  padding: 2.5rem;
}

.contact-panel .contact-card h3 {
  margin-top: 0;
}

.contact-panel .contact-card p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details a {
  color: #ffffff;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0;
}

.site-footer p {
  margin: 0;
  color: #667085;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-panel,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap,
  .hero-visual,
  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }
}
