@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
/* UI neutral */
/* status */
body {
  background-image: url("../img/bg.png");
  background-repeat: repeat;
  background-color: rgb(15, 16, 32);
  color: rgb(170, 170, 170);
  font-family: "EB Garamond", serif;
  position: relative;
  z-index: 0;
  padding: 0;
  margin: 0;
}

a {
  color: rgb(0, 149, 255);
  transition: all 0.2s ease;
}
a:hover, a:focus {
  color: rgb(40.8, 165.96, 255);
  text-shadow: 0 0 6px rgba(40.8, 165.96, 255, 0.4);
}
a:active {
  color: rgb(0, 131.12, 224.4);
}

input {
  padding: 0.4em;
  border: 1px solid #8a2be2;
  border-radius: 5px;
}

.default-form-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 15px;
}

.form-grid-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  grid-column: span 2;
}

.bg-fade {
  display: none;
}

body > header:first-of-type {
  background-image: url("../img/header.png");
  background-repeat: repeat;
  padding: 1.4em 1em;
}

.link-no-style {
  text-decoration: none;
  color: rgb(170, 170, 170);
}

.link-no-style:hover {
  color: rgb(187, 187, 187);
  transform: scale(1.1);
  text-shadow: 0 0 6px rgba(187, 187, 187, 0.6);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-family: "Cinzel Decorative", serif;
}
header .main-nav-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-family: "Cinzel Decorative", serif;
}
header .main-nav-desktop ul li {
  display: flex;
  align-items: center;
}
header .main-nav-desktop ul li a {
  font-size: 130%;
  font-weight: 700;
}
header .main-nav-desktop ul li:not(:last-child)::after {
  content: "•";
  margin: 0 0.5em 0 1em;
  color: rgb(170, 170, 170);
  font-size: 1em;
}
header .admin-navbar a {
  font-size: 80%;
}
header .main-nav-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
header .main-nav-toggle .NavbarButton-img {
  width: 40px;
  height: auto;
  display: block;
}

.main-nav-toggle:focus-visible {
  outline: 2px solid #7c5cff;
  outline-offset: 2px;
}

.main-nav-toggle svg {
  display: block;
}

.main-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("/data/img/header.png") no-repeat center center;
  background-size: cover;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.main-nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.main-nav-mobile li {
  margin: 20px 0;
}
.main-nav-mobile a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
}

.main-nav-mobile.is-open {
  display: flex;
  flex-direction: column;
}

.main-nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
}

.main-nav-mobile a {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: #e7e7e7;
  border-radius: 0.5rem;
}

.main-nav-mobile a:hover, .main-nav-mobile a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

footer {
  margin-top: 0;
  padding: 0 0 2em 0;
  font-size: 0.9em;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2em;
}
footer .footer-content section {
  flex: 1 1 200px;
}
footer .footer-content section .footer-heading {
  font-size: 1.1em;
  color: rgb(204, 204, 204);
  margin-bottom: 0.5em;
}
footer .footer-content section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-content section .footer-links li {
  margin-bottom: 0.3em;
}
footer .footer-content section .footer-links a {
  text-decoration: none;
}
footer .footer-content section .footer-links a:hover {
  text-decoration: underline;
}
footer .footer-content section .newsletter-form input[type=email] {
  margin-right: 0.5em;
}
footer .footer-bottom {
  text-align: center;
  margin-top: 2em;
  border-top: 1px solid #333333;
  padding-top: 1em;
  font-size: 0.8em;
  color: rgb(119, 119, 119);
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: min(800px, 100vw);
  margin: 0 auto;
}

.content-box {
  padding: 20px;
  border: 2px solid rgb(127.5, 127.5, 127.5);
  border-radius: 10px;
  background-color: rgba(51, 51, 51, 0.3);
  box-shadow: 0 8px 20px rgba(216.75, 216.75, 216.75, 0.2);
  text-align: left;
}

hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #333333, rgb(127.5, 127.5, 127.5), #333333, transparent);
  margin: 2em 0;
  opacity: 0.6;
}

.header-hr {
  margin: 0 0 2em 0;
}

h1 {
  text-align: center;
  font-family: "Cinzel Decorative", serif;
}

button {
  padding: 0.4em 0.8em;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(180deg, rgb(0, 149, 255), rgb(0, 113.24, 193.8));
  box-shadow: 0 6px 18px rgba(0, 149, 255, 0.25);
  transition: all 0.25s ease;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: 0 4px 10px rgba(119, 119, 119, 0.15);
  transform: none;
  background: rgb(119, 119, 119);
}

button:not(:disabled):hover {
  background: linear-gradient(180deg, rgb(40.8, 165.96, 255), rgb(0, 149, 255));
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 149, 255, 0.35);
}

.error {
  text-align: center;
  font-size: 1.2em;
  color: rgb(255, 107, 107);
}

.success {
  text-align: center;
  font-size: 1.2em;
  color: rgb(36, 199, 139);
}

.warning {
  text-align: center;
  font-size: 1.2em;
  color: rgb(240, 180, 41);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.popup-overlay .popup {
  padding: 20px;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  border: 2px solid rgb(127.5, 127.5, 127.5);
  border-radius: 8px;
  background: url("../img/bg.png") repeat;
  box-shadow: 3px 8px 20px rgba(255, 255, 255, 0.1);
  text-align: center;
}
.popup-overlay .popup h2 {
  margin-top: 0;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.button-container {
  display: flex;
  gap: 10px;
}

.button-container > * {
  flex: 1;
}

.loading-animation {
  display: none;
}

.loading-animation.show {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #333333;
  border-top-color: rgb(165.75, 165.75, 165.75);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.hidden-obj {
  display: none !important;
}

.hidden-obj.show {
  display: initial !important;
}

.admin-btn-icon.hidden-obj.show {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
details summary {
  cursor: pointer;
  color: rgb(0, 149, 255);
  outline: none;
}
details ul {
  margin: 0;
}

details[open] summary {
  color: rgb(76.5, 180.8, 255);
}

.table-wrap thead tr:first-child {
  background-color: rgb(23, 24, 49);
  color: rgb(204, 204, 204);
  border-bottom: 2px solid rgb(0, 89.4, 153);
  font-size: 1.1em;
}
.table-wrap tbody tr:nth-child(even) {
  background-color: rgb(15, 16, 32);
}
.table-wrap tbody tr:nth-child(odd) {
  background-color: rgb(10.1170212766, 10.7914893617, 21.5829787234);
}

/* --- Social Media Buttons --- */
.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.social-links img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
}

.social-links img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* --- Ende Social Media Buttons --- */
.hp {
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.main-header {
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-block;
}

.main-header .logo-bg {
  position: absolute;
  top: 100%;
  left: 40%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  height: auto;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.main-header .title-text {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.cookie-banner-content {
  max-width: 400px;
  padding: 20px;
  background-color: rgb(23, 24, 49);
  border: 2px solid rgb(127.5, 127.5, 127.5);
  border-radius: 8px;
  text-align: center;
}
.cookie-banner-content .cookie-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cookie-banner-content .cookie-banner-buttons .cookie-banner-button-minimal {
  background: rgb(127.5, 127.5, 127.5);
  box-shadow: 0 6px 18px rgba(127.5, 127.5, 127.5, 0.4);
}
.cookie-banner-content .cookie-banner-buttons .cookie-banner-button-later {
  background: #333333;
  box-shadow: 0 6px 18px rgba(51, 51, 51, 0.4);
}
.cookie-banner-content .cookie-banner-buttons button {
  flex-basis: 0;
  flex-grow: 1;
}
@media screen and (max-width: 979px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner-content button {
    flex-grow: 0;
    width: 100%;
  }
}

.arrow-top-to-right {
  width: 15px;
  height: 20px;
  position: relative;
  margin: 0 5px;
  display: inline-block;
}
.arrow-top-to-right .arrow {
  position: absolute;
  top: 5px;
  left: 0;
  width: 2px;
  height: 10px;
  background: linear-gradient(180deg, #00aaff, #0077ff);
}
.arrow-top-to-right .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #0077ff);
}
.arrow-top-to-right .arrow::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-right: 3px solid #07f;
  border-bottom: 3px solid #07f;
  transform: rotate(-45deg) translate(-50%, 50%);
}/*# sourceMappingURL=core.css.map */