/* ----------------------------------------------------------------------------- * 
 *                      Atmosphäre: Farben und Schriften                         *
 *          Alle weiteren Styles stecken in der jeweiligen layout.css            *
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- * 
 * Verwendete Farben
 * Blue Colors:
 * #1A1F2B - dark blue
 * #30395C - middle dark blue
 * #4A6491 - middle blue
 * #85A5CC - middle light blue
 * #C2D2E5 - light blue
 * ----------------------------------------------------------------------------- */

html    {
    font-size: 100%;
}

body {
    background-color: #65724a;
    color: #1A1F2B; /* dark blue */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em; /* 16px */
    line-height: 1.5em; /* 24px */
	
}

.root{
	width:100%;
	background: transparent;
	}

.logo{
	line-height: 0.5em; /* 24px */
	width:100%;
	text-align: center; 
		float:none;
	}
.free{
	width:30%;
	text-align: left;
	float:left;
	padding: 5px;
	}


.page-wrapper {
/* Hintergrundfarbe vom Banner entfernt */
 /*  background-color: #85A5CC;*/ /* middle light blue */
}

header {
   /* background-color: #30395C; *//* middle dark blue 
 background-repeat:repeat-x;*/
    color: #efefef;
/*  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5) inset; */
}

/* Hintergrundfarbe Text */
.main {
    background: rgba(255,255,255,0.7);
    color: #1A1F2B; /* dark blue */
}

.mainContent {
    color: #333;
}

aside {
    color: #1A1F2B; /* dark blue */
    background-color: #C2D2E5; /* light blue */
}

footer {
	background: rgba(255,255,255,0.7);
  /*  background-color: #30395C; *//* middle dark blue */
  
	margin-top:2em;
    width: 100%;
	height: 100%;
	color: #393939;
    text-align: center;
    border-bottom: 7px solid yellowgreen;
}



/* ----------------------------------------------------------------------------- * 
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */

h1, h2, h3  {
    font-family: 'Gentium Book Basic', serif; /* Google-Font Gentium Book wenn verfügbar, sonst Fallback */
    font-style: italic;
    font-weight: bold;
}

h1  {
    font-size: 2.250em; /* 36px; */
    line-height: 1.5em; /* 54px */
}

h2  {
    font-size: 1.625em; /* 26px */ 
    line-height: 1.5em;
    color: #393939; /* middle blue */
}

h3  {
    color: #393939; /* middle blue */
    font-size: 1.375em; /* 22px */
    font-weight: normal;
}

p.teasertext    {
    color: #393939; /* middle dark blue */
    font-family: "Trebuchet MS",Helvetica,Arial;
    font-size: 1.188em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #005580;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #005580;
    text-decoration: underline;
}

.highlight{
   color: yellowgreen;
}

/* ----------------------------------------------------------------------------- * 
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */

nav {
/* Linkbreite */
	width: 72.5%;
    box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
    color: #efefef;
    font-family: "Trebuchet MS",Helvetica,Arial;
    font-size: 1.25em ; /* 20px */
	text-align: left;
}

nav ul li {
    list-style: none;
}

nav a:link, nav a:hover {
    color: #30395C; /* middle dark blue */
}

nav a:hover {
    background-color: #C2D2E5; /* light blue */
}
/* ----------------------------------------------------------------------------- *
 *                                  Hero Tones                                   *
 * ----------------------------------------------------------------------------- */
:root {
    --hero-ink: #1e241b;
    --hero-ink-soft: rgba(48, 54, 44, 0.82);
    --hero-button-bg: #60753f;
    --hero-button-text: #ffffff;
    --hero-button-border: rgba(96, 117, 63, 0.42);
}

.hero__content {
    color: var(--hero-ink);
}

.hero__brand {
    margin-bottom: 0.55rem;
    color: rgba(67, 74, 60, 0.82);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
}

.hero__content h1 {
    margin: 0;
    color: var(--hero-ink);
    font-style: normal;
    font-weight: 700;
    font-family: "Gentium Book Basic", Georgia, serif;
    font-size: 2.15rem;
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: none;
}

.hero__text {
    color: var(--hero-ink-soft);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 34rem;
}

.hero__button {
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    transition: none;
}

.hero__button:hover,
.hero__button:focus {
    text-decoration: none;
}

.hero__button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.hero__button--primary {
    background: var(--hero-button-bg);
    color: var(--hero-button-text);
}

.hero__button--primary:hover,
.hero__button--primary:focus {
    background: #6f8747;
    color: #ffffff;
}

.hero__button--secondary {
    background: rgba(255, 255, 255, 0.35);
    color: var(--hero-ink);
    border-color: var(--hero-button-border);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus {
    background: rgba(255, 255, 255, 0.55);
    color: var(--hero-ink);
}




