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

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(to bottom, #ffffff, #fff6f6, #ffeeee);
  color: #a10000;
  overflow-x: hidden;
}

/* --- Header --- */
.site-header {
  background: #a10000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: white;
}

.brand svg {
  width: 48px;
  height: 48px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.main-nav {
  margin-top: 0.5rem;
}

.main-nav a {
  color: #fff;
  margin: 0 0.4rem;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  text-decoration: underline;
  opacity: 0.9;
}

/* --- Inhalt --- */
.main-content {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.countdown {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.music-btn {
  background: #a10000;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.music-btn:hover {
  background: #c80000;
}

/* --- Footer --- */
.site-footer {
  flex-shrink: 0;
  background-color: #a10000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 5;
}

/* --- Schneefall --- */
.snowflake {
  position: fixed;
  top: -10px;
  color: #bdeaff;
  font-size: 1.4em;
  pointer-events: none;
  animation: fall linear forwards;
  opacity: 0.9;
  z-index: 1;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
    opacity: 0.3;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .main-nav a {
    display: inline-block;
    margin: 4px;
    font-size: 0.9rem;
  }

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

/* === Burger Menü === */
.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 100;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #a10000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 99;
    animation: slideDown 0.3s ease-out;
  }

  .main-nav.show {
    display: flex;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav a {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }
}

