
/*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;
scrollbar-width: none; /* Versteckt Balken in Firefox */
    -ms-overflow-style: none; /* Versteckt Balken in alten Edge/IE Versionen */
}

#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: 100%; /* Nutzt die volle Breite der Spalte */
    margin-bottom: 8px;
}

/* Den "Links"-Trigger exakt wie .link-btn stylen */
.dropdown span {
    display: block;
    background: var(--hell);
    border: 1px solid var(--border-light);
    color: var(--dunkel) !important;
    text-align: center;
    padding: 8px; /* Gleiches Padding wie .link-btn */
    font-size: 11px;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: var(--font-header);
    box-sizing: border-box; /* Verhindert, dass der Rahmen die Box verbreitert */
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.dropdown:hover span {
    background: var(--dunkel);
    color: var(--hell) !important;
}

/* Das ausklappbare Menü anpassen */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--hell); /* Hintergrund wie Button-Ruhezustand */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 5px 0;
    z-index: 100;
    border: 1px solid var(--border-light);
}

/* Links im Dropdown stylen */
.dropdown-content a {
    color: var(--dunkel) !important;
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    padding: 8px 15px;
    text-decoration: none !important;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--dunkel);
    color: var(--hell) !important;
}

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


/* Container & Grid */
.modern-header {
    max-width: 1100px;
    margin:  auto;
    font-family: var(--font-header);
    background: #fdfdfd;
    border: 1px solid var(--border-light);
}

.mtg-topbar {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1.2fr;
    background: var(--accent-blue);
    color: var(--dunkel);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    text-align: center;
}

.mtg-main {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1.2fr;
    gap: 25px;
    padding: 25px;
    
	background-color: var(--dunkel);
}

/* Scrollboxen ohne sichtbaren Balken */
.mtg-scroll {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-main);
    text-align: justify;
}
.mtg-scroll::-webkit-scrollbar { display: none; }

/* Styling für die Variable {$teamheader} */
.team-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Links & Buttons */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.link-btn {
    display: block; /* Wichtig, damit das Padding wirkt */
    background: var(--hell);
    border: 1px solid var(--border-light);
    color: var(--dunkel) !important; /* Erzwingt die Farbe */
    text-align: center;
    padding: 8px;
    font-size: 11px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: 0.3s;
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.link-btn:hover {
    background: var(--dunkel);
    color: var(--hell) !important;
}

/* Spezifische Korrektur für Links im Button */
.link-btn a, 
.link-btn a:link, 
.link-btn a:visited {
    color: var(--dunkel) !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.link-btn:hover a {
    color: var(--hell) !important;
}
