/* ============================================
   GLOBAL BRANDING VARIABLES
   ============================================ */
:root {
  --brand-darkblue: #2C3E50;
  --brand-beige: #F8F1E4;
  --brand-altrosa: #B2798F;
  --brand-kupfer: #C47E57;
  --brand-rosegrey: #DDD6D0;
  --brand-black: #333333;
}

/* ============================================
   GLOBAL BACKGROUND & BODY
   ============================================ */
body {
  background-color: var(--brand-beige) !important;
  font-family: "Work Sans", sans-serif;
  color: var(--brand-darkblue);
  line-height: 1.6;
}

/* ============================================
   HEADINGS – ruhige, weiche Premium-Optik
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", serif;
  color: var(--brand-darkblue);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
}

h2 {
  font-size: 2.3rem;
  font-weight: 500;
}

h3 {
  font-size: 1.6rem;
  font-weight: 500;
}

/* ============================================
   TEXT / PARAGRAPH
   ============================================ */
p, li {
  font-size: 1.1rem;
  color: var(--brand-darkblue);
}

/* ============================================
   BUTTON – weiche Kanten, dezenter Schatten, sanfter Hover
   ============================================ */
button,
.z-btn,
a.button,
input[type="submit"],
input[type="button"] {
  background-color: var(--brand-altrosa) !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.12);  /* dezenter Schatten */
}

button:hover,
.z-btn:hover,
a.button:hover,
input[type="submit"]:hover {
  background-color: var(--brand-kupfer) !important;
  transform: translateY(-2px); /* leichte Anhebung */
  box-shadow: 0px 6px 12px rgba(0,0,0,0.18); /* etwas stärkerer Hover-Schatten */
}

/* ============================================
   SECTIONS & ROWS – harmonische Abstände
   ============================================ */
section,
.z-row {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background-color: var(--brand-beige);
 }

/* ============================================
   Sticky Menü
   ============================================ */
.sticky-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #F8F1E4; /* dein Beige */
}

/* ============================================
   Abschnitte bleiben unter Menü
   ============================================ */
[id]::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}
/* ============================================
   LINKS
   ============================================ */
/*
a {
  color: var(--brand-altrosa);
  text-decoration: none;
}

a:hover {
  color: var(--brand-kupfer);
}
*/
a {
  color: var(--brand-darkblue);
  text-decoration: none;
}

a:hover {
  color: var(--brand-black);
}


/* ============================================
   INPUT-FELDER – Freebie Opt-In
   ============================================ */
input[type="text"],
input[type="email"],
textarea {
  background-color: #fff !important;
  border: 2px solid var(--brand-rosegrey) !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-size: 1.05rem !important;
  width: 100% !important;
}

input:focus,
textarea:focus {
  border-color: var(--brand-altrosa) !important;
  outline: none !important;
}

/* ============================================
   SPALTEN & KARTEN – runde, warme Optik
   ============================================ */
.z-col {
  border-radius: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--brand-rosegrey) !important;
  color: var(--brand-darkblue) !important;
  padding: 40px 0 !important;
  font-size: 0.95rem;
}
