
body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0eb;
}

.navbar {
    width: 100%;
    background-color: #000080; /* leichtes blau */
    padding: 30px 0; /* Adds some spacing vertically */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  /* Navigation links container */
  .nav-links {
    display: flex;
    justify-content: left; /* Centers the links horizontally */
    list-style: none; /* Removes default list styling */
    margin: 0;
    padding: 0;
    max-width: 1200px; /* Matches the container below */
    margin: 0 auto; /* Centers the links inside the navbar */
  }
  
  /* Individual link items */
  .nav-links li {
    margin: 0 15px; /* Adds horizontal spacing between links */

  }
  
  /* Link styling */
  .nav-links a {
    text-decoration: none; /* Removes underline */
    color: white; /* White text for contrast */
    font-size: 1rem; /* Standard font size */
    font-weight: 600;
    padding: 5px 10px; /* Adds spacing around the text */
    border-radius: 5px; /* Smooths edges */
    transition: background-color 0.3s ease; /* Adds hover effect transition */
    display: flex;
    align-items: center;
  }

  .nav-links .Uname {
    text-decoration: none; /* Removes underline */
    color: white; /* White text for contrast */
    font-size: 1.3rem; /* Standard font size */
    font-weight: 800;
    padding: 5px 10px; /* Adds spacing around the text */
    border-radius: 5px; /* Smooths edges */

  }
  
  /* Hover effect */
  .nav-links a:hover {
    background-color: #000047; /* Darker blue on hover */
  }

  
  
.site-header {
    display: flex;
    text-align: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    
  }
  
  .site-header img {
    width: 100vw;
    height: 30vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .box { 
    background-color: whitesmoke; /* Light neutral background for boxes */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  .box h3{
    color: #000080;


  }
  
  .box h2{
    color: #000080; /*titel boxen*/


  }


  .titel {
    grid-column: 1 / 3;
    text-align: center;
    padding: 3%;
    color: white;
    background-color: #000080; /* leichtes blau */
    border-radius: 15px;

  }

  .beschreibung {
    grid-column: 1 /3;
    padding: 3%;
    border-radius: 15px;

  }

  .wirsuchen {
    grid-column: 1;
    padding: 3%;
    border-radius: 15px;
  }
  
  .wirbieten {
    grid-column: 2;
    padding: 3%;
    border-radius: 15px;

  }
  
  .chatbot {
    grid-column: 1 / 3;
    padding: 3%;
    border-radius: 15px;

  }
  
  button {
    background-color: #000080; /* Firebrick red background */
    color: #fff; /* White text */
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
    }
  
    .nav-links li {
      display: none;
    }
    .nav-links li:first-child {
      display: block;
    }


    .container {
      grid-template-columns: 1fr;
    }

    .wirbieten {
      grid-column: 1 / 3;
    }
  
    .wirsuchen {
      grid-column: 1 / 3;
    }


    .site-header img {
      height: auto; /* Let the image scale naturally */
    }

     
  }

@media (max-width: 768px) {
    body.disclaimer-page {
      font-size: 1.1rem;  /* Increase base font size for readability */
      line-height: 1.5;   /* Better line spacing */
      padding: 10px;
    }
    body.disclaimer-page .container {
      grid-template-columns: 1fr; /* Stack the grid items vertically */
      padding: 10px;
    }
    body.disclaimer-page .box {
      padding: 15px;  /* Adjust padding for a less cramped look */
    }
    body.disclaimer-page h1,
    body.disclaimer-page h2,
    body.disclaimer-page h3,
    body.disclaimer-page p {
      margin: 0.5em 0; /* Ensure there's enough space between elements */
    }
  }
  