/*
CSS Theme-Style for gleichgewicht
Produced with love in the christmas-place Himmelpforten
Copyright by ihrwebentwickler.de, Gunnmar von Spreckelsen

CONTENT
---------------------------------------
1.) main-design
2.) hamburg-icon
3.) fonts and forms
4.) Header with Header-Navigation

---------------------------------------
*/

/* 1.) main-design */
/* ================================================================================================================= */
header {
    background: var(--background-navigation);
    grid-area: header;
}

.sidebar {
    grid-area: sidebar;
}

main {
    grid-area: main;
}
/* ================================================================================================================= */

/* 1.) fonts and forms*/
/* ================================================================================================================= */
body {
    font-family: "Open Sans", Arial, serif;
    font-size: 1.10em;
}

strong {
    font-weight: bold;
}

p, li {
    line-height: 1.4;
}

a, a:focus, a:hover, a:active {
    display: inline-block;
    text-decoration: underline;
    color: var(--linkcolor-active);
}

b {
    font-weight: bold;
}

h1, h2 {
    margin: 0;
    line-height: 1.4;
    font-weight: bold;
}

ul {
    list-style-type: square;
    margin-left: 0;
    padding-left: 30px;
}

ul.numerics {
    list-style-type: decimal;
}

hr {
    height: 1px;
    margin: 16px 0;
    border-width: 0 0 1px;
    border-style: solid;
    color: black;
}

input[type=submit], input[type=reset], button.standard {
    height: 36px;
    padding: 6px 12px;
    background-color: var(--background-navigation);
    border: none;
    color: var(--linkcolor-navigation);
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 0.1em;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    text-align: center;
    cursor: pointer;
}

/* ================================================================================================================= */

/* 2.) Formats */
/* ================================================================================================================= */
.center {
    display: flex;
    justify-content: center;
}

.center img {
    max-width: 100%;
}

.smaller img {
  width: 400px;
}

.grid-repeat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-repeat div {
    margin: 0 7px 12px 7px;
}

/* ================================================================================================================= */

/* 3.) Header with Navigation*/
/* ================================================================================================================= */
header {
    grid-row: 1;
    height: var(--header-height);
    color: #fff;
    z-index: 1;
    box-shadow: 0 5px 2px -10px rgba(0, 0, 0, 0.40);
}

header .header-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

header .header-container nav {
    display: inline-block;
}

header .header-container nav a {
    position: relative;
    margin: 0 12px;
    text-decoration: none;
    color: var(--linkcolor-navigation);
}

header .header-container img {
    display: block;
}

header .header-container nav a:hover, header .header-container img:hover, .wrapper-logo:hover {
    cursor: pointer;
    opacity: 0.70;
}

header .header-container .wrapper-logo {
    margin: 0 20px 0 var(--width-sidebar);
}

header .header-container .wrapper-logo a {
    text-decoration: none;
}


header .header-container .wrapper-logo span {
    display: block;
    margin: 2px 0 0 4px;
    font-size: 0.60em;
    color: var(--linkcolor-navigation);
}

header .header-container a.slide-action:after {
    transform-origin: bottom right;
    transition: transform 0.40s ease-out;
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    top: 22px;
    left: 0;
    background-color: var(--linkcolor-active);
}

header .header-container a.slide-action:hover:after, header .header-container a.slide-action.active:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ================================================================================================================= */


/* 3.) sitebar Content */
/* ================================================================================================================= */
.sidebar {
    overflow: hidden;
    z-index: 2;
    background: rgb(var(--background-navigation));
    background: linear-gradient(180deg, var(--background-navigation) 0%, var(--background-navigation-trans) 100%);
}

.sidebar .wrapper-sitebar {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - var(--header-height));
}

.sidebar img {
    width: 100%;
    padding-bottom: 8%;
    height: auto;
    object-fit: cover;
}

.wrapper-sitebar-navigation nav:last-child {
    margin-top: 40px;
}

.wrapper-sitebar-navigation nav:first-child {
    margin-top: 4px;
}

.sidebar nav a {
    display: block;
    line-height: 1.7;
    color: var(--linkcolor-navigation);
    text-decoration: none;
}

.sidebar nav a.active, .sidebar nav a:hover {
    color: var(--linkcolor-active);
}

/* ================================================================================================================= */

/* 4.) various fullsize-image-containers */
/* ================================================================================================================= */
img.fullsize, img.fullwidth {
    display: block;
}

img.fullwidth {
    height: auto;
}
/* ================================================================================================================= */

/* 7.) Fany content-Box */
/* ================================================================================================================= */
.fancy {
    background-color: var(--background-navigation);
    padding: 14px;
    box-shadow: 3px 4px 4px -3px rgba(5, 5, 5, 0.6);
}

.fancy.no-wrap {
    white-space: nowrap;
}

/* ================================================================================================================= */

/* 7.) contact-site */
/* ================================================================================================================= */
#map {
    height: 440px;
    width: 100%;
}

/* ================================================================================================================= */

/* 8.) special */
/* ================================================================================================================= */
.adsimple-312532165 {
    font-weight: bold;
}

/* ================================================================================================================= */