:root {
  --bg: #fff7f8;
  --fg: #2a2a2a;
  --muted: #6b6b6b;
  --brand: #e7a6b1;
  --brand-dark: #cf7f8f;
  --card: #ffffff;
  --ring: rgba(231, 166, 177, .35);
  --radius: 18px;
  --shadow: 0 12px 35px rgba(0, 0, 0, .07);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, .06);
  --container: 1100px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px
}

a {
  color: var(--brand);
  text-decoration: none
}

a:hover {
  color: var(--brand-dark)
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

#contact-form {
  margin-left: 0;
  margin-right: auto;
}

header.site {
  position: sticky;
  top: 0;
  background: rgba(255, 247, 248, .85);
  backdrop-filter: saturate(150%) blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm)
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1;
  margin: 0
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 2px
}

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

.menu a {
  font-weight: 600;
  color: var(--fg)
}

.hero {
  position: relative;
  overflow: hidden
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 12px;
  /*display: inline-block; */
  padding: 8px 16px;
  border: 2px solid var(--brand);
  border-radius: 55px;
  background: rgba(255, 255, 255, .5)
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  appearance: none;
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  cursor: pointer
}

.btn:hover {
  background: var(--brand-dark)
}

.btn.secondary {
  background: #fff;
  color: var(--fg);
  border: 1px solid rgba(0, 0, 0, .08)
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 18px rgba(188, 24, 136, 0.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn-instagram svg {
  color: #fff;
  opacity: 0.95;
}

.btn-instagram:hover,
.btn-instagram:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(188, 24, 136, 0.18);
  outline: none;
}

.hero-card {
  background: var(--card);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

section {
  padding: 56px 0
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin: 0 0 8px;
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6)
}

.section-sub {
  color: var(--muted);
  margin: 0 0 24px
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center
}

.about-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}



.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.pill {
  display: inline-block;
  background: rgba(231, 166, 177, .12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px
}

.gallery>div {
  display: grid;
  gap: 20px
}

form {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto
}

.row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr
}

label {
  font-weight: 600;
  font-size: 14px
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  font: inherit
}

input:focus,
textarea:focus {
  outline: 3px solid var(--ring);
  border-color: var(--brand)
}

.agree {
  display: flex;
  gap: 0.75rem;           /* Abstand zwischen Checkbox und Text */
  align-items: flex-start;/* Checkbox oben an erster Textzeile ausrichten */
}

.agree input[type="checkbox"] {
  margin: 0.18rem 0 0 0;  /* leichte Vertikal-Anpassung */
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.agree label {
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

/* Optional: verhindert, dass Links im Label zu Zeilenumbrüchen führen */
.agree label a {
  white-space: nowrap;
}

.success,
.error {
  display: none;
  padding: 12px 14px;
  border-radius: 12px
}

.success {
  background: #e7f7ef;
  border: 1px solid #47c18a;
  color: #146c43
}

.error {
  background: #fff0f0;
  border: 1px solid #e58a8a;
  color: #7a1d1d
}

.site-footer {
  padding: 36px 0 56px;
  color: var(--muted);
  text-align: center
}

footer a {
  color: var(--fg)
}


.hero-wrap > div,
.about > div {
  width: 100%;
}

@media(max-width:960px) {

  .hero-wrap,
  .about {
    grid-template-columns: 1fr
  }

  .grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .menu {
    display: none
  }

  .hero h2 {
    font-size: 38px
  }

  .grid {
    grid-template-columns: 1fr
  }
}

.menu .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b4a45; /* Basisfarbe anpassen an dein Design (z.B. dunkles Braun) */
  margin-left: 0.4rem;
  padding: 0.2rem;
  transition: color 0.18s ease, transform 0.12s ease;
}
.menu .social-link svg { display: block; }

.menu .social-link:hover,
.menu .social-link:focus {
  color: #E1306C; /* Instagram-Pink als Akzent beim Hover */
  transform: translateY(-2px);
  outline: none;
}

/* Option: kleines Label auf großen Bildschirmen */
.menu .social-link::after {
  content: "Instagram";
  font-size: 0.85rem;
  margin-left: 0.5rem;
  display: none; /* set to inline-block if you want text beside icon */
  color: inherit;
}

/* Mobil: evtl. nur Icon zeigen */
@media (max-width: 720px) {
  .menu .social-link::after { display: none; }
}