@charset "utf-8";

/* ===== Farben für Drucken angepast ===== */

:root {
  --akzent-1:           rgb(227, 30, 35);   /* ===== Stemke-Rot ===== */
  --akzent-2:           rgb(201, 201, 201);   /* ===== 2. Farbe ===== */
  --akzent-2-kontrast:  rgb(0, 0, 0);   /* ===== Kontrast für Text auf 2. Farbe ===== */
  --hintergrund-1:      rgba(255, 255, 255, 0.5); /* ===== Normaler Hintergrund ===== */
  --text-1:             rgb(0, 0, 0);       /* ===== Normale Schriftfarbe ===== */
  --hintergrund-2:      rgba(255, 255, 255, 0.5); /* ===== abgesetzter Hintergrund ===== */
  --hintergrund-3:      rgba(255, 255, 255, 0.5); /* ===== getönter Hintergrund ===== */
}
    
html {
    box-sizing: border-box;
	background-color: var(--hintergrund-1);
}

body {
    margin: 0 auto; 
	padding: 0 .5em;
    font: "Lucida Grande", "Lucida Sans Unicode", Verdana, Helvetica, Arial, sans-serif;
	color: var(--text-1);
    background-color: var(--hintergrund-2);
    background-image:  url(../img/druckenhintergrund.png); 
    background-size: contain;
	position: relative;
    grid-column: 3;
}

/* ===== header ===== */

header {
	background-color: var(--hintergrund-1);
	padding: .5em;
    margin-bottom: .2em;
}

header-schrift-h1 {
	font-family: "Times New Roman", serif;
	color: var(--akzent-1);
	font-size: 3em;          /* Schriftgröße für 1-Spalten-Layout; bei mehr Spalten 3em */
	font-weight: bold;
	text-shadow: 1px 1px rgb(0, 0, 0), 2px 2px rgb(0, 0, 0), 3px 3px rgb(0, 0, 0);
    margin-right: .5em;
 }

header-schrift-h2 {
	font-family: "Times New Roman", serif;
	color: var(--akzent-1);
	font-size: 1.8em;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.3), 2px 2px rgba(0, 0, 0, 0.3), 3px 3px 1px rgba(0, 0, 0, 0.3);
	/*display: none;                                                  /* ===== Eingeblendet für Drucken ===== */
}

header-schrift-h3 {
	font-family: "Times New Roman", serif;
	color: var(--text-1);
	font-size: 1.5em;
	text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
	/*display: none;                                                  /* ===== Eingeblendet für Drucken ===== */
}

header a{
	text-decoration: none;
}

.logobaecker {
    display: none;                                                   /* ===== Ausgeblendet für Drucken ===== */
    width: auto; 
    max-height: 3em;
    vertical-align: top;
    float: left;    
}

/* ===== Navigation ===== oberhalb des main-Elements  ===== */       /* ===== Ausgeblendet für Drucken ===== */

#navigation {
    display: none;
}


/* ===== Hauptfenster ==== mit Sectionen */
	
main {
    display: grid;                                                   /* ===== Angepasst für Drucken ===== */
    grid-template-columns: repeat(3, 1fr);                            /* ===== Angepasst für Drucken ===== */
    padding: 0.5em 1em;
	background: var(--hintergrund-1);
}
	main header,
	main footer,
    article {
	  grid-column: span 3;
	}

a {
	color: inherit; 
}

a:hover,
a:focus {
    background-color: var(--akzent-2);
	color: var(--akzent-2-kontrast); 
}

a.button{
    background-color: var(--akzent-2);
	color: var(--akzent-2-kontrast); 
	font-weight: bold;
	padding: 0.2em .5em;
	margin: 0.2em .5em;
	text-decoration: none;	
}
a.button:hover,
a.button:focus {
	background: var(--akzent-1);
}

article {                  /* Abschnitte immer über gesamte Breite */
	padding: 0em;     
    margin: 0em 0em 0em 0em;
}

h1 {
	font-weight: bold;
	color: var(--akzent-1);
}


h2 {
	font-weight: bold;
	font-size: 1.2em;
}

.akzent {
	font-weight: bold;
	color: var(--akzent-2);
}


/* ===== Ausklappbare Bereiche Formatieren ====== */
details{
	background: var(--hintergrund-1);
	color: var(--text-1);
    margin: 0 .5em 1em .5em;
	padding: 0;
}

summary{
    background-color: var(--akzent-2);
	color: var(--akzent-2-kontrast); 
	padding: 0.2em 1em;
}
summary:hover,
a.summary:focus {
    background: var(--akzent-1); 
}

/*  ===== Bilder =====  */

img {
  width: calc(100% - 2em); /* Bilder immer über ganze Spalten-Breite  ------------------- Angepast für Ausdruck           */
  margin: 0 1em;
}

.bildlinks,
.bildrechts {
    max-width: 4cm;                                                 /*  ------------------- Angepast für Ausdruck           */
    height: auto;
    margin-bottom: 1em; 
}
.bildlinks15,
.bildrechts15 {
    max-width: 2cm; 
    height: auto;
    margin-bottom: 1em; 
}
.bildlinks,
.bildlinks15{
    float: left;
    margin-right: 1em; 
}
.bildrechts,
.bildrechts15 {
    float: right;
    margin-left: 1em; 
} 

/* ===== Spalten anpassbar: ===== */

section {
	background: var(--hintergrund-3);
	position: relative;
    margin: 5px;
    border: 3px solid rgb(216, 213, 213);
}

section h2 {
    background-color: var(--akzent-2);
	color: var(--akzent-2-kontrast); 
	padding: .2em 1em;
	margin: 0;
}

section p {
	padding: 0.5em; 
    margin-bottom: 0;
}

section p.button-right {
    text-align: right; 
}

section p.icon {
    height: 2em;
	padding: 0 .5em .5em;
}
section table {
	padding: .5em; 
}
section td {
	margin: .2em 0; 
}

/* ===== Tabelle Öffnungszeiten ===== */
table.zeiten{
    min-width: calc(100% - 1em);
	margin: 0 .5em .5em .5em;
	padding: .5em;
	background-color: var(--hintergrund-1);
}
/* ===== Sortiment beschreibung der Artikel ===== */
	
.artikel ul {
	display: block;
	list-style: none;
	width: 90%;
}

.artikel li {
	display: block;
	list-style: none;
	margin-right: .5em; 
}

/*  ===== Link zum Seitenanfang =====  */                                                    /* ===== Ausgeblendet für Drucken ===== */

#toplink
{                  
    display: none;
}

/* ===== Navigation innerhalb der Seite ===== */

#navigation-seite li {
	display: inline-block;
	width: auto;
	list-style: none;
}

#navigation-seite a {
	display: block; 
    background-color: var(--akzent-2);
	color: var(--akzent-2-kontrast);
	padding: .2em .3em;
	margin: .2em .3em;
	text-decoration: none;	
}

#navigation-seite a:hover,
#navigation-seite a:focus, 
#navigation-seite a:active  {
    background-color: var(--akzent-1);
}

/* ===== Footer ===== */                                                   /* ===== Ausgeblendet für Drucken ===== */
	
#footer {
    display: none;
}
