@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    background-color: #c8c6c2;
    color: #333;
}

header {
    background-color: #c8c6c2; /*#4a90e2;*/
	background-image: 
    linear-gradient(hsla(40,5%,77%,0.9) 0%, hsla(40,30%,70%,0) 50%, hsla(40,5%,77%,0.9) 100%), 
    linear-gradient(to right, hsla(40,5%,80%,0.8) 30%, white 50%, hsla(40,5%,80%,0.8) 70%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-shadow: 3px 3px 4px #777;
}

p {
   font-family: 'mononokiRegular';
   font-weight: normal;
   font-style: normal;
}

.logo img {
    height: 120px;
	-webkit-box-shadow: 10px 10px 50px grey;
-moz-box-shadow: 10px 10px 50px grey;
box-shadow: 10px 10px 50px grey;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-family: 'Fjalla One', sans-serif;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 60px;
    background-color: #b0d4e3;
    color: #fff;
    border-radius: 15px;
	border: 1px solid black;
}

.hero h1 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 48px;
	text-shadow: 1px 1px 1px #333;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #357abd;
}

.blog-section {
	    background-color: #c8c6c2; /*#4a90e2;*/
	background-image: 
    linear-gradient(hsla(40,5%,77%,0.9) 0%, hsla(40,30%,70%,0) 50%, hsla(40,5%,77%,0.9) 100%), 
    linear-gradient(to right, hsla(40,5%,80%,0.8) 30%, white 50%, hsla(40,5%,80%,0.8) 70%);
    padding: 40px;
    text-align: center;
}

.blog-section h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
	text-shadow: 1px 1px 2px #777;
}

.blog-posts {
    display: flex;
    justify-content: space-around;
}

.post {
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    width: 45%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	border: solid black thin;
}

.post h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 24px;
    color: #4a90e2;
	text-shadow: 1px 1px 1px #333;
}

.post p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
	text-shadow: 1px 1px 1px #333;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

footer {
    background-color: #4a90e2;
    color: white;
    text-align: center;
    padding: 20px;
}

table {
      border-collapse: separate; /* Wichtig für border-radius */
      border-spacing: 0;
      border: 2px solid #555;
      border-radius: 15px;
      overflow: hidden; /* Verhindert, dass Inhalte aus den abgerundeten Ecken ragen */
    }

    th, td {
      padding: 10px;
      border: 1px solid #aaa;
    }

    /* Optional: Nur die äußeren Zellen abrunden */
    table tr:first-child th:first-child {
      border-top-left-radius: 15px;
    }

    table tr:first-child th:last-child {
      border-top-right-radius: 15px;
    }

    table tr:last-child td:first-child {
      border-bottom-left-radius: 15px;
    }

    table tr:last-child td:last-child {
      border-bottom-right-radius: 15px;
    }

.rundes-bild {
      width: 150px;
      height: 150px;
      border-radius: 50%;      /* macht das Bild rund */
      object-fit: cover;       /* sorgt dafür, dass das Bild gut ins Quadrat passt */
      border: 2px solid #444;  /* optional: Rahmen */
    }



.post {
      border-collapse: separate; /* Wichtig für border-radius */
      border-spacing: 0;
      border: 2px solid #555;
      border-radius: 15px;
      overflow: hidden; /* Verhindert, dass Inhalte aus den abgerundeten Ecken ragen */
    }
