  /* Fonts */
  @font-face {
    font-family: 'Ruwudu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ruwudu-v4-latin-regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Ruwudu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ruwudu-v4-latin-700.woff2') format('woff2');
    font-display: swap;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    font-size: 20px;
  }

  @media (max-width: 768px) {
    html {
      font-size: 14px; /* Kleinere Basis für Mobile */
    }
  }


  body {
    background-color: #ffdea1;
    color: #2b2a29;
    font-family: 'Ruwudu', cursive;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0 12vw;
  }

  a {
    color: inherit;
  }

  .page-index .logo-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    margin-bottom: 2rem;
  }

  .page-impressum .logo-area, .page-datenschutz .logo-area, .page-error .logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    margin-bottom: 2rem;
  }

  .logo {
    width: 50vw;
    max-width: 500px;
    transition: all 0.5s ease;
  }

  .subtitle {
    width: 40vw;
    max-width: 400px;
    margin-top: 1rem;
    transition: all 0.5s ease;
  }

  main {
    margin-top: 0vh;
    margin-bottom: 30vh;
  }

  a.btn {
    color: #ffffff;
    background-color: #59371f;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0 0.5rem;
    margin: 0;
    border: 1px solid #59371f;
    line-height: 1rem;
  }
  
  section {
    padding: 5rem 2rem;
    max-width: 95vw;
    margin: 0 auto;
    text-align: center;
  }

  section#about .content,section#impressum .content {
    text-align: center;
  }

  section#datenschutz .content {
    text-align: justify;
  }

  section a {
    color: #2b2a29;
    text-decoration: underline;
    line-height: 1rem;
  }

  section h1,section h2,section h3,section h4 {
    padding: 0.5rem 0.5rem 0.5rem 0;
  }

  section#about,section#impressum,section#datenschutz {
    background: #f5f5f5;
    border: 1px solid #59371f;
  }

  .alert {
    background-color: #ffdea1;
    padding: 1rem;
    display: inline-block;
  }

  .content {
    max-width: 800px;
    margin: 0 auto;
  }

  footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #59371f;
  }

  nav a {
    color: #59371f;
    text-decoration: none;
    margin: 0 0.5rem;
  }

  nav a:hover {
    text-decoration: underline;
  }

  a.protected-phone, a.protected-email {
    color: inherit;
    text-decoration: none;
  }

  a.protected-phone:hover, a.protected-email:hover {
    text-decoration: underline;
  }



  .corner {
    position: fixed;
    width: 10vw;
    height: auto;
    transition: all 0.3s ease-in-out;
  }

  .corner-top-left {
    top: 0px;
    left: 0px;
  }

  .corner-top-right {
    top: 0px;
    right: 0px;
  }

  .corner-bottom-left {
    bottom: 0px; 
    left: 0px;
  }

  .corner-bottom-right {
    bottom: 0px;
    right: 0px;
  }
