@font-face {
  font-family: 'Soehne';
  src: url('/assets/fonts/soehne-buch.otf') format('opentype');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'Soehne';
  src: url('/assets/fonts/soehne-buchkursiv.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Soehne';
  src: url('/assets/fonts/soehne-leicht.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Soehne';
  src: url('/assets/fonts/soehne-leichtkursiv.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* Global variables 

--c for colors

*/

:root {
  --c-base: #fffff9;
  --c-dark-green: #133512;
  --c-light-green-1: #f5f7dd;
  --c-light-green-2: #fbfee3;
  --c-light-green-3: #fdffe9;
  --c-lime-green: #d5ee9a;
  --c-light-green-2: #f5fed5;
  --c-line: #f5f7da;
  --c-error-dark: #cc0000;
  --c-error-light: #ffe6e6;
}

/* PAGE WRAPPERS */

body {
  font-family: 'Soehne', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--c-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
  color: var(--c-dark-green);
  display: flex;
  justify-content: center;
}

.page-wrapper {
  max-width: 900px;
  width: 100%;
  padding: 32px;
}

@media (max-width: 700px) {
  .page-wrapper {
    width: 100%;
    padding: 25px;
  }
}


/* Button styles */

.btn-outline {
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  background-color: var(--c-base);
  color: var(--c-dark-green);
  outline: var(--c-dark-green) solid 0.5px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--c-dark-green);
  color: var(--c-base);
}

.btn-filled-dark {
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  background-color: var(--c-dark-green);
  color: var(--c-base);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-filled-dark:hover {
  background-color: var(--c-base);
  color: var(--c-dark-green);
  outline: var(--c-dark-green) solid 1px;
}

.btn-filled-lime {
  padding: 1rem;
  border: none;
  border-radius: 25px;
  background-color: var(--c-lime-green);
  color: var(--c-dark-green);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-filled-lime:hover {
  background-color: var(--c-dark-green);
  color: var(--c-lime-green);
}

/* Other shared styles */

.outbound-link {
  color: var(--c-dark-green);
  font-weight: bold;
  text-decoration: underline;
}



/* Currently not used, but probably needed */
.error-message {
  background-color: var(--c-error-light);
  color: var(--c-error-dark);
  padding: 1rem;
  border: 1px solid var(--c-error-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}