/* GLOBAL THEME STYLES – fungery ================================ */

/* Lokale Fonts */
@font-face {
  font-family: "Lexend Deca";
  src: url('/fonts/LexendDeca-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('/fonts/LexendDeca-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* Reset & Grundverhalten */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Lexend Deca", sans-serif;
  scroll-behavior: smooth;
  color: rgb(255, 244, 216);
  background-color: rgb(106, 99, 169);
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Bilder */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
}

/* Links */
a {
  color: rgb(235, 92, 143);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

a:hover {
  color: rgb(244, 234, 207);
  border-color: rgb(244, 234, 207);
}

.mail-link {
  color: rgb(235, 92, 143);
}

.mail-link:hover {
  color: rgb(244, 234, 207);
}

a:not(.mail-link) {
  color: rgb(242, 194, 209);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

a:not(.mail-link):hover {
  color: rgb(235, 92, 143);
  border-color: rgb(235, 92, 143);
}

/* Sections */
.section-image {
  max-width: 700px;
  margin: 1rem auto;
}

.section-textblock {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.section-textblock-small {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.caption {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: rgb(244, 234, 207);
}

/* Nur Bilder mit Klasse "rounded" */
img.rounded {
  border-radius: 24px;
}
