body{
  margin:0;
  font-family:Tahoma, Arial, sans-serif;
  line-height:1.6;
  background:#81D742;
}

/* HEADER */

header{
  background-image:url("../images/bgr/header.jpg");
  background-size:cover;
  background-position:center;
  overflow:hidden;
  color:white;
  position:sticky;
  top:0;
  z-index:1000;
  text-align:center;
  padding:40px 20px 60px 20px;
}

.header-inner{
  background:rgba(226,252,206,0.7);
  color:#FF6600;
  /* padding:20px; */
  padding-top:30px;
  padding-bottom:10px;
  position:relative; /* position:absolute; */
  left:50%;
  transform:translateX(-50%);
  top:10px;
  width:80%;
  height:120px;
  border-radius:50% / 60%;
  z-index:-1;
}

header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:80px;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C150,80 350,0 600,40 C850,80 1050,0 1200,40 L1200,80 L0,80 Z' fill='%2381D742'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size:1199px 80px;

  z-index:1;
}

/* TITEL */

header h1{
  margin:0 0 10px 0;
  font-family:"Amarante", serif;
  font-size:2.8em;
}

/* MENÜ */

nav{
  text-align:center;
  margin-top:10px;
}

nav a{
  color:#FF6600;
  text-decoration:none;
  margin-right:20px;
  font-weight:bold;
  position:relative;
  padding-bottom:4px;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#FF6600;
  transition:width 0.25s ease;
}

nav a:hover::after{
  width:100%;
}

nav a:hover{
  text-decoration:underline;
}

nav a.active{
  background:rgba(255,255,255,0.25);
  padding:5px 10px;
  border-radius:4px;
}

/* UNTERTITEL */
h2{
   font-family:"Amarante", serif;
   font-size:1.8em;
   margin-top:25px;
}

.page-title{
  margin-top:15px;
  text-align:center;
  color:#81D742;
}

.page-title h2{
  font-size:4.0em;
  margin:0;
  text-shadow:
	1px 1px 2px rgba(0,0,0,0.8),
    0 0 5px #b8ff7a,
	0 0 10px #81D742,
	0 0 20px #4ca516;
}

/* HAUPTBEREICH */

main{
  max-width:900px;
  margin:0 auto 30px;
  background:#E2FCCE;
  padding:15px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

html{
  scroll-padding-top:120px;
}

/* FOOTER */

footer{
  position:relative;
  background:#d8d8d8;
  text-align:center;
  padding:80px 20px 20px 20px;
  margin:0;
  overflow:hidden;
}

footer a{
  color:#333;
  text-decoration:none;
  margin:0 10px;
}

footer a:hover{
  text-decoration:underline;
}

footer::before {
  content:"";
  /* display:block; */
  margin:auto;
  padding:0;
  top:0;
  left:0;
  width:100%;
  height:80px; /* Höhe der Welle */
  
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C150,80 350,0 600,40 C850,80 1050,0 1200,40 L1200,80 L0,80 Z' fill='%2381D742'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size:1199px 80px;
  transform: scaleY(-1); /* Welle nach unten umgeklappt */

  margin-bottom:-1px;     /* optional, um Überschneidung zu vermeiden */

  z-index:2;
  position:absolute; /* damit Fußzeilentext drüber bleibt */

footer * {
  position: relative; /* Text/Links über der Welle */
  z-index: 1;
}


/* RESPONSIVE */
@media (max-width:700px){

header h1{
  font-size:1.4em;
}

nav{
  display:flex;
  flex-direction:column;
}

nav a{
  margin:5px 0;
}

}

/* GOOGLE-FONTS */
@font-face {
  font-family: "Amarante";
  src: url("../fonts/amarante-v22-latin_latin-ext-regular.woff2") format("woff2"),
       url("../fonts/amarante-v22-latin_latin-ext-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* BILDER */
img{
  max-width:100%;
  height:auto;
  display:block;
}

