/*-- Index 
    Afhandelen contactformulier 
---*/

:root {
	--olive: #6A720C;
	--olive-2: #818B11;
	--olive-3: #BCC915;
	--bg: #f7f7f2;
	--text: #1f2416;
	--muted: #5d6647;
	--card: #ffffff;
	--border: #dde2c7;
	--shadow: 0 12px 30px rgba(31, 36, 22, 0.08);
	--radius: 18px;
	--max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #fbfcf7 0%, var(--bg) 100%);
	line-height: 1.6;
}

h1,h2,h3 {
    padding-left: 58px;
}

p {
    padding-left: 58px;
}

header {
  background: #6A720C;
  color: white;
  padding: 18px 0;
  text-align: center;
}

ul.cir {
  list-style-type: circle;
}

li {
    padding-left: 64px;
}

.header-container {
  display: flex;
  align-items: center;
  padding: 18px;
}
.header-title {
  font-size: 5rem;
  color: white;
}
.header-subtitle {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
}

.logo {
  height: 120px;
  margin-left: 20px;
  margin-right: 15px; /* Space between logo and heading */
}

/*-- Afhandelen contactformulier ---*/
.contact-form {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 100%);
    color: #fff;
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    max-width: 800px;
}
.contact-form {
    max-width: 800px;
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-row label {
    width: 180px;
    padding-top: 10px;
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-row textarea {
    resize: vertical;
}

.contact-form button {
    margin-left: 180px;
    padding: 12px 24px;
    background: #6A720C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #818B11;
}

select {
    width: 100%;
    max-width: 420px;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-family: inherit;
    color: #333;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #666 50%),
        linear-gradient(135deg, #666 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 15px) calc(50% - 3px);
    background-size: 7px 7px;
    background-repeat: no-repeat;
}
/*-- Afhandelen blog ---*/
.blog-list {
  display: grid;
  gap: 12px;
}

.blog-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
}

.blog-row h2 {
  margin: 0 0 4px;
  padding-left: 0;
  font-size: 1.25rem;
  color: var(--olive-2);
}
.blog-row a:hover {
  background-color: #111;
}
.blog-row p {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
}

.blog-row .btn {
  white-space: nowrap;
  padding: 10px 16px;
}

@media (max-width: 700px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
}
/*-----*/
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

a { color: inherit; text-decoration: none; }

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--olive);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--olive-2); }
.btn-secondary {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(251, 252, 247, 0.86);
    border-bottom: 1px solid rgba(221, 226, 199, 0.8);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.2px;
        color: #6A720C;
}

.brand-sub {
    font-size: 0.88rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.96rem;
}

.hero {
    padding: 84px 0 54px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    background: rgba(188, 201, 21, 0.16);
    color: var(--olive);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p.lead {
    font-size: 1.14rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.trust span {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
}

.hero-card,
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 24px;
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.flow-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fcfcfa;
}

.flow-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--olive);
    color: #fff;
    font-weight: 800;
}

section {
    padding: 38px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.problem-grid,
.benefit-grid,
.pricing-grid,
.steps-grid {
    display: grid;
    gap: 20px;
}

.problem-grid,
.benefit-grid,
.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.card {
    padding: 24px;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.card p {
    margin-bottom: 0;
    color: var(--muted);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(188, 201, 21, 0.16);
    color: var(--olive);
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card.featured {
    border: 2px solid var(--olive);
    transform: translateY(-4px);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--olive);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.price-label {
    color: var(--muted);
    font-size: 0.94rem;
    margin-top: -6px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    flex-grow: 1;
}

.pricing-card li + li { margin-top: 8px; }

.pricing-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.cta {
    padding: 42px 0 72px;
}

.cta-box {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 100%);
    color: #fff;
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.cta-box p {
    margin: 0 0 22px;
    max-width: 720px;
    color: rgba(255,255,255,0.9);
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--olive);
}

.footer {
    padding: 18px 0 42px;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}


.photo-placeholder {
    width: 200px;
    height: 100px;
    background: url("../images/common/Steve20251001.JPEG") no-repeat center;
    background-size: contain;
}

.photo-bookcovers {
    width: 300px;
    height: 200px;
    background: url("../images/BookCovers5SteveMedium.png") no-repeat center;
    background-size: contain;
    gap: 200px;}

.icon-newtab {
    width: 300px;
    background: url("../images/common/NewTab.png") no-repeat center;
    background-size: contain;
}
nav ul li {
  float: left;
}

nav ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 26px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #111;
}

footer {
  background: #6A720C;
  color: white;
  text-align: center;
  padding: 1em 0;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #6A720C;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #6A720C;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #6A720C;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media (max-width: 700px) {
    .hero-grid,
    .problem-grid,
    .benefit-grid,
    .pricing-grid,
    .steps-grid {
    grid-template-columns: 1fr;
    }

    .nav-links {
    display: none;
    }

    .hero {
    padding-top: 54px;
    }

    .pricing-card.featured {
    transform: none;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row label {
        width: 100%;
        margin-bottom: 5px;
    }

    .contact-form btn {
        margin-left: 0;
    }
}