/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hintergrund und Schriftfarben */
body {
  background-color: #120e14;  /* Dunkles Grau */
  color: #FFFFFF;
  font-family: sans-serif;  /* Oder Montserrat/Lato etc., wenn erwünscht */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
.page-header {
  width: 100%;
  height: 2.4rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #120e14;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(255, 231, 255, 0.8);
  animation: slideIn 0.5s ease-out;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.logo:hover {
  color: #f8f0ff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 20px rgba(255, 231, 255, 0.6);
}

.header-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.header-title:hover {
  color: #f8f0ff;
  text-shadow: 0 0 10px rgba(255, 231, 255, 0.8);
}

.header-links a {
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.header-links a:hover {
  color: #f8f0ff;
  text-decoration: underline;
  text-shadow: 0 0 30px rgba(248, 240, 255, 0.8);
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

main {
  margin-top: 3rem;
  flex: 1;
}

.info-section {
  text-align: center;
  margin-top: 1.8rem;
}

.big-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.big-heading:hover {
  color: #f8f0ff;
  text-shadow: 0 0 15px rgba(248, 240, 255, 0.8);
}

.subtitle {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.subtitle:hover {
  color: #f8f0ff;
  text-shadow: 0 0 10px rgba(248, 240, 255, 0.8);
}

.link-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
}

.link-box {
  background-color: rgba(18, 14, 20, 1);
  border-radius: 12px;
  width: 450px;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 10 10 5px rgba(18, 14, 20, 1);
}

.link-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(248, 240, 255, 0.6);
}

.box-text {
  font-size: 2.7rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.box-text:hover {
  color: #f8f0ff;
  text-shadow: 0 0 15px rgba(248, 240, 255, 0.8);
}

.page-footer {
  background-color: #120e14;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  box-shadow: 5 5px 5px rgba(18, 14, 20, 1);
}

.footer-text {
  font-size: 1.4rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-text:hover {
  color: #ed05e6;
  text-shadow: 0 0 15px rgba(237, 10, 142, 0.8),
               0 0 10px rgba(233, 11, 237, 0.6);
}
