/* ============================================================
   Floristik Sommerflor – Hamburg
   Design: „Papier & Farbe" – warmes Creme-Weiß, tiefes Blattgrün,
   Sommerflor-Gradient als Wiedererkennungsmerkmal.
   ============================================================ */

:root {
  --cream: #fdf9f2;
  --cream-2: #f6efe3;
  --ink: #2b2620;
  --ink-soft: #6b6258;
  --leaf: #1e4d3a;
  --leaf-deep: #143a2b;
  --rose: #d4537a;
  --gold: #e8a13d;
  --rainbow: linear-gradient(90deg,
      #e2492f 0%,
      #f08a24 18%,
      #f2c53d 36%,
      #57a85a 54%,
      #3f7fc1 72%,
      #7a4fa3 88%,
      #c04a8c 100%);
  --radius: 18px;
  --shadow: 0 18px 45px -18px rgba(43, 38, 32, 0.25);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--leaf); }

/* ---------- Sommerflor-Akzentleiste ---------- */
.rainbow-bar {
  height: 6px;
  background: var(--rainbow);
  width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 38, 32, 0.08);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand svg { flex-shrink: 0; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.15;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 0;
  background: var(--rainbow);
  border-radius: 3px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  display: inline-block;
  background: var(--leaf);
  color: #fff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--leaf-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Layout-Helfer ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 4.5rem 0; }

.section--alt { background: var(--cream-2); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.6rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.3rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

.text-rainbow {
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 12px 25px -12px rgba(30, 77, 58, 0.55);
}

.btn-primary:hover { background: var(--leaf-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}

.btn-ghost:hover { background: var(--leaf); color: #fff; transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #f2c53d, transparent 70%);
  top: -140px; right: -80px;
}

.hero::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #d4537a, transparent 70%);
  bottom: -160px; left: -100px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero p.lead { margin: 1.2rem 0 2rem; max-width: 34rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-rainbow {
  width: min(100%, 420px);
  height: auto;
}

.hero-badge {
  position: absolute;
  bottom: 6%;
  left: 4%;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badge .stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Karten-Grid (Leistungen) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  border-top: 5px solid transparent;
  border-image: var(--rainbow) 1;
  border-image-slice: 1;
  transition: transform 0.25s ease;
}

.card:hover { transform: translateY(-5px); }

.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
}

.icon--rose { background: linear-gradient(135deg, #d4537a, #c04a8c); }
.icon--gold { background: linear-gradient(135deg, #f2c53d, #f08a24); }
.icon--leaf { background: linear-gradient(135deg, #57a85a, #1e4d3a); }
.icon--blue { background: linear-gradient(135deg, #3f7fc1, #7a4fa3); }

.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Bewertungen ---------- */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  margin-bottom: 2rem;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--leaf);
}

.rating-meta { font-size: 0.95rem; color: var(--ink-soft); }
.rating-meta .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review .stars { color: var(--gold); letter-spacing: 2px; }

.review blockquote {
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
}

.review cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: auto;
}

.badge-example {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fdf0d5;
  color: #9a6a00;
  border: 1px dashed #e8a13d;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ---------- Split (Über uns / Kontakt) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-visual {
  border-radius: var(--radius);
  min-height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-visual--rainbow {
  background:
    radial-gradient(circle at 20% 25%, rgba(226, 73, 47, 0.85), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(242, 197, 61, 0.85), transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(63, 127, 193, 0.8), transparent 50%),
    radial-gradient(circle at 25% 80%, rgba(87, 168, 90, 0.85), transparent 45%),
    var(--leaf-deep);
}

.split-visual--leaf {
  background:
    radial-gradient(circle at 30% 30%, rgba(87, 168, 90, 0.7), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(242, 197, 61, 0.6), transparent 45%),
    linear-gradient(160deg, #1e4d3a, #143a2b);
}

.split-visual .caption {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: rgba(253, 249, 242, 0.94);
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Info-Liste (Kontakt) ---------- */
.info-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.5rem; }

.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.info-list .dot {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}

.info-list strong { display: block; font-size: 0.95rem; }
.info-list span, .info-list a { color: var(--ink-soft); font-size: 0.95rem; }
.info-list a.tel-big { font-size: 1.15rem; font-weight: 700; color: var(--leaf); text-decoration: none; }
.info-list a.tel-big:hover { text-decoration: underline; }

/* ---------- Galerie (CSS-Kacheln) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}

.tile {
  border-radius: var(--radius);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.tile:hover { transform: scale(1.03); }

.tile .tile-label {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  background: rgba(253, 249, 242, 0.92);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.tile--1 { background: radial-gradient(circle at 30% 30%, #f5a8c0, #d4537a 70%); }
.tile--2 { background: radial-gradient(circle at 65% 35%, #f9e08a, #e8a13d 75%); }
.tile--3 { background: radial-gradient(circle at 40% 60%, #8fd0a0, #1e4d3a 80%); }
.tile--4 { background: radial-gradient(circle at 60% 40%, #a8c8ee, #3f7fc1 75%); }
.tile--5 { background: radial-gradient(circle at 35% 35%, #c9a8e8, #7a4fa3 75%); }
.tile--6 { background: radial-gradient(circle at 55% 55%, #f5b28a, #e2492f 80%); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-deep));
  color: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: 3.2rem 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--rainbow);
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 36rem; margin: 0 auto 1.8rem; }

.cta-band .btn-primary { background: #fff; color: var(--leaf); }
.cta-band .btn-primary:hover { background: var(--cream-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--leaf-deep);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.8rem; }

.site-footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer ul { list-style: none; display: grid; gap: 0.5rem; font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Rechtseiten ---------- */
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 0.6rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.legal p, .legal li { color: var(--ink-soft); max-width: 60rem; }
.legal ul { padding-left: 1.4rem; display: grid; gap: 0.4rem; margin: 0.6rem 0; }

.placeholder { /* Felder sind gefuellt - keine Markierung mehr */ }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(43, 38, 32, 0.1);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open { max-height: 420px; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1.25rem 1.2rem;
  }

  .main-nav li { border-top: 1px solid rgba(43, 38, 32, 0.07); }
  .main-nav a { display: block; padding: 0.85rem 0; }
  .nav-cta { text-align: center; margin-top: 0.6rem; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section { padding: 3rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero { padding: 2.5rem 0 3.5rem; }
}
