/* === Grundlayout ========================================== */

:root {
  --bg-main: #f7f5fb;
  --bg-card: #ffffff;
  --accent: #ff6b8b;
  --accent-dark: #e15273;
  --text-main: #1f2a3a;
  --text-muted: #6c7890;
  --border-soft: #e2e4f0;
  --shadow-soft: 0 18px 45px rgba(25, 25, 60, 0.15);
  --radius-xl: 1.5rem;
  --radius-lg: 1.1rem;
  --radius-pill: 999px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* === Page Wrapper & Container ============================= */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Top Strip ============================================ */

.top-strip {
  background: #082c4f;
  color: #fff;
  font-size: 0.85rem;
}

.top-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.35rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.top-strip a {
  color: #ffdde9;
  text-decoration: none;
}

.top-strip a:hover {
  text-decoration: underline;
}

.lang-switcher button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  margin-left: 0.25rem;
  cursor: pointer;
}

/* === Header / Navigation ================================== */

.site-header {
  background: radial-gradient(circle at top left, #ffe6f0, #ffffff);
  border-bottom: 1px solid var(--border-soft);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Navigation Desktop */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Hamburger Button (mobil sichtbar) */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* === Hero ================================================= */

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  background: radial-gradient(circle at top left, #fff7fa, #f4f5ff);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

.hero h1 {
  margin: 0 0 0.4rem;
  font-size: 2.1rem;
}

.hero .lead {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.hero p {
  margin-top: 0.3rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Buttons */

.btn-primary,
.btn-outline {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(255, 107, 139, 0.4);
}

.hero-photo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  max-width: 320px;
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* === Sections ============================================= */

.section {
  padding: 2.4rem 0 1.6rem;
}

.section h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.section-intro {
  margin: 0.4rem 0 1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.section-image {
  margin-top: 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(15, 15, 40, 0.1);
}

/* CTA-Blöcke (z. B. Insta unter Galerie) */
.section-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 15, 40, 0.08);
}

/* === Grid Helpers ========================================= */

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 28px rgba(18, 24, 50, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.icon-circle {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #ffe5ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Preise */

.price-card {
  border: 1px solid var(--border-soft);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  padding: 0.15rem 0;
  font-size: 0.92rem;
}

/* === Galerie ============================================== */

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

/* Karten im Grid (Desktop/Tablet) */
.gallery-item {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 0.4rem 0.4rem 0.8rem;
  box-shadow: 0 10px 25px rgba(15, 15, 40, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;                        /* für Zoom-Effekt */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Bilder überall gleich hoch + Effekt */
.gallery-item img {
  border-radius: 0.9rem;
  width: 100%;
  height: 430px;                           /* einheitliche Höhe */
  object-fit: cover;                       /* hübscher Zuschnitt */
  transition: transform 0.25s ease;
}

/* Hover-Effekt (Desktop) */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 15, 40, 0.16);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Insta-CTA unter Galerie mit Abstand */

.gallery-instagram-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* === Kontakt ============================================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.6rem;
}

.contact-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 26px rgba(15, 15, 40, 0.08);
}

.contact-box h3 {
  margin-top: 0;
}

/* Formular */

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* === Footer =============================================== */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 1rem 0 1.2rem;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #ffffff;
}

.site-footer a {
  color: var(--accent-dark);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* === WhatsApp FAB ========================================= */

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 40;
}

/* === Cookie-Banner ======================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 53, 90, 0.97);
  color: #ffffff;
  font-size: 0.85rem;
  z-index: 50;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  max-width: 720px;
}

.cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  cursor: pointer;
  background: #ff6b8b;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.cookie-banner button:hover,
.cookie-banner button:focus-visible {
  transform: translateY(-1px);
}

/* === Responsive Styles ==================================== */

/* Tablet-Down Anpassungen */

@media (max-width: 1024px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile (Hamburger + Slider) */

@media (max-width: 768px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header-inner {
    align-items: center;
  }

  /* Hamburger anzeigen, Nav ausblenden */
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    padding: 0.4rem 0.8rem;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.4rem 1.1rem;
  }

  .hero-photo-wrapper {
    order: -1;
    margin-bottom: 0.8rem;
  }

  .hero-photo {
    max-width: 260px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-instagram-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Galerie als horizontaler Slider (gleich große Bilder) */
  .gallery-grid {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 6px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

  .gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    max-width: 360px;
    width: 80vw;
  }

  .gallery-item img {
    height: 430px;           /* gleiche Höhe wie Desktop */
    object-fit: cover;
  }

  /* Preise als Slider auf Mobile */
  #prices .grid,
  #prices .grid-2,
  #prices .grid-3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
  }

  #prices .grid::-webkit-scrollbar {
    height: 6px;
  }

  #prices .grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

  #prices .card,
  #prices .price-card {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

/* Sehr kleine Geräte */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-logo-img {
    width: 44px;
    height: 44px;
  }
}
