/*
 * Typography snapshot from taschenstation.de
 * Fonts: Inter (400/700) for body copy, Lora 700 for headings.
 * Base size 1rem with 1.5625rem line height plus responsive heading hierarchy.
 */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("https://taschenstation.de/wp-content/themes/taschenstation/assets/fonts/inter/inter-v18-latin-regular.woff2")
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("https://taschenstation.de/wp-content/themes/taschenstation/assets/fonts/inter/inter-v18-latin-700.woff2")
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  src: url("https://taschenstation.de/wp-content/themes/taschenstation/assets/fonts/lora/lora-v35-latin-700.woff2")
    format("woff2");
}

:root {
  --ts-font-base: "Inter", sans-serif;
  --ts-font-display: "Lora", serif;
  --ts-font-size-base: 1rem;
  --ts-line-height-base: 1.5625rem;
  --ts-color-text: #353534;
  --ts-color-text-strong: #000000;
  --ts-color-bg: #e1f5f2;
  --ts-color-muted: #d9d9d9;
  --ts-color-highlight: #e1fd20;
  --ts-color-highlight-hover: #aec21f;
  --ts-color-accent: #7aacac;
  --ts-color-footer-bg: #f1f1f1;
  --ts-color-error: #c5354e;
  --ts-color-success: #4e8600;
  --ts-radius-pill: 0.5rem;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--ts-font-base);
  font-weight: 400;
  font-size: var(--ts-font-size-base);
  line-height: var(--ts-line-height-base);
  color: var(--ts-color-text);
  background-color: var(--ts-color-bg);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body > main {
  flex-grow: 1;
}

h1,
.h1 {
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.8125rem;
  letter-spacing: -0.5%;
  margin: 0;
}
@media (min-width: 576px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 3.4375rem;
    letter-spacing: -1%;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 4rem;
    line-height: 4.375rem;
  }
}

h2,
.h2 {
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.8125rem;
  margin: 0;
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 3rem;
    line-height: 3.4375rem;
  }
}

h3,
.h3 {
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.1875rem;
  margin: 0;
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin: 0;
}
@media (min-width: 992px) {
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 1.5rem;
    line-height: 2.1875rem;
  }
}

p,
.text-default {
  font-size: var(--ts-font-size-base);
  line-height: var(--ts-line-height-base);
  margin: 0;
}

small,
.text-small {
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.text-uppercase {
  text-transform: uppercase;
}

strong,
b,
.bold {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

a {
  color: var(--ts-color-text);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 0.0625rem;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    text-decoration-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    text-underline-offset 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
a:focus-visible,
a.is-active {
  color: var(--ts-color-text-strong);
  text-underline-offset: 0.28125rem;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  line-height: var(--ts-line-height-base);
}

blockquote {
  font-style: italic;
  margin: 0;
  line-height: var(--ts-line-height-base);
  color: inherit;
}

cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: inherit;
}

button,
.button {
  font-family: var(--ts-font-base);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5625rem;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0.875rem 1.5rem;
  color: var(--ts-color-text);
  border: 0.0625rem solid var(--ts-color-highlight);
  border-radius: var(--ts-radius-pill);
  background-color: var(--ts-color-highlight);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover,
.button:hover {
  border-color: var(--ts-color-highlight-hover);
  background-color: var(--ts-color-highlight-hover);
}

.button-secondary,
button.button-secondary {
  border-color: var(--ts-color-text);
  background-color: transparent;
}

.button-secondary:hover,
button.button-secondary:hover {
  background-color: #dadada;
}

button:disabled,
.button:disabled,
.button.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

label {
  font-size: 1rem;
  line-height: 1.5625rem;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  font-size: 1rem;
  line-height: 1.5625rem;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.875rem 1.25rem;
  color: var(--ts-color-text);
  border: 0.0625rem solid var(--ts-color-text);
  border-radius: var(--ts-radius-pill);
  background-color: var(--ts-color-bg);
  appearance: none;
}

@media (min-width: 992px) {
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="password"],
  textarea,
  select {
    padding-top: 1.0625rem;
    padding-bottom: 1rem;
  }
}

textarea {
  min-height: 8.125rem;
}

.site-footer {
  text-align: center;
  background-color: var(--ts-color-footer-bg);
  padding: 1.5rem;
}

.site-footer--light {
  background-color: #ffffff;
}

.hero-title {
  font-family: var(--ts-font-base);
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.4375rem;
  letter-spacing: -1%;
  margin: 0;
  text-align: center;
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
    line-height: 4.375rem;
  }
}

.page-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
  flex-wrap: wrap;
}

.page-links a {
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 600;
}

.explanation-section {
  background-color: #df009b;
  color: #ffffff;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .explanation-section {
    padding: 3rem 4rem;
  }
}

.explanation-section h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.explanation-section p {
  color: #ffffff;
  margin-bottom: 1rem;
}
