@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body {
  background-color: #FDE2BA;
  color: #191919;
  border-style: none; 
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 1;
  font: inherit;
  }

hr {
  border: 0;
  border-top: 2px dotted #ffffff;
}


 /* ==========================================================================
https://matthewjamestaylor.com/responsive-font-size#fluid

Screen width 	Font size
320px -- 16px (eg: iPhone 4 & 5) 
768px -- 18px (eg: iPad portrait) 
1024px - 19px (eg: iPad landscape)
1280px - 20px
1536px - 21px
1920px - 23px
2560px - 25px
 ========================================================================== */

html {
  font-size:16px; /* 100% entspricht meist 16 px im Browser */
    font-size: calc(15px + 0.290625vw);
	font-family: 'Lato', sans-serif; 
	
}

h1, h2, h3 {
	font-family:'Oswald', sans-serif; 
	font-weight:400;
	line-height: 1.2em;
	}

p {
	font-family: 'Lato', sans-serif; 
	font-weight:400;
	line-height: 1.5em;
	font-size: 1rem;
	}

h1 {
    font-size: 1.8rem;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.2rem;
}


a {
	color: #00939D;
	text-decoration: none;
}

a:visited {
	color: #888888;
}

a:hover, a:focus {
	text-decoration: underline;
}


.container-top {
  display: inline-block;
  position: relative;
  left: 0;
  width: 100%;
    z-index: 0;
    margin-top: 0px;
  
background-color: #009293; }


.container-menue {
  display: inline-block;
  position: relative;
  left: 1vw;
  width: 100%;
    z-index: 9999;
    margin-top: -6vh;
  
}
    
.container-cut {
  display: inline-block;
  position: relative;
  left: 0;
  padding: 0 0 10px 0;
  width: 100%;
  color: #ffffff;
  text-align: center;
background-color: #009293; }

.container-center {
 display: inline-block;
 	float: center;
	position: relative;
	left: 3%;
	right: 3%;
	top: 0;
	width: 94%; 
	margin-bottom: 0px;
	text-align: center;
	background-color: #FDE2BA;
}


.container-bottom {
  display: inline-block;
  position: relative;
  left: 0;
  width: 100%;
	margin-top: 4em;
  
background-color: #F0D6B1; }
    


/* layout.css - responsives 2-Spalten / 2-Einheiten Layout */

/* Variablen (leicht anpassbar) */
:root {
  --unit-gap: 20px;   /* Abstand zwischen Einheiten */
  --col-gap: 12px;    /* Abstand zwischen Spalten innerhalb einer Einheit */
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: system-ui, sans-serif; }

/* Container für alle Einheiten */
.units {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 Einheit pro Zeile */
  gap: var(--unit-gap);
  padding: 12px;
}

/* Eine Einheit: linke + rechte Spalte */
.unit {
  display: grid;
  grid-template-columns: 1fr; /* mobile Hochformat: Spalten untereinander */
  gap: var(--col-gap);
  align-items: start;
}

/* Inhaltsspalten */
.unit > .left,
.unit > .right {
  min-height: 1px;
  padding: 12px;
  border-radius: 8px;
}

/* Titelzeile innerhalb einer Einheit */
.unit-title {
  grid-column: 1 / -1; /* Überspannt alle Spalten */
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2px 10px;
  background: #D6E3E3; /* dezenter Hintergrund */
  border-radius: 6px;
}

/* Querformat immer 2 Spalten pro Einheit */
@media (orientation: landscape) {
  .unit {
    grid-template-columns: 1fr 1fr;
  }
}

/* Ab 1024px: zwei Einheiten nebeneinander */
@media (min-width: 1024px) {
  .units {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Bilder responsiv ===== */
.img-responsive {
  max-width: 100%;   /* passt sich der Spaltenbreite an */
  height: auto;      /* behält Seitenverhältnis */
  display: block;    /* entfernt untere Lücke durch Inline-Block */
  border-radius: 6px;/* optional: leicht abgerundet */
  margin: auto;      /* To center an image horizontally, set margin to auto, convert it into a block element, and define a width: */
}


    

    

/* BUTTON https://fdossena.com/?p=html5cool/buttons/i.frag  */

a.button{
  display:inline-block;
  width:99%;
  padding:0.5em 1.2em;
  margin:0;
  border:0.16em solid rgba(255,255,255,0);
  border-radius:10px;
  box-sizing: border-box;
  text-decoration:none;
  font-family:'Roboto',sans-serif;
  font-weight:300;
  color:#FFFFFF;
  font-size: 90%;
  text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
  text-align:center;
  transition: all 0.2s;
}
a.button:hover{
  border-color: rgba(255,255,255,1);
  cursor: pointer;
}
@media all and (max-width:45em){
  a.button{
    display:block;
    margin:0.2em auto;
  }
}




  
@media screen and (max-width: 1023px)  {
.hidden {
  display: none;
}
  }
  
/* Für kleine Geräte (max. Breite 600px) */
@media (max-width: 600px) {
  body {
    font-size: 120%;
  }
}  
  