﻿/* Allgemeine Stile */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}





.social-media {
    display: flex;
    justify-content: center;
    padding: 1em 0;
    background-color: #000;
}

.social-media a img {
    height: 20px;
    margin: 0 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0; 
    background-color: #000;
    z-index: 10; 
    margin: 0; 
    position: relative; 
    width: 100%; 
}

.nav-bar .logo img {
    height: 100px;
    margin-right: 82px; 
}

.nav-bar nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    padding: 0;
    margin: 0;
}

.nav-bar nav ul li {
    display: flex;
    align-items: center; 
    position: relative;
}

.nav-bar nav ul li img {
    height: 20px;
    margin-right: 8px; 
}

.nav-bar nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}


.nav-bar nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.nav-bar nav ul li a:hover::after,
.nav-bar nav ul li a:focus::after {
    width: 100%;
}

.nav-bar nav ul li.active a::after {
    width: 100%;
    background-color: #0000ff;
}

.nav-bar .server-status {
    color: #fff;
}

.nav-bar .server-status .online {
    color: #0f0;
}


.nav-bar nav ul li.dropdown {
    position: relative;
}

.nav-bar nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 0;
    list-style: none; 
    margin: 0;
    min-width: 230px;
    z-index: 100; 
}

.nav-bar nav ul li.dropdown .dropdown-menu li {
    padding: 0.5em 1em;
    display: flex;
    align-items: center; 
}

.nav-bar nav ul li.dropdown .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: flex; 
    align-items: center;
    transition: background-color 1.3s ease;
    border-radius: 3px;
    width: 100%;
}

.nav-bar nav ul li.dropdown .dropdown-menu li a img {
    height: 25px;
    width: 25px;
    margin-right: 20px;
}

.nav-bar nav ul li.dropdown .dropdown-menu li a:hover,
.nav-bar nav ul li.dropdown .dropdown-menu li a:focus {
    background-color: #ff0000;
    border-radius: 3px;
}


.nav-bar nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    z-index: 1;
}

.hero-shadow {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 100%;
  height: 50px;  /* Höhe vom Schatten */
  background: rgba(0,0,0,0.7);
  filter: blur(15px);
  z-index: 1;
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100vh;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 3s ease-in-out, transform 5s ease-in-out; 
    transform: scale(1.55);
    
}

.hero-image.zoom {
    animation: zoomEffect 8s ease-in-out forwards;
    
}



@keyframes zoomEffect {
    0% {
        transform: scale(1) translate(0%, 0%);
        background-position: top center;
    }
    25% {
        transform: scale(1.1) translate(-2%, -2%); /* leicht nach oben-links */
    }
    50% {
        transform: scale(1.2) translate(3%, 5%); /* leicht nach unten-rechts */
        background-position: center;
    }
    75% {
        transform: scale(1.3) translate(7%, -18%); /* oben-rechts / unten-links */
    }
    110% {
        transform: scale(1.35) translate(0%, 0%); /* wieder Mitte */
        background-position: bottom center;
    }
}










.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 1em;
    margin-bottom: 1em;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    width: 70%;
    margin: 1em auto;
}

.info-item {
    flex: 1;
    padding: 1em;
    background-color: #333;
    border-radius: 5px;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    margin: 0 0.5em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}

.info-item a {
    color: #0f0;
    text-decoration: none;
}

.info-item img {
    width: 40px;
    height: 40px;
}

.info-item span {
    display: block;
    color: #fff;
}


.info-item a:hover,
.info-item a:focus {
    color: #ff0000;
}



main {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 2em;
}


.content {
    display: flex;
    flex-direction: row;
    width: 70%;
    padding: 2em;
    gap: 6em; 
}


.left-column {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    gap: 4em;
}


.box {
    background-color: #222;
    padding: 1em;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    border-radius: 5px;
    box-sizing: border-box;
}


.guild-column {
    background-color: #222;
    padding: 1em;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 1em;
}


.right-column {
    width: 60%;
    background-color: #222;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    padding: 1em;
    border-radius: 5px;
    box-sizing: border-box;
    margin-left: 1em; 
}

.title-block {
    background-color: #333; 
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    padding: 1em;
    border-radius: 5px;
	color: #00a400;

    margin-bottom: 1em; 
}


.left-column h2,
.right-column h2 {
    color: #00a400;
}

.top-players {
    list-style: none;
    padding: 0;
}

.top-players li {
    margin: 0.5em 0;
}

.updates p {
    margin: 0.5em 0;
	font-size: smaller;
}


.updates img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.update-title {
    font-weight: bold;
    margin-bottom: 10px;
	font-size: 26px;
}


.top-players {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.top-players li {
    display: flex; 
    align-items: center; 
    padding: 0.5em;
    border-bottom: 1px solid #333; 
    background-color: #333; 
    border-radius: 5px; 
    margin-bottom: 0.5em; 
    transition: background-color 0.3s; 
}

.top-players li:last-child {
    border-bottom: none; 
}

.top-players img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px; 
}

.top-players span {
    color: #fff;
    font-weight: bold;
}

.top-players li:hover {
    background-color: #444;
}


.top-guilds-block {
    background-color: #222; 
    padding: 1em; 
    border-radius: 5px;
}

.top-guilds {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.top-guilds li {
    display: flex; 
    align-items: center; 
    padding: 0.5em;
    border-bottom: 1px solid #333; 
    background-color: #333; 
    border-radius: 5px; 
    margin-bottom: 0.5em;
    transition: background-color 0.3s; 
}

.top-guilds li:last-child {
    border-bottom: none; 
}

.top-guilds img {
    width: 20px; 
    height: 20px;
    vertical-align: middle;
    margin-right: 10px; 
}

.top-guilds span {
    color: #fff;
    font-weight: bold;
}

.top-guilds li:hover {
    background-color: #444; 
}

.title-block h2 {
    margin: 0; 
    color: #FFFFFF; 

}


footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-left {
    flex: 1;
}

.footer-center {
    flex: 2;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.social-media-links {
    display: flex;
    justify-content: center;
    padding: 1em 0;
    background-color: #000;
}

.social-media-links a img {
    height: 50px;
    margin: 0 10px;
}

.social-media-links a:hover {
    color: #ff0000;
}

.footer-line {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
    animation: blink 3s infinite;
}

.logout-button {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #d9534f; 
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.logout-button:hover {
    background-color: #c9302c; 
}


@keyframes blink {
    0% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 1;
    }
    50% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 0.5;
    }
    100% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 1;
    }
}

        
        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #111;
        }

        ::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #cc0000;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
        }

        
        * {
            scrollbar-width: thin;
            scrollbar-color: #ff0000 #111;
        }
		
		
.donation-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.donation-list, .donation-rules {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    max-width: 48%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.donation-list .title-block, .donation-rules .title-block {
    margin-bottom: 20px;
}

.donation-list .title-block h2, .donation-rules .title-block h2 {
    font-size: 24px;
    margin: 0;
}

.donation-list .packages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-list .packages li {
    background-color: #333;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.donation-list .packages li:hover {
    background-color: #ff0000;
}

.donation-list .packages .price {
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px; 
}

.donation-rules p {
    margin: 10px 0;
    line-height: 1.5;
}


.rule-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.rule-title:hover::after {
    width: 100%;
}

.highlight {
    color: #ff0000;
    font-weight: bold;
}


.rules-section {
    padding: 20px;
    background-color: transparent;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rule-box {
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    position: relative;
}

.rule-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.rule-item {
    margin-bottom: 20px;
}

.rule-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.rule-item p {
    font-size: 14px;
    color: white;
    margin: 0;
}


.schedule-container {
    margin: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background-color: transparent;
    font-weight: bold;
}

.schedule-table tr:hover {
    background-color: red;
	 transition: background-color 0.6s;
}

.schedule-table td {
    color: #333;
    font-size: 16px;
}

.schedule-table .system-name {
    font-weight: bold;
    color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.schedule-table .day {
    color: white;
}

.schedule-table .time {
    color: white;
}


.event-container {
    margin: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event-item {
    margin-bottom: 20px;
}

.event-item h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.event-item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.event-item a:hover {
    text-decoration: underline;
}


.userpanel-content {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.character-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.character-table th, .character-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.character-table th {
    background-color: transparent;
}

.class-img {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.userpanel-buttons {
    text-align: center;
}

.userpanel-buttons .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.userpanel-buttons .btn:hover {
    background-color: #0056b3;
}

.userpanel-buttons .btn:active {
    background-color: #003d80;
}

