body {
  margin: 0;
  padding: 1rem;
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column; /* WICHTIG */
  align-items: center;
  justify-content: flex-start; /* Damit alles oben beginnt */
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-image {
  width: 100vw;
  max-width: 100%;
  height: 200px; /* Höhe nach Wunsch anpassen */
  background-image: url('ziggi_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  text-align: center;
  background: white;
  margin-top: 15px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 50vw;
  width: 100%; /* Use full width within padded body */
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem; /* Slightly tighter padding on very small screens */
    max-width: 80vw;
  }

  h1 {
    font-size: 1.25rem;
  }

  .logo {
    width: 80%;
  }

  .doppelgold {
    width: 80%;
  }
}


.logo {
  width: 150px;
  margin-bottom: 1rem;
}

.doppelgold {
  width: 150px;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

h1 span {
  color: #2c7a7b;
}

.contact p {
  margin: 0.5rem 0;
}

a {
  color: #2c7a7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer: full width + always at bottom */
.site-footer{
  margin-top: auto;          /* pushes footer to bottom (flex column) */
  width: 100%;               /* full width even if body centers items */
  padding: 14px 12px;
  text-align: center;
  opacity: .85;
  font-size: 13px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* keep the link nicely centered */
.powered-by{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.ps-icon{
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: .9;
}

.powered-by:hover{
  opacity: 1;
  text-decoration: underline;
}