:root {
  --bg: #f7f2ec;
  --ink: #2f2435;

  --uv1: #ff4d6d;
  --uv2: #ffb300;
  --uv3: #8afff0;
  --uv4: #b36bff;

  --p1: #f28b82;
  --p2: #fbbc04;
  --p3: #a7ffeb;
  --p4: #a142f4;
}

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

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top left, #ffe9d6 0, var(--bg) 45%, #f3f0ff 100%);
  color: var(--ink);
  padding: 80px 1.5rem 60px;
  position: relative;
  overflow-x: hidden;
}

/* GLOBAL LINK STYLE */
a {
  color: #5b4a63;
  text-decoration: none;
  font-family: inherit;
}

a:hover {
  opacity: 0.6;
}

/* HEADER */
.zotz-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  z-index: 9999;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.7;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* FOOTER */
.zotz-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  color: #5b4a63;
  z-index: 9999;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
}

.social-links a {
  color: #b48a5a;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: #2f2435;
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sep {
  opacity: 0.4;
}

/* -------------------------------------------------- */
/* HERO – neue Startseite */
/* -------------------------------------------------- */

.hero {
  text-align: center;
  padding: 120px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.brand-glow {
  color: #111;
  text-shadow: 
    0 0 12px rgba(255, 0, 255, 0.25),
    0 0 22px rgba(0, 180, 255, 0.25);
}

.tagline {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 25px;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.hero-button {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.hero-button:hover {
  background: #222;
  box-shadow: 
    0 0 12px rgba(255, 0, 255, 0.25),
    0 0 18px rgba(0, 180, 255, 0.25);
}

/* -------------------------------------------------- */
/* GALERIE */
/* -------------------------------------------------- */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.gallery-meta {
  padding: 1rem 1.2rem 1.3rem;
}

.gallery-meta h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.gallery-meta p {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.8;
}

/* Mobile: 1‑spaltig */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------- */
/* RESPONSIVE DESIGN */
/* -------------------------------------------------- */

/* MOBILE */
@media (max-width: 600px) {

  body {
    padding: 70px 1rem 70px;
  }

  .zotz-header {
    height: 56px;
    padding: 0 1rem;
  }

  .logo {
    height: 42px;
  }

  .header-nav {
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: 90px 1rem 40px;
  }

  .brand {
    font-size: 2.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .zotz-footer {
    height: 56px;
    padding: 0 1rem;
    font-size: 0.75rem;
  }

  .social-links {
    gap: 0.8rem;
    font-size: 1.2rem;
  }
}

/* TABLET */
@media (max-width: 900px) {

  body {
    padding: 80px 1.2rem 70px;
  }

  .header-nav {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 110px 1rem 60px;
  }

  .brand {
    font-size: 3.4rem;
  }

  .zotz-footer {
    padding: 0 1.2rem;
  }
}