* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --bg: #0b0b0f;
  --bg-soft: #12121a;
  --text: #f5f5f7;
  --text-muted: #b3b3c2;
  --accent: #1e90ff;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

a.accent-link {
  color: var(--accent);
  transition: color 0.2s;
}

a.accent-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

img { 
  display: block; 
  width: 100%; 
  height: auto; 
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11,11,15,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.nav-links a {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  transition: color 0.25s;
}

.nav-links a:hover { color: white; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: clamp(100px, 18vh, 160px) 0 clamp(60px, 10vh, 120px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.accent-text { color: var(--accent); }

.hero p {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  object-fit: cover;
}

/* ── Buttons ── */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 2rem;
}

.btn {
  padding: clamp(14px, 3.5vw, 17px) clamp(28px, 6vw, 38px);
  border-radius: 999px;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn:hover { 
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30,144,255,0.35);
}

/* ── About ── */
#about {
  padding: clamp(100px, 15vh, 160px) 0 clamp(60px, 10vh, 120px);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  margin-bottom: 1.2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
  border-radius: 999px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ── Gallery ── */
#gallery .container { padding: clamp(60px, 8vh, 100px) 20px clamp(40px, 6vh, 80px); }

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
}

.filter-btn {
  padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: pointer;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  transition: all 0.25s;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Load More */
.load-more-wrapper {
  text-align: center;
  margin: clamp(2rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

.load-more-btn {
  padding: clamp(10px, 3vw, 14px) clamp(24px, 6vw, 36px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(30, 144, 255, 0.4);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(30,144,255,0.15);
}

.load-more-btn:hover {
  background: rgba(30, 144, 255, 0.12);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(30,144,255,0.35);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  overflow: auto;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ccc;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Offers */
.offers-section {
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
}

.offer-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.offer-option {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.offer-option:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.offer-option.selected {
  border: 2px solid var(--accent);
  background: rgba(30,144,255,0.06);
  box-shadow: 0 0 32px rgba(30,144,255,0.25);
}

.offer-emoji {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 1.2rem;
  display: block;
}

.offer-option h3 {
  font-size: clamp(1.35rem, 3.8vw, 1.7rem);
  margin-bottom: 0.8rem;
}

.offer-option p {
  color: var(--text-muted);
  font-size: clamp(0.97rem, 2.6vw, 1.07rem);
  line-height: 1.55;
}

.price {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
}

/* Kontakt */
#contact {
  padding-bottom: clamp(100px, 15vh, 160px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.contact-info p {
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.05rem);
}

.contact-form textarea {
  min-height: clamp(140px, 30vh, 180px);
  resize: vertical;
}

/* Footer */
footer {
  padding: clamp(60px, 10vh, 100px) 0 clamp(40px, 8vh, 80px);
  background: #0a0a0e;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.footer-logo {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

/* Selected Offer Info */
.selected-offer-info {
  background: rgba(30,144,255,0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(16px, 4vw, 20px) clamp(20px, 5vw, 24px);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  display: none;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 500;
}

.selected-offer-info.show {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* Buttons immer untereinander ab ~1100 px (iPad + Handy) */
@media (max-width: 1100px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 2.2rem auto 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1.08rem;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .contact-grid,
  .offer-selector {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: clamp(100px, 22vh, 160px) 0 clamp(60px, 12vh, 100px);
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 10vw, 5rem);
    margin-bottom: 1.5rem;
  }

  .hero p {
    max-width: 520px;
    margin: 0 auto 2.5rem auto;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }

  .hero-image {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .burger {
    display: flex;
  }

  .footer-grid {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filter { justify-content: center; flex-wrap: wrap; }
  .filter-btn { font-size: 0.95rem; padding: 8px 16px; }
  .btn { width: 100%; text-align: center; }

  .hero h1 {
    font-size: clamp(2.8rem, 9.5vw, 4.2rem);
  }

  .hero p {
    font-size: clamp(1.05rem, 4.2vw, 1.2rem);
  }

  .hero-buttons {
    max-width: 100%;
    gap: 1rem;
  }

  .hero-buttons .btn {
    padding: 15px 28px;
    font-size: 1.05rem;
  }
}

/* Versteckte Items */
.gallery-item.hidden-initial {
  display: none !important;
}