html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Cinzel', serif;
    color: #fff;
    background: url('background.jpg') no-repeat center bottom fixed;
    background-size: contain;
    background-color: #000;
    position: relative;
    overflow-x: hidden;
}

/* Hintergrund?berlagerung */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

/* Rauch-/Glutpartikel */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 10px 10px;
    animation: drift 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes drift {
    0% {
        background-position: 0 0;
        opacity: 0.4;
    }
    100% {
        background-position: -1000px -1000px;
        opacity: 0.1;
    }
}

/* Hauptinhalt */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh; /* dvh f?r bessere Browser-Kompatibilit?t */
    padding: 0 10vw;
    text-align: center;
}

/* UNDER CONSTRUCTION */
.flaming-title {
  font-size: 3em;
  font-weight: bold;
  color: #ff4400;
  margin-top: 30px;
  margin-bottom: 20px;
  animation: fireFlicker 1.2s infinite alternate;
  text-shadow:
    0 0 10px #ff6600,
    0 0 20px #ff3300,
    0 0 30px #ff2200,
    0 0 50px #ff1100;
  z-index: 10;
  position: relative;
}

@keyframes fireFlicker {
  0% {
    text-shadow:
      0 0 5px #ffaa00,
      0 0 15px #ff5500,
      0 0 30px #cc2200;
    transform: scale(1.02) rotate(-0.5deg);
  }
  100% {
    text-shadow:
      0 0 15px #ff8800,
      0 0 25px #dd0000,
      0 0 40px #ff2200;
    transform: scale(1) rotate(0.5deg);
  }
}

/* Logo */
.logo {
    width: 50vw;
    max-width: 375px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-size: 4em;
    margin-bottom: 0.4em;
}

.subtitle,
.teaser,
.note,
.socials,
footer {
    font-size: 1.5em;
    margin: 12px 0;
}

/* Feuerwerk Canvas */
#fireworks {
    position: absolute; /* statt fixed f?r Firefox */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Kontaktformular (optional) */
.contact-form {
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 60%;
    margin: 5px 0;
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 1.2em;
    margin-top: 10px;
    background-color: #aa0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsiv */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .subtitle,
    .teaser,
    .note,
    .socials,
    footer {
        font-size: 1.2em;
    }

    .logo {
        width: 70vw;
        max-width: 320px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 80%;
    }

    body {
        background-size: cover;
        background-position: center center;
    }
}