
/*HEADER HINTERGRUND-BILD & -FARBE*/
#headerlogo {
	width: 1100px;
	height: 450px;
	margin-bottom: auto;
	margin-top: 10px;
	/*background-image: url(../../../images/ruin/banner2.png); Falls ihr statt einer Farbe ein Bild nutzen mÃ¶chtet, einfach mit "background-image: url(../../../LINK);" ersetzen. */
	/* Klammern und Kommentar raus lÃ¶schen, falls ihr ein Hintergrundbild nutzt, sodass nur folgenes Attribut steht: "background-size: 1050px 400px;" */
}
/*******Viseras Header****************/
#header {
width: 1100px;
background: var(--dunkel);
color: #404d4c;
border: none;
}

.htitel {
background: linear-gradient(to bottom, var(--hell), var(--dunkel));
font-family: 'Quicksand';
font-size: 14px;
text-transform: uppercase;
text-align: center;
color: #404d4c;
}

.hzelle {
padding-bottom: 20px;
padding-top: 5px;
}

.htext {
height: 180px;
padding: 10px;
font-family: 'Quicksand';
font-size: 12px;
text-align: justify;
overflow: auto;
}

#news {
height: 70px;
padding-bottom: 20px;
font-family: 'Quicksand';
font-size: 12px;
text-align: justify;
}

.link {
width: 110px;
margin: auto;
margin-bottom: -8px;
padding: 2px;
background: linear-gradient(to bottom, var(--hell), var(--dunkel));
text-align: center;
display: block;
border-left: 3px double #9ab3b8;
border-right: 3px double #9ab3b8;
}

.alink1 a {
color: #404d4c;
text-decoration: none;
text-transform: uppercase;
transition-duration: 0.5s;
transition-property: all;
transition-timing-function: ease;
-moz-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
-webkit-transition-duration: 0.5s;
}

.alink1 a:hover {
opacity: 0.6;
}

.htext::-webkit-scrollbar {
width: 3px; background: #d0d0d0;
}

.htext::-webkit-scrollbar-thumb {
background: #9ab3b8;
}
.htext::-webkit-scrollbar-corner {
background: #9ab3b8;
}

/*******Viseras Header Ende****************/


/* Den Dropdown-Container an die Button-Optik anpassen */
.dropdown {
    display: block;
    cursor: pointer;
    width: 110px; /* Gleiche Breite wie .link */
    margin: auto;
}

/* Den "Links"-Text exakt wie die Buttons stylen */
.dropdown span {
    display: block;
    width: 112px;
    padding: 2px;
	margin-left: -4px;
    background: linear-gradient(to bottom, var(--hell), var(--dunkel));
    text-align: center;
    border-left: 3px double #9ab3b8;
    border-right: 3px double #9ab3b8;
    color: #404d4c; /* Gleiche Textfarbe wie die anderen Links */
    text-transform: uppercase;
    font-size: 12px; /* Angleichung an die restliche Schrift */
    font-family: 'Quicksand';
    transition: 0.5s;
}

.dropdown:hover span {
    opacity: 0.6; /* Hover-Effekt der anderen Links übernehmen */
}

/* Das ausklappbare Menü anpassen */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dunkel);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    padding: 10px;
    z-index: 100;
    line-height: 20px; /* Zeilenabstand verringert für kompakte Liste */
    text-align: left;
    border: 1px solid #9ab3b8;
}

/* Links im Dropdown stylen */
.dropdown-content a {
    text-transform: uppercase;
    font-size: 11px;
    display: block;
    padding: 2px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}