@charset "UTF-8";

/* ----------------------------------------------------------------------------- * 
 *           atmosphere.css - Definition Farben und Schriften                    *
 *       In der layout.css stehen ergänzende Styles für alle Layoutstufen.       *
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- *
 *          Basisschriftgröße auf 10px setzen --> 62,5% von 16px                 *
 *    erleichtert die Umrechnung der weiteren Schriftgrößen in rem / em      *
 *        Beispiel: 1.0rem entspricht 10px und 1.6rem entspricht 16px            *
 * ----------------------------------------------------------------------------- */

html {
   font-size: 62.5%;
}

body {
   font-size: 1.6px; /* Fallback für alte Browser, die rem nicht kennen */
   font-size: 1.6rem; /* 16px */
   line-height: 1.5; /* 24px */
   font-family: 'Roboto', sans-serif; /* Google Webfont */
   font-weight: 300;
   color: #444; /* dunkelgrau */
   background-color: #efefef; /* hellgrau */
}

.page-wrapper {
   background-color: #F7B267; /* blau-gruen */
}

.header {
   background-color: #F25C54; /* dunkelblau */
}

.main-wrapper {
   background-color: #fff; /* weiss */
   padding: 2em 2rem;
}

.footer {
   background-color: #000; /* schwarz */
   color: #fff; /* weiss */
}

h1, h2, h3 {
   font-family: 'Raleway', sans-serif; /* Google Webfont */
   font-weight: 500;
   line-height: 130%;
   color: #EB6263; /* dunkelblau */
}

h1 {
   font-size: 2.6rem; /* 26px */
}

h2 {
   font-size: 2.2rem; /* 22px */
}

h3 {
   font-size: 2.0rem; /* 20px */
}

p.teasertext {
   font-size: 1.7rem; /* 17px */
   line-height: 150%;
}

a:link, a:visited {
   color: #F4845F; /* blau-gruen */
   text-decoration: none;
   font-weight: 600;
}

a:hover, a:focus, a:active {
   color: #fff; /* weiss */
   background-color: #F4845F; /* blau-gruen */
}

.logo {
   font-family: 'Marck Script', sans-serif; /* Google Webfont */
   font-size: 2.5rem;
   font-weight: 500;
   line-height: 1;
   text-transform: capitalize;
   letter-spacing: 0.2em;
   color: #EB6263; /* weiss */
}

.logo a:link, .logo a:visited {
   color: #fff; /* weiss */
   font-weight: 500;
   text-decoration: none;
   display: block;
}

.logo a:hover, .logo a:focus, .logo a:active {
   background-color: #EB6263; /* orange */
}

.logo_sub {
   font-family: 'Marck Script', sans-serif; /* Google Webfont */
   font-size: 3.0rem;
   font-weight: 500;
   line-height: 1;
   text-transform: inherit;
   color: #EB6263; /* weiss */
}

.logo_sub a:link, .logo_sub a:visited {
   color: #fff; /* weiss */
   font-weight: 500;
   text-decoration: none;
   display: block;
}

.logo_sub a:hover, .logo_sub a:focus, .logo_sub a:active {
   background-color: #EB6263; /* orange */
}

.main-nav {
   background-color: #F7B267; /* blau-gruen */
}

.main-nav li {
   list-style: none;
}

.main-nav a, .main-nav b {
   font-weight: 300;
}

.main-nav a:link, .main-nav a:visited {
   color: #444; /* weiss */
}

.main-nav a:hover, .main-nav a:focus, .main-nav a:active {
   background-color: #F4845F; /* mint-gruen */
   color: #fff; /* weiss */
}

.main-nav__item-act {
   color: #EB6263; /* blau-gruen */
   background-color: #fff; /* weiss */
}
