@charset "UTF-8";
/* CSS Document */
/*
 Theme Name: Twenty Sixteen Child
 Template: twentysixteen
 Version: 1.0
*/

/*Farben 
gold: #c4b16c
gruen: #6f9d30
dkl rot:  #A7170D
*/

@font-face {
    font-family: 'Gudea';
    src: url('fonts/Gudea-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gudea';
    src: url('fonts/Gudea-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gudea';
    src: url('fonts/Gudea-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Gudea', sans-serif;
	font-size: 18px;
}

h1, entry-content {
	font-family: Gudea, sans-serif !important;
font-weight: 400 !important;
	font-size: 2.1em !important;
	color: #A7170D;
}

.site-info {
	display: none;
}

/* Links nicht unterstrichen */
.entry-content a,
.entry-summary a,
.taxonomy-description a,
.logged-in-as a,
.comment-content a,
.pingback .comment-body > a,
.textwidget a,
.entry-footer a:hover,
.site-info a:hover {
	box-shadow: none;
}

a:hover {
	color: #000;
}

/*///// Menue /////*/

.site-header-menu, 
.menu-item, 
.main-navigation a {
	font-family: Gudea, sans-serif !important;
	font-size: 16px !important;
}

a:hover,
a:focus,
a:active,
.main-navigation .current-menu-item > a {
	color:  #A7170D !important;
	outline: 0;
	font-style: normal !important;
}

/* Menübutton Mobil Grundform */
.menu-toggle {
    font-size: 0;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
}

/* Beide Linien */
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #000; /* ggf. anpassen */
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

/* obere Linie */
.menu-toggle::before {
    top: 14px;
}

/* untere Linie */
.menu-toggle::after {
    bottom: 14px;
}

/* ===== Animation zu X ===== */

.menu-toggle.toggled-on::before {
    top: 19px;
    transform: rotate(45deg);
}

.menu-toggle.toggled-on::after {
    bottom: 19px;
    transform: rotate(-45deg);
}

/* Hintergrund im geöffneten Zustand entfernen */
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle.toggled-on {
    background: transparent !important;
    box-shadow: none !important;
}

/* Falls ein Rahmen gesetzt wird */
.menu-toggle {
    border: none !important;
}

/* Linie über Seitenleiste */
.widget-area {
	border-top: 0 solid #1a1a1a /*#c4b16c*/;
}

/* Linie über jedem Widget hier weg */
.widget {
	border-top: 0;
}

/* Linie über Footer Widget */
#content-bottom-widgets.content-bottom-widgets {
		background-color: #fff;
	border-top: 2px solid #1a1a1a;
}

.button_cookies {
	font-size: 11px;
	padding: 4px;
	text-transform: uppercase;
	vertical-align: bottom;
}
#cn-notice-text {
	font-size: 11px !important;
}

/* Test weniger Header */
/* Weniger Abstand über dem Logo im Twenty Sixteen Theme */
.site-header {
    padding-top: 10px !important;  /* vorher ca. 50px */
    padding-bottom: 10px !important;
}

/* Falls das Logo selbst Abstand nach oben hat */
.site-branding {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Falls das Menü zu weit unten sitzt */
.main-navigation {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Headerbild wird zum Slider */

#header-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1200 / 350; /* Verhältnis deiner Headerbilder */
    overflow: hidden;
	margin-top: 20px;
	margin-bottom: 30px;
}

#header-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#header-slider img:first-child {
    opacity: 1;
}