/* Grundlayout */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4a3b36;

  /* Verlaufsfarbe */
  background: linear-gradient(
    180deg,
    #fbbf8f 0%,     /* warmes orange-peach */
    #f7a7c0 40%,   /* zartes rosé */
    #d9b5e8 100%   /* sanftes lavendel-lila */
  );

  /* WICHTIG: Gradient auf volle Seitenhöhe strecken */
  background-repeat: no-repeat;
  background-attachment: scroll; 
  background-size: 100% 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER & NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0.5rem 0;
}

/* Brand */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7dde2, #f6c7a6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #4a3b36;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.brand-text-main {
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-text-sub {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Desktop-Navigation standardmäßig aus: wir schalten sie nur auf großen Screens an */

.main-nav {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4a3b36;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d9a25f;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger – standardmäßig an */

.hamburger {
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  padding: 0.25rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #4a3b36;
  margin: 4px 0;
}

/* Mobile-Menü */

.nav-mobile {
  display: none;
  background: rgba(255, 248, 245, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile a {
  text-decoration: none;
  color: #4a3b36;
  font-size: 1rem;
}

/* Wird durch JS gesetzt, wenn das Menü offen ist */
.nav-mobile-open {
  display: block;
}

/* Footer */

.site-footer {
  background: rgba(255, 248, 245, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-size: 0.85rem;
}

/* Responsive: ab 769px Desktop-Menü anzeigen, Hamburger verstecken */

@media (min-width: 769px) {
  .main-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}
/* ===== ANGEBOTS-GRID ===== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== ANGEBOTS-KARTEN ===== */

.offer-card {
  background: linear-gradient(135deg, #e9fdf1 0%, #c8f0d6 100%);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}


.offer-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  color: #4a3b36;
}

.offer-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a3b36;
}

/* ===== KLEINES TAG ÜBER DER ÜBERSCHRIFT ===== */

.offer-tag {
  background-color: #f4b7a4; /* warme, sichtbare Tag-Farbe */
  color: #5a2f2f;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
/* ===== LINK-STYLING GLOBAL ===== */

a {
  color: #4a3b36;                 /* warmes Dunkelbraun */
  text-decoration: none;          /* KEINE Unterstreichung */
  transition: color 0.2s ease;
}

a:hover {
  color: #c77f68;                 /* warmes Peach-Rosé beim Hover */
  text-decoration: none;          /* sicherstellen */
}

a:visited {
  color: #4a3b36;                 /* gleiche Farbe wie normal */
}

.site-footer a {
  color: #4a3b36;                 /* Footer-Links immer warm, nicht blau */
}

.site-footer a:hover {
  color: #c77f68;
}
/* ===== HIGHLIGHT-ABSCHNITT – WARMHERZ-LOOK ===== */

.highlight-section {
  background: rgba(255, 235, 228, 0.45); /* zartes Peach-Rosé, transparent */
  backdrop-filter: blur(6px);             /* feiner Glas-Effekt, sehr weich */
  padding: 2rem;
  border-radius: 22px;
  margin: 3rem 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3); /* sehr leichter, warmer Rahmen */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); /* weicher Schatten */
}

.highlight-section h2 {
  margin-top: 0;
  color: #4a3b36;
}

.highlight-section p,
.highlight-section li {
  font-size: 1rem;
  line-height: 1.55;
  color: #4a3b36;
}

.highlight-section ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.highlight-section li {
  margin-bottom: 0.6rem;
}
/* ===== KONTAKTSEITE ===== */

.contact-page {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .contact-page {
    max-width: 90%;
  }
}

}

.contact-symbol {
  font-size: 3rem;
  color: #c27a92; /* warmes rosé-lila */
  margin: 1.2rem 0 0.5rem;
  opacity: 0.85;
}

.contact-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-email a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a3b36;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 59, 54, 0.3);
  padding-bottom: 3px;
}

.contact-email a:hover {
  color: #c77f68;
  border-bottom-color: #c77f68;
}

.social-placeholder {
  margin-top: 2.5rem;
  padding: 1.4rem 1rem;
  border-radius: 22px;
  background: rgba(255, 235, 228, 0.45);
  backdrop-filter: blur(6px);
  font-size: 0.95rem;
  color: #4a3b36;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
/* ==========================================
   WARMHERZ-LOGO – funktionierende Herzform
   ========================================== */

.warmheart-logo {
  position: relative;
  width: 80px;      /* Logo-Größe – kannst du später anpassen */
  height: 72px;
  margin: 1.5rem auto;
}

/* Herz: über polygon, läuft in allen modernen Browsern */
.wh-heart {
  position: absolute;
  inset: 0;
  margin: 0 auto;

  background: linear-gradient(
    135deg,
    #e64747 0%,     /* Rot */
    #f26a7e 45%,    /* Rosé */
    #d9b5e8 100%    /* Lila */
  );

  clip-path: polygon(
    50% 90%,
    20% 65%,
    7% 48%,
    5% 32%,
    10% 18%,
    22% 8%,
    35% 7%,
    45% 12%,
    50% 18%,
    55% 12%,
    65% 7%,
    78% 8%,
    90% 18%,
    95% 32%,
    93% 48%,
    80% 65%
  );

  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* Das W – kannst du lassen wie bei dir, nur der Vollständigkeit halber: */
.wh-w {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 700;

  color: rgba(255, 248, 245, 0.96);
  text-shadow: 0 2px 4px rgba(0,0,0,0.28);
  pointer-events: none;
}
/* ==========================================
   MINI-WARMHERZ-LOGO FÜR DEN HEADER
   ========================================== */

.warmheart-logo.header-logo {
  width: 34px;        /* kompakt, aber sichtbar */
  height: 30px;
  margin: 0;          /* kein zusätzlicher Abstand im Header */
}

/* Herz kompakter & runder für Header */
.warmheart-logo.header-logo .wh-heart {
  width: 34px;
  height: 30px;

  clip-path: polygon(
    50% 88%,
    28% 68%,
    15% 52%,
    10% 38%,
    12% 26%,
    20% 16%,
    32% 14%,
    41% 18%,
    50% 26%,
    59% 18%,
    68% 14%,
    80% 16%,
    88% 26%,
    90% 38%,
    85% 52%,
    72% 68%
  );
}


/* kleines W */
.warmheart-logo.header-logo .wh-w {
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* ===== SOCIAL ICONS – sauber, rund, perfekt zentriert ===== */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1rem 0 1.5rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 240, 235, 0.75);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;

  transition: all 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 248, 245, 0.92);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.social-icon-symbol {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a3b36;
  letter-spacing: 0.02em;
}
.flyer-downloads {
  margin-top: 2.5rem;
  padding: 1.5rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 235, 228, 0.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.flyer-downloads h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: #4a3b36;
}

.flyer-downloads p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.flyer-button {
  display: inline-block;
  margin-right: 0.7rem;
  margin-bottom: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7c8a8, #f4aac4);
  color: #4a3b36;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.flyer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

