body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
@font-face {
    font-family: 'UncialAntiqua';
    src: url('../../files/layout/UncialAntiqua-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root{
	--green: #2c472a;
	--darkgreen: #182d18;
	--gold: #f4a300;
	--dark-gold: #3b2d15;
	--pergament: #f5efe4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f4f1e7; /* Helles Pergament-Gelb */
    color: var(--dark-gold); /* Dunkelgrau für Text */
    line-height: 1.6;
    font-size: 16px;
    background-image: url('../../files/layout/parchment_texture.jpg'); /* Optional: Textur wie Pergament */
    background-repeat: repeat;
}

#container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'UncialAntiqua', serif;
    color: var(--dark-gold); /* Dunkelbraun für Überschriften */
    margin-bottom: 15px;
    text-align: center;
}

h1 {
    font-size: 32px;
    border-bottom: 4px solid var(--dark-gold);
    padding-bottom: 20px;
}

h3 {
    font-size: 24px;
    border-bottom: 2px solid var(--dark-gold);
    padding-bottom: 10px;
}

h4 {
    font-size: 20px;
    margin-top: 20px;
    border-bottom: 1px solid var(--dark-gold);
    padding-bottom: 5px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    font-size: 16px;
}

#main {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.mod_article {
    margin-bottom: 40px;
}

.content-text {
    padding: 20px;
    background-color: var(--pergament); /* Leicht schattiertes Hintergrund für Textbereich */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rte {
    margin-top: 20px;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h3, h4 {
        font-size: 20px;
    }
}

/* Logout Button */
.logout-section {
    text-align: center;
    margin: 20px 0;
}

.login-info {
    font-size: 14px;
    margin-bottom: 10px;
}

.logout-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #e74c3c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-button:hover {
    background-color: #c0392b;
}

.event {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.event h1, .event .info {
    grid-column: 1 / span 2;
}
fieldset {
    border-radius: 10px;
	opacity: 0.5;
	transition: ease 0.5s;
}
fieldset:hover {
	opacity: 1;
}
.formbody legend {
    font-size: 1.5rem;
    padding: 10px;
    margin: 0 10px;
}
.formbody textarea {
    width: 90%;
    margin: 5% 5% 0% 5%;
	padding: 1ch;
    height: 15ch;
    border: 2px solid;
    border-radius: 15px;
}
.formbody .explanation {
    margin: 0 5% 2ch 5%;
}
/* Header & Navigation */
#header {
    background-color: var(--green);; /* Dunkles Violett für den Header */
    color: white;
    padding: 20px 0;
    border-bottom: 5px solid var(--gold); /* Dunkelbraune Linie für den mittelalterlichen Look */
	overflow: visible;
}

ul li {
	margin: 0;
	padding: 0;
}
.mod_navigation {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
	
	overflow: visible;
}

.mod_navigation a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease-in-out;
	    width: 100%;
    text-align: center;
    padding: 10px 0;
}
.mod_navigation .active {
    font-weight: bold;
	font-size: 18px;
    color: var(--gold); /* Goldene Farbe für aktive Elemente */
	transition: all 0.3s ease-in-out;
}

.mod_navigation .submenu a {
    position: relative;
}

.mod_navigation .submenu ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--green);; /* Dunkles Violett für Submenü */
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.mod_navigation li {
    width: 200px;
    height: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
	border-bottom: 1px solid var(--gold);
	transition: all 0.3s ease-in-out;
}
.mod_navigation li:hover {
    border-bottom: 3px solid var(--gold);
}

.mod_navigation .submenu li a {
    padding: 10px 15px;
    font-size: 16px;
}

.mod_navigation .level_1 {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 0;
	gap: 30px;
}

.mod_navigation .level_1 li {
    list-style: none;
    position: relative;
}

ul.level_2 {
	z-index: 1;
}
.mod_navigation .level_1 li:hover {
    background: var(dark-gold);
}
.mod_navigation .level_1 li:hover ul.level_2 {
    display: block;
}

.mod_navigation .invisible {
    display: none;
}

#header .inside {
    max-width: 1200px;
    margin: 0 auto;
}

#skipNavigation6 {
    display: none;
}

@media (max-width: 768px) {
    .mod_navigation a {
        font-size: 16px;
        padding: 10px;
    }

    .mod_navigation .level_1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .mod_navigation .submenu ul {
        left: auto;
        right: 0;
    }
}
#tl_login_2 {
    background-color: #f9f1e1; /* Helles Pergamentgelb für das Formular */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid #5a3d29; /* Dunkelbraune Umrandung */
}

.formbody {
    display: flex;
    flex-direction: column;
}

.widget {
    margin-bottom: 20px;
}

.widget label {
    display: block;
    font-family: 'UncialAntiqua', serif;
    color: var(--dark-gold); /* Dunkelbraun für die Label */
    margin-bottom: 5px;
    font-size: 18px;
    text-align: left;
    text-shadow: 1px 1px 2px #000000;
}

.widget input[type="text"],
.widget input[type="password"],
.widget input[type="tel"],
.widget input[type="date"],
.widget input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid var(--dark-gold);
    border-radius: 5px;
    background-color: #ffffff;
    color: #3e3e3e;
    font-family: 'Georgia', serif;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.widget input[type="text"]:focus,
.widget input[type="password"]:focus {
    border-color: var(--gold); /* Goldene Farbe bei Fokus */
    outline: none;
    box-shadow: 0px 0px 8px rgba(244, 163, 0, 0.6);
}

.widget-checkbox {
    margin-top: 10px;
}

.checkbox_container {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #5a3d29;
}

.checkbox_container input[type="checkbox"] {
    margin-right: 10px;
}

.widget-submit {
    text-align: center;
}

.widget-submit button {
    background-color: var(--dark-gold); /* Dunkelbraun für Button */
    color: white;
    font-family: 'Georgia', serif;
    font-size: 18px;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.widget-submit button:hover {
    background-color: var(--gold); /* Goldene Farbe bei Hover */
    color: #3e3e3e;
    text-shadow: 1px 1px 3px #000000;
}

.password-reset {
    text-align: center;
    margin-top: 20px;
}

.password-reset a {
    color: #5a3d29;
    font-family: 'Georgia', serif;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.password-reset a:hover {
    color: var(--gold); /* Goldene Farbe bei Hover */
    text-decoration: underline;
}
.checkbox_container span {
    display: flex;
    padding: 10px 15px;
}
@media (max-width: 768px) {
    #tl_login_2 {
        padding: 20px;
    }

    .widget label {
        font-size: 16px;
    }

    .widget input[type="text"],
    .widget input[type="password"] {
        font-size: 14px;
    }

    .widget-submit button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .password-reset a {
        font-size: 14px;
    }
}

