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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfbfc;
  color: #2c2c2c;
  line-height: 1.6;
}

.top-banner {
  background-color: #cc2e6f;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-banner a {
  color: #fff;
  text-decoration: underline;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #cc2e6f;
}

header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.callout {
  background-color: #ffe0f0;
  border-left: 5px solid #cc2e6f;
  padding: 15px 20px;
  margin: 30px 0;
  font-size: 1rem;
  border-radius: 10px;
}

.callout a {
  color: #cc2e6f;
  font-weight: 600;
  text-decoration: none;
}

section {
  margin-bottom: 50px;
}

h2 {
  font-size: 1.6rem;
  color: #cc2e6f;
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
}

a {
  color: #cc2e6f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.preis-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.preis-card {
  background: #fff;
  border: 1px solid #e9cddb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(204, 46, 111, 0.05);
  text-align: center;
}

.preis-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.preis {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2c2c2c;
}

.inklusive {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #555;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 60px;
}

/* Glitzer Canvas */
#glitter-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.studio {
  margin-bottom: 60px;
  text-align: center;
}

.studio-img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.inspiration {
  text-align: center;
}

.inspo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.inspo-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(204, 46, 111, 0.08);
  object-fit: cover;
}

