/*
Theme Name: Setters.nl
Theme URI: https://www.setters.nl
Author: John Klokgieter
Author URI: https://www.klokgieter.nl
Description: Een lichtgewicht en strak WordPress-thema voor appointmentsetters.
Version: 1.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: setters
Tags: appointmentsetting, minimal, responsive, modern
*/

/* Basis reset + stabiele layout */
* {
  box-sizing: border-box;
}

.member-only {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.member-only p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.member-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-member {
  background: #38a169;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-member:hover {
  background: #2f855a;
}



body {
  background-color: #f9f9f9;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
}

h1, h2, h3 {
  margin-top: 0;
  color: #000;
}

/* === Hero sectie === */

.hero {
  background-color: #f0fff4;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #111;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #444;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons a.button {
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.hero-buttons a.button:hover {
  background-color: #3e9142;
}

/* === Overzicht Profielen === */

.setters-grid {
  display: block;
  padding: 40px 20px;
}

/* === Setter profielkaart === */

.setter-card {
  background-color: #ffffff;
  color: #111;
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.setter-card:hover {
  transform: translateY(-4px);
}

.setter-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.setter-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.setter-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.setter-card img {
  width: 100%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.setter-info {
  text-align: center;
}

.setter-description {
  font-size: 15px;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

.setter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.setter-buttons .button,
.setter-buttons a {
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.2s ease-in-out;
}

.setter-buttons .button:hover,
.setter-buttons a:hover {
  background-color: #3e9142;
}

/* === Opdrachten (jobs) lijst === */

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  background-color: #ffffff;
  color: #111;
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.job-card:hover {
  transform: translateY(-4px);
}

.job-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.job-card p {
  font-size: 15px;
  margin: 0 0 10px 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.job-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.job-buttons .button {
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.2s ease-in-out;
}

.job-buttons .button:hover {
  background-color: #3e9142;
}

/* === Formulieren === */

form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
select,
textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #3e9142;
}

/* === Header === */

.site-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
}

.main-menu {
  display: flex;
  align-items: center;
}

.main-menu .menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-menu .menu li {
  margin: 0;
}

.main-menu .menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-menu .menu a:hover {
  color: #4CAF50;
}

/* === Hamburger menu knop === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
  z-index: 1001;
}

/* === Mobiel gedrag === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 1000;
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu .menu {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }

  .main-menu .menu a {
    width: 100%;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}

/* === Footer === */

footer {
  margin-top: 60px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* === Universele button styling voor <a> én <button> === */
.button,
button.button,
input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
  background-color: #3e9142;
}

