/* ============================= */
/* ===== Grundlegendes ===== */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(-45deg, #030007, #08001a, #1a0033, #0a0015);
  background-size: 400% 400%;
  animation: gradientBG 30s ease infinite;
  color: #fff;
}

/* ===== Animation ===== */
@keyframes gradientBG {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

/* ============================= */
/* ===== Header / Hero ===== */
/* ============================= */

header, .hero {
  text-align: center;
  padding: 60px 20px 30px;
}

.hero h1 {
  font-size: 3rem;
}

.subtitle {
  opacity: 0.85;
  margin-top: 8px;
}

/* ============================= */
/* ===== Navigation ===== */
/* ============================= */

nav.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

nav.site-nav .nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

nav.site-nav a {
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.05);
  transition: background 0.3s, transform 0.2s;
}

nav.site-nav a:hover {
  background: rgba(145,70,255,0.4);
  transform: scale(1.05);
}

/* ============================= */
/* ===== Container & Glass ===== */
/* ============================= */

.container {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.glass {
  width: 100%;
  max-width: 520px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 30px;
}

.center {
  text-align: center;
}

/* ============================= */
/* ===== Kalender Woche ===== */
/* ============================= */

.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calendar-day {
  padding: 15px;
  border-radius: 16px;
}

.calendar-day h3 {
  margin-bottom: 10px;
}

.calendar-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
}

.calendar-time {
  font-size: 0.85rem;
  opacity: 0.7;
}

.calendar-title {
  font-weight: bold;
  margin-top: 2px;
}

/* ============================= */
/* ===== Footer ===== */
/* ============================= */

.site-footer {
  margin-top: 60px;
  padding: 25px 10px;
  text-align: center;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ============================= */
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.3rem; }
  .glass { padding: 20px; }
  nav.site-nav { flex-direction: column; gap: 10px; }
  .calendar-list { gap: 12px; }
  .calendar-item { padding: 8px; }
}
