/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Open+Sans&display=swap');

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

a {
    color: #ff4d4d;
    text-decoration: none;
}

a:hover {
    color: #ff9999;
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #ff4444;
}

body.fullpage {
    height: 100vh;
}

/* Box Styles */
.border-discription {
    border: 2px solid #ff4444;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 800px;
    border-radius: 8px;
    background-color: #1a1a1a;
}

.html-links {
    border: 2px solid #ff9900;
    background-color: #331a00;
    padding: 1rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 10px;
}

.box-links {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 6px;
    background-color: #ff9900;
    color: #1a1a1a;
    font-weight: bold;
    transition: all 0.3s ease;
}

.box-links:hover {
    background-color: #cc7a00;
    color: #fff;
}

.edge-box {
    border: 2px solid #ff3333;
    background-color: #330000;
    width: 25%;
    padding: 1rem;
    margin: 2rem auto;
    border-radius: 10px;
    color: #f5f5f5;
}

/* Spezielle Box */
.nach {
    display: inline-block;
    margin: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff9900;
    background-color: #331a00;
    color: #ffcccc;
    font-weight: bold;
    transition: background 0.3s ease;
}

.nach:hover {
    background-color: #4d2600;
}

/* Discord Icon */
.discord {
    width: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.discord:hover {
    transform: scale(1.1);
}

/* Download */
.download {
    float: left;
}

.clear {
    clear: both;
}

.link-edit {
    color: #ff6666;
}

.link-edit:hover {
    color: #ff9999;
}

.center-phone {
    text-align: center;
}

.pic-center {
    margin: 0 auto;
    display: block;
}

/* Hamburger Menu Button oben links fixiert */
.menu-toggle {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1002;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #c00;
}

/* Hamburger Menü */
.main-menu {
  position: absolute;
  display: none;
  left: -200px;
  top: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: visible;
  transition: left 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 2.5em 0 0;
  min-height: 100%;
  width: 200px;
  background-image: url(https://mfiles.alphacoders.com/988/988611.png);
  background-size: cover;
  background-position-x: center;
  box-shadow: -8px 0 8px rgba(0,0,0,.5);
}

.main-menu a {
  display: block;
  padding: .75em 15px;
  line-height: 1em;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #383838;
}

.main-menu a.menu-close {
  border-bottom: 0;
}

.main-menu li:first-child a {
  border-top: 1px solid #383838;
}

.main-menu a:hover,
.main-menu a:focus {
  background: #333;
  text-decoration: underline;
}

.main-menu .menu-close {
  position: absolute;
  right: 0;
  top: 0;
}

.main-menu:target,
.main-menu[aria-expanded="true"] {
  display: block;
  left: 0;
  outline: none;
  box-shadow: 3px 0 12px rgba(0,0,0,.25);
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
  z-index: 1001;
}

.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
  position: relative;
  z-index: 1000;
}

.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0,0,0,.85);
  cursor: default;
}

@supports (position: fixed) {
  .main-menu,
  .main-menu:target + .backdrop,
  .main-menu[aria-expanded="true"] + .backdrop {
    position: fixed;
  }
}

.main-menu ul li ul {
  padding: 0 0 0 25px;
  background-image: none;
}

/* Artikel & Header */
header {
    padding: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #ff4444;
    margin-left: 20px;
}

article {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* Kurumi Shadow-Image unten rechts */
.down-right {
    border: 4px solid red;
    border-radius: 85% 0 0 0;
    width: 25vw;
    height: 25vw;
    max-width: 500px;
    max-height: 500px;
    background-image: url('https://images7.alphacoders.com/135/1359013.png');
    background-size: cover;
    background-position: center;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    opacity: 0.9;
}

/* Mobile Optimierung */
@media screen and (max-width: 768px) {
    .down-right {
        display: none;
    }
    .edge-box, .html-links, .border-discription {
        width: 90%;
        margin: 1rem auto;
    }
    .box-links {
        width: 90%;
    }
}
