/* Stylesheet für Selfhtml Design 03 
  responsives Layout mit Grid Layout ab Z. 210   */

/* =========================================   GLOBAL DEFINITION   ==================================================== */

/* alternatives Boxmodell */
html { 
  box-sizing: border-box; 
  background: #d5d5d5;	
} 

*, ::before, ::after { 
  box-sizing: inherit; 
}

body {
	max-width: 75em;
	margin:0 auto;
	padding: 0;
	background: #fff;	/* Hintergrundfarbe (weiß)*/
	color: #333; /* Schriftfarbe (schwarz)*/
	font: normal 1em Arial, sans-serif;  /* Mindestschriftgröße wird dem Browser, bzw. dem Nutzer überlassen! */
                    
}



/* ====================================================   HEADER   ==================================================== */

header {
	position: relative;		
	height: 210px;
	margin: 2em  0  0 3em;
	background: #CCCCCC url("../img/Neu_Venedig.jpg") no-repeat right; /*Hintergrundfarbe und eingeblendetes Bild des Headers*/
	background-size: contain; 			 
	padding: 0 0 0.5em;
}

header a h1,
header a p {		/* Die Angaben für h1 müssen mit einem genauen Selektor überschrieben werden. */
color: blue;       /* Farbe der Schrift in der Beschriftungsbox */
	border-left: 0;
	padding: 0;
    display: table;		/* Überschriften und Absätze sind sonst immer 100% breit, durch display:table und display: inline-block; für das Elternelement a.ribbon wird das Banner nur so breit wie nötig. */
}

.ribbon {					/* Anweisungen für die linke Beschriftungsbox in der Kopfzeile */
	display: inline-block;
	position: relative;	
	margin: 2em 0 2em -1.5em;
	padding: 0.5em 1em;
	background: #CCFFCC;                       /* Hintergrundfarbe der Beschriftungsbox */
	box-shadow: 0px 1px 3px rgba(0,0,0,.8);
}
 
.ribbon::before{			/* hiermit wird die kleine Ecke unten links vom Banner formatiert */
	display: block;
	width: 1.5em;
	height: 0;
	position: absolute;
	bottom: -1.5em;
	left: 0em;
	content: "";
	border-bottom: 1.5em solid transparent;
	border-right: 1.5em solid rgb(0, 80, 116);
}
 
/* ====================================================  CONTENT ======================================================= */

main {
	margin: 0 0 1em; 
	padding: 1em;
	background: #fff;
}

h1,
h2 {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; 
	padding-left: 1em; 
	color: #666; 
	border-left:5px solid #4e68AD;	/* Balken links der Überschriften h1 und h2 */
}
	
h2 span {
	font-size: 0.70em; 
	color: #818181; 
	text-transform: none;
}

h3	{ 
	font-size: 1.25em; 
	font-weight: normal; 
	padding left: 10px; 
	margin: 0; 
	color: #4E68AD; 
}		

p {
	font: 70%/100%         /* eingefügt am 22.1.2024 */
	line-height: 1.3em;    /* geä. von 1.5em auf 1.3em am 22.1.2024 */
	text-align: justify;
	padding: 5px 20px 5px 20px
}


ul  {
        line-height: 2
    
}
ul ul {
        line-height: 1.5
}
a 	{ 
	color: #4e7a92; 
	outline: none; 
	text-decoration: none; 
}
a:hover, 			/* Durch Maus oder Tastatur angewählte Verweise werden sichtbar gemacht */
a:focus { 
	color: white; 
	text-decoration: none; 
	background-color: #4e7a92;	
}

a.more	{ 
	float: right; 
	font-weight: bold; 
}

a.more:after{
	content:" \2192 ";
	font-size:1.2em;
	font-weight:bold;
}

ul.square {
    list-style-type:square;
    color: #999999;
    margin: 0 0 0.5em 0.5em;
	font-size: 0.8em;
	font-weight: bold;
}

ul.square li{
    padding:10px;	
	line-height: 1.5em
}

/*DL, DT, DD Datenliste*/
dl.grid { 
  display: grid; 
  grid-template-columns: 1fr 100%; 
}
dd { 
  margin: 0; 
  padding-left: 1em; 
}

dd span:first-child {
  display: inline-block;
  width: 4em;
}

dl.grid dd {
  margin-bottom: 1em;
}

a[href^="tel"] { white-space: nowrap; }

ul#footer-nav li { 
	list-style-type: none;  
	displaY: inline;
	padding: 0 0.5em; 
	border-right: 1px  solid #ACACAC; 
}

footer {
	display: grid;
    grid-template-columns: repeat(2, 1fr);	
	padding: 1em;
}

ul#footer-nav  li:last-child { 
	border: none; 
}	

ul#footer-nav img {
	width: 1.5em;
}

ul#footer-nav a:hover,
ul#footer-nav a:focus, 
ul#footer-nav a:active {
	background: white;
}

footer p {
	text-align: right;
}

   #intro img {						/* war eingefügt in responsives Grid-Layout von OS */
     width: 25%;
	 float: left;
	 margin-right: 0.5em;		
  }
	
	#bild_links {
    grid-column: 2 / 3;
    grid-row:    1 / 2;					
  }
   #bild_links img {
     width: 66%;
	 float: left;
	 margin-right: 0.5em;		
  }

	#bild_schnorr {
		grid-column: 2/2
	}
	
h1,
h2 {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; 
	padding-left: 1em; 
	color: #666; 
	border-left:5px solid #4e68AD;	/* Balken links der Überschriften h1 und h2 */
}	
	
  #bild_rechts {
    grid-column: 2 / 3;
    grid-row:    1 / 2;					
  }
   #bild_rechts img {
     width: 25%;
	 float: right;
	 margin-left: 0.5em;		
  }
	
	#gkr {
    grid-column: 2 / -1;
    grid-row:    1 / 2;					
	}
   #gkr img {
     width: 80%;
	 float: left;
	 margin-right: 0.5em;		
	}

	#stoat ul {
		padding-left: 25em
	}

	article {
    grid-column: 2 / 3;
  }  

	.ddr {
		grid-column: 2 / -1
	}
	.ddr table {
		font-size: 1.2em;
		color: darkblue;
	}
	.ddr table img {
		width: 50%
	}
/*	.ddr figcaption {
		font-size: 1.0em;
		color: darkblue;
	} */
	.ddr h2 {
		font-size: 2em
	}
	
 }
.wsk table, th, td {
  	border-spacing: 10px
}

/* vormals Platz von ...50em */

  }
	#gkr {
    grid-column: 2 / -1;
    grid-row:    1 / 2;					
	}
   #gkr img {
     width: 100%;
	 float: left;
	 margin-right: 0.5em;		
	}

	#gkr {
    grid-column: 2 / -1;
    grid-row:    1 / 2;					
	}
   #gkr img {
     width: 100%;
	 float: left;
	 margin-right: 0.5em;		
	}

   #stoat {
    grid-column: 2 / -1;
    grid-row:    1 / 2;					
  }
   #stoat img {
     width: 33%;
	 float: left;
	 margin-right: 0.5em;		
  }
	#stoat ul {
		padding-left: 25em
	}
  
  .spalte img {
     width: 100%;f
  } 
	.ddr {
		grid-column: 2 / -1	
	}
	.ddr table {
		font-size: 1.2em;
		color: darkblue;
	}
	.ddr table img {
		width: 50%
	}
/*	.ddr figcaption {
		font-size: 1.0em;
		color: darkblue;
	} */
	.ddr h2 {
		font-size: 2em
	}
	
	blockquote {
	padding: 5px;
	border: none;
	background: #FFFFCF;
	font-style: italic;
	margin-bottom: 5px;
	margin-top: 5px;
	}
	
	blockquote p {
	font: 1.2em/1.4 Georgia, serif;
    font-size: clamp(0.8em, 3vw, 1.3em);
	font-style: italic
	}
	
	blockquote cite {
	color: blue	
	}

	figcaption {
	padding: 10px;
	text-align: center;
		

	}
	figure img,
	figcaption,
	input {
	margin-bottom: 1em;	
	}
	
	kbd {
	background: #efefef;
	padding: 1px 3px;
	border-radius: 4px;
	border: 1px solid silver;
	text-transform: uppercase;
	font-size: 1.2em;
	}

.PP_2 p {
	background-color: yellow;
	border: 3px solid blue;
	padding: 15px;
	text-align: center;
	font-size: 1.5em;
}

.PP_2 ul {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	list-style: none;
}

/* ==========================================  Navigation ========================================================*/

nav#navigation{
}
	
#navigation ul {
    list-style-type: none;
    width: 100%;
	margin-bottom:10px;
} 

#navigation ul li.first-child	{ border-top: 1px #DBDBDB solid; }


#navigation ul li a {
	display: block;
    border-bottom: 1px solid #4e7a92;
    font-size: 1.1em;
    line-height: 1.1em;
    padding: 0.3em;
    text-decoration: none;
	width: 13em; 
}

#navigation ul li a:before{
	content:" ";
	display:inline-block;
	width:1em;
	height:1em;
	border-left:5px solid #4e7a92; 
}	
		
#detail_liste {
	font-size: 0.8em;
}				

nav a[aria-current=page]{
 background: #aaa;
}



/* vormals Platz des responsiven Grid-Layouts ...30em =========== */


	
	/* ======================================= responsives Grid-Layout ================================================ */

/* mobile first - auf schmalen Bildschirmen wird alles untereinander platziert. */ 
/* ab einer Breite von 30em haben zwei Spalten nebeneinander Platz: */

@media (min-width: 30em) { 
  main {
  	display: grid;	  
    grid-template-columns: repeat(2, 1fr);
	grid-gap: 1em;
  }

  nav {
    grid-column: 1 / 2;
  }
  
  #intro {
    grid-column: 2 / 3;
    grid-row:    1 / 2;					
  }

	article {
    grid-column: 2 / 3;
  }  
	.spalte img {
     width: 100%;
	 float: left;
	 margin-right: 0.5em;		
  }

/* ab einer Breite von 50em haben drei Spalten nebeneinander Platz: */

	@media (min-width: 50em) { 								
  main {
    grid-template-columns: 1fr 3fr 1fr;
 }
 
  nav {
    grid-row: 1 / 4;
  } 

  #intro {
    grid-column: 2 / 4;
    grid-row:    1 / 2;					
  }

  article {
    grid-column: 2 / 4;
  }    
  
   aside {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
	line-height: 1.8;   
	margin: 0em 0em 1.0em 0em   
  }   
		
/*	aside ul {
	line-height: 1.0em;		
		}	*/
  
