body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
}

nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #000;
  margin: 0 10px;
  font-weight: bold;
}

h1 {
  text-align: center;
  margin-top: 40px;
}

h2 {
  margin-top: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

p {
  margin: 15px 0;
}

ul {
  margin: 15px 0 15px 25px;
}

li {
  margin-bottom: 10px;
}
form {
  max-width: 700px;
  margin: 20px auto;
}

form label {
  display: block;
  margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
}

button {
  padding: 10px 25px;
  font-size: 1em;
  cursor: pointer;
}
/* --- Formulier verfijning --- */

form {
  background: #fafafa;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #bbb;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus (als je in een veld klikt) */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #7a4a2e;          /* warme bruin-tint */
  box-shadow: 0 0 0 2px rgba(122, 74, 46, 0.15);
  outline: none;
}

/* Verzendknop */
button {
  background-color: #7a4a2e;
  color: #fff;
  border: none;
  border-radius: 4px;
}

button:hover {
  background-color: #5f3923;
}
/* Steden duidelijk markeren */
.city-section {
  margin-top: 60px;
}

.city-section h2 {
  background-color: #f3f3f3;
  padding: 10px 15px;
  border-left: 6px solid #7a4a2e;
  margin-bottom: 30px;
}
/* ---------- LEESBARE PAGINA OPMAAK ---------- */

body {
  background-color: #faf8f5;
}

h1 {
  font-size: 2.2em;
  letter-spacing: 0.5px;
}

h2 {
  margin-top: 45px;
  border-bottom: 2px solid #e6e0d8;
  padding-bottom: 6px;
  color: #3a2f2a;
}

p {
  font-size: 1.08em;
  line-height: 1.75;
}

/* ---------- QUOTE BLOK ---------- */

.intro-quote {
  font-size: 1.6em;
  font-style: italic;
  text-align: center;
  margin: 40px auto;
  max-width: 700px;
  color: #4a3b34;
  position: relative;
}

.intro-quote::before {
  content: "“";
  font-size: 3em;
  position: absolute;
  left: -15px;
  top: -20px;
  color: #c9b8a6;
}

.intro-quote::after {
  content: "”";
  font-size: 3em;
  position: absolute;
  right: -15px;
  bottom: -30px;
  color: #c9b8a6;
}

.intro-quote span {
  display: block;
  font-size: 0.55em;
  margin-top: 12px;
  font-style: normal;
  color: #7a6a60;
}

/* ---------- BETERE LEESRUIMTE ---------- */

.city-section,
div[style*="max-width"] {
  padding: 0 15px;
}
/* ---------- CAFE BLOKKEN ---------- */

.cafe {
  background: #ffffff;
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 10px;
  border: 1px solid #e5e0d8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

/* lichte hover (voelt modern maar rustig) */
.cafe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* titel */
.cafe h3 {
  margin-top: 0;
  color: #2f2622;
}

/* adres subtieler */
.cafe .adres {
  margin-top: 10px;
  color: #6b5b50;
  font-size: 0.95em;
}

/* stad visueel duidelijker */
/* ===== STAD TITELS ===== */

.city-section h2 {
 position: static;          /* NIET meer blijven hangen */
  background: none;          /* geen balk */
  border: none;              /* geen lijn links */
  box-shadow: none;
  padding: 0;
  margin-top: 60px;
  margin-bottom: 25px;

  font-size: 2em;
  text-align: left;
  color: #2f2622;
}

/* subtiele scheidingslijn onder de stad */
.city-section h2::after {
  content: "";
  display: block;
  height: 2px;
  background: #e5dfd6;
  margin-top: 8px;
  width: 120px;
}
.cafe-foto {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}
.foto-credit {
  font-size: 0.8em;
  color: #6b6b6b;
  font-style: italic;
  margin-top: -6px;
  margin-bottom: 10px;
}
.steden-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:25px;
}

.stad-kaart{
  display:block;
  padding:35px;
  text-align:center;
  background:#f5f1e8;
  border:1px solid #d6cbb3;
  text-decoration:none;
  font-size:22px;
  color:#3a2d1f;
  transition:0.2s;
}

.stad-kaart:hover{
  background:#e9dfc9;
}
.terug-balk{
  margin:10px 0 25px 0;
}

.terug-knop{
  display:inline-block;
  padding:8px 14px;
  background:#efe7d6;
  border:1px solid #cdbf9f;
  color:#3a2d1f;
  text-decoration:none;
  font-size:14px;
  border-radius:4px;
  transition:all 0.15s ease;
}

.terug-knop:hover{
  background:#e3d7bd;
  border-color:#b7a781;
}


