a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: #ffe187;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.25em;
  text-decoration-skip-inl: none;
}

/* aktiver Menüpunkt – immer gelb unterstrichen */
.navbar .nav-link.active {
  text-decoration: underline;
  text-decoration-color: #ffe187;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.25em;
}

/* verhindert Flackern beim Hover auf aktivem Punkt */
.navbar .nav-link.active:hover {
  text-decoration-color: #ffe187;
}

.btn {
  background-color: black;
  border: none;
}

.btn:hover {
  background-color: #ffe187;
}

p {
  line-height: 1.5;
  font-size: 1.3em;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  background-color: #fdfdf9;
  background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700; /* oder 800, wenn du es stärker willst */
}


.image-wrapper {
  position: relative;
  display: block;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

#blog {
  padding-top: 100px; 
}

.card {
  margin-bottom: 1rem;
}


/* Navbar immer sichtbar */
#navbar {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}


/* Notizblock-Stil */
.notepad {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  margin: 2rem auto 3rem;
  max-width: 900px;
  
  overflow: hidden;
  font-family: 'Raleway', system-ui, sans-serif;
}





/* Text im Notizzettel */
.notepad .note-text {
  margin-top: 1.5rem;
  font-size: 1.25em;
  line-height: 1.55;
  color: white;
  /* optional: handschriftlicher Font fallback */
  font-family: 'Patrick Hand', 'Raleway', system-ui, sans-serif;
}



/* Kleine Abstufung für starke Kontraste auf dunklem Hintergrund */
#about {
  background: #0f0f0f; /* falls du das dunkle behalten willst */
  padding-bottom: 3rem;
}

.note-text a {
  text-decoration: underline;
  text-decoration-color: #ffe187;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.25em;
}

/* =========================
   Editorial Images
   (Workshops & Buchclub)
========================= */

.editorial-image {
  width: 40%;
  max-width: 420px;
}

/* Mobile */
@media (max-width: 768px) {
  .editorial-image {
    width: 100%;
    max-width: 100%;
  }
}

