/*
Theme Name:   PartyRing Child
Theme URI:    https://www.partyring.ch
Description:  Child Theme für Kadence Theme — partyring.ch Relaunch 2025
Author:       partyring.ch
Author URI:   https://www.partyring.ch
Template:     kadence
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  partyring-child
*/

/* ============================================================
   GOOGLE FONTS — Yanone Kaffeesatz
   Eingebunden via functions.php (wp_enqueue_style)
   Gewichte: 300 (Light), 400 (Regular), 500 (Medium),
             600 (SemiBold), 700 (Bold)
   ============================================================ */

/* ============================================================
   DESIGN TOKENS — Corporate Identity partyring.ch
   PANTONE 1585 C  →  #FF701A  (Primärorange)
   PANTONE 446 C   →  #3F4444  (Anthrazit-Dunkel)
   ============================================================ */
:root {
  /* --- Markenfarben --- */
  --pr-orange:        #FF701A;   /* PANTONE 1585 C — Primär */
  --pr-orange-dark:   #E05A08;   /* Hover-Zustand Buttons */
  --pr-orange-light:  #FFF4EE;   /* Helle Flächen, Badges */
  --pr-orange-border: #FFD4B3;   /* Border auf hellem Hintergrund */

  --pr-dark:          #3F4444;   /* PANTONE 446 C — Anthrazit */
  --pr-dark-deep:     #2A2E2E;   /* Footer, Hero-Hintergrund */
  --pr-dark-muted:    #6B7070;   /* Sekundärtext auf Dunkel */
  --pr-dark-subtle:   #A0A8A8;   /* Tertiärtext auf Dunkel */

  /* --- Neutrale Töne --- */
  --pr-bg:            #F8F6F3;   /* Seitenhintergrund */
  --pr-white:         #FFFFFF;
  --pr-border:        #E0DDD8;   /* Standard-Border */
  --pr-text:          #1D1D1B;   /* Haupttext */
  --pr-muted:         #6B7068;   /* Sekundärtext */

  /* --- Typografie --- */
  --pr-font:          'Yanone Kaffeesatz', sans-serif;

  /* --- Abstände --- */
  --pr-radius-sm:     6px;
  --pr-radius-md:     8px;
  --pr-radius-lg:     12px;
  --pr-radius-pill:   999px;

  /* --- Schatten (sparsam einsetzen) --- */
  --pr-shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --pr-shadow-md:     0 2px 12px rgba(0,0,0,0.08);
}

/* ============================================================
   GLOBALE TYPOGRAFIE
   ============================================================ */
body,
.site,
.entry-content,
.wp-block-paragraph,
p,
a,
li,
td,
th,
input,
textarea,
select,
button,
label {
  font-family: var(--pr-font) !important;
  font-weight: 400;
  letter-spacing: 0.2px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.wp-block-heading {
  font-family: var(--pr-font) !important;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--pr-dark);
}

/* Kadence-spezifische Headline-Overrides */
.kadence-title,
.wp-block-kadence-advancedheading .kt-adv-heading {
  font-family: var(--pr-font) !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header,
#masthead {
  background-color: var(--pr-white) !important;
  border-bottom: 0.5px solid var(--pr-border) !important;
  font-family: var(--pr-font) !important;
}

/* Logo-Text (falls kein Bild-Logo) */
.site-title,
.site-title a,
.custom-logo-link {
  font-family: var(--pr-font) !important;
  font-weight: 700;
  color: var(--pr-orange) !important;
  font-size: 26px;
  letter-spacing: 0.5px;
}

/* Navigations-Links */
.main-navigation a,
.kadence-navigation a,
#site-navigation a {
  font-family: var(--pr-font) !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--pr-muted) !important;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.main-navigation a:hover,
.kadence-navigation a:hover {
  color: var(--pr-orange) !important;
}

/* CTA-Button in Navigation */
.header-cta-btn,
.nav-cta-button,
.wp-block-button.is-style-fill .wp-block-button__link {
  background-color: var(--pr-orange) !important;
  color: var(--pr-white) !important;
  font-family: var(--pr-font) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px !important;
  border-radius: var(--pr-radius-pill) !important;
  border: none !important;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.header-cta-btn:hover,
.nav-cta-button:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: var(--pr-orange-dark) !important;
}

/* ============================================================
   BUTTONS — Global
   ============================================================ */
.wp-block-button__link,
.button,
button[type="submit"],
input[type="submit"],
.woocommerce button.button,
.et_pb_button {
  font-family: var(--pr-font) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--pr-radius-md) !important;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Primär-Button */
.wp-block-button.is-style-fill .wp-block-button__link,
.btn-primary,
.button-primary {
  background-color: var(--pr-orange) !important;
  color: var(--pr-white) !important;
  border: none !important;
  font-size: 18px;
  padding: 12px 24px !important;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover,
.btn-primary:hover {
  background-color: var(--pr-orange-dark) !important;
  transform: translateY(-1px);
}

/* Sekundär-Button (Outline) */
.wp-block-button.is-style-outline .wp-block-button__link,
.btn-secondary {
  background-color: transparent !important;
  color: var(--pr-dark) !important;
  border: 1px solid var(--pr-dark) !important;
  font-size: 17px;
  padding: 11px 20px !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.12) !important;
  color: var(--pr-white) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO-SECTION
   Kadence-Block oder klassischer Seiten-Hero
   ============================================================ */
.hero-section,
.wp-block-cover.is-style-hero,
.kadence-hero-section {
  background-color: var(--pr-dark-deep) !important;
  font-family: var(--pr-font) !important;
}

.hero-section h1,
.hero-section .hero-headline {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--pr-white);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.hero-section h1 .highlight,
.hero-section h1 em,
.hero-section h1 strong {
  color: var(--pr-orange);
  font-style: normal;
}

.hero-section p,
.hero-section .hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: #B0B5B5;
  line-height: 1.65;
  letter-spacing: 0.2px;
}

/* Hero-Badge Pill */
.hero-badge {
  display: inline-block;
  background: rgba(255, 112, 26, 0.15);
  border: 0.5px solid rgba(255, 112, 26, 0.4);
  color: #FF9A5C;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: var(--pr-radius-pill);
  margin-bottom: 14px;
  font-family: var(--pr-font);
  letter-spacing: 0.3px;
}

/* Hero-Stats-Leiste */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--pr-orange);
  font-family: var(--pr-font);
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 300;
  color: #8FA8A8;
  font-family: var(--pr-font);
  margin-top: 2px;
}

/* ============================================================
   WETTER-LEISTE
   ============================================================ */
.weather-bar {
  background: var(--pr-white);
  border-bottom: 0.5px solid var(--pr-border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--pr-font);
}

.weather-bar .weather-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-text);
}

.weather-bar .weather-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--pr-muted);
}

.weather-bar .weather-cta {
  margin-left: auto;
  background: var(--pr-orange);
  color: var(--pr-white);
  padding: 6px 16px;
  border-radius: var(--pr-radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--pr-font);
  text-decoration: none;
}

/* ============================================================
   SECTIONS — Allgemein
   ============================================================ */
.section-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--pr-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--pr-font);
  display: block;
}

.section-headline,
.section h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--pr-dark);
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: var(--pr-font) !important;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--pr-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  font-family: var(--pr-font);
}

/* Wechselnde Hintergründe */
.section-white  { background-color: var(--pr-white); }
.section-gray   { background-color: var(--pr-bg); }
.section-dark   { background-color: var(--pr-dark-deep); }

/* ============================================================
   BUCHUNGS-BOX (Regiondo-Umgebung)
   ============================================================ */
.booking-wrapper {
  background: var(--pr-white);
  border: 0.5px solid var(--pr-border);
  border-radius: var(--pr-radius-lg);
  padding: 24px;
  font-family: var(--pr-font);
}

.booking-wrapper .booking-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pr-dark);
  margin-bottom: 14px;
  font-family: var(--pr-font);
}

/* Regiondo iFrame anpassen */
.regiondo-widget iframe,
.rdo-booking-widget iframe {
  border: none !important;
  width: 100% !important;
  border-radius: var(--pr-radius-md);
}

/* ============================================================
   PREISKARTEN
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-card {
  background: var(--pr-bg);
  border: 0.5px solid var(--pr-border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  font-family: var(--pr-font);
  transition: transform 0.2s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}

.price-card.featured {
  background: var(--pr-dark);
  border-color: var(--pr-dark);
}

.price-card .price-duration {
  font-size: 14px;
  font-weight: 400;
  color: var(--pr-muted);
  margin-bottom: 4px;
}

.price-card.featured .price-duration {
  color: #A0A8A8;
}

.price-card .price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--pr-dark);
  font-family: var(--pr-font);
}

.price-card.featured .price-amount {
  color: var(--pr-orange);
}

.price-card .price-currency {
  font-size: 12px;
  color: #BBBBBB;
  font-family: var(--pr-font);
}

.price-card.featured .price-currency {
  color: #8FA8A8;
}

.price-card .price-btn {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  border: 0.5px solid var(--pr-border);
  border-radius: var(--pr-radius-sm);
  padding: 6px;
  font-size: 14px;
  font-family: var(--pr-font);
  color: var(--pr-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-card.featured .price-btn {
  background: var(--pr-orange);
  border-color: var(--pr-orange);
  color: var(--pr-white);
  font-weight: 600;
}

/* ============================================================
   SCHRITT-PROZESS (4 Schritte)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-item {
  text-align: center;
  font-family: var(--pr-font);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pr-orange-light);
  color: var(--pr-orange);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-family: var(--pr-font);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--pr-dark);
  margin-bottom: 4px;
  font-family: var(--pr-font);
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--pr-muted);
  line-height: 1.5;
  font-family: var(--pr-font);
}

/* ============================================================
   BEWERTUNGSKARTEN
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--pr-white);
  border: 0.5px solid var(--pr-border);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--pr-font);
}

.review-stars {
  color: var(--pr-orange);
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 15px;
  font-weight: 300;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: var(--pr-font);
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--pr-muted);
  font-family: var(--pr-font);
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pr-orange-light);
  border-radius: var(--pr-radius-pill);
  padding: 5px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-orange);
  margin-bottom: 16px;
  font-family: var(--pr-font);
}

/* ============================================================
   FAQ-BEREICH
   Schema.org FAQ Markup kompatibel
   ============================================================ */
.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--pr-white);
  border: 0.5px solid var(--pr-border);
  border-radius: var(--pr-radius-md);
  overflow: hidden;
  font-family: var(--pr-font);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--pr-dark);
  cursor: pointer;
  font-family: var(--pr-font);
  list-style: none;
  user-select: none;
}

.faq-question::after {
  content: '+';
  color: var(--pr-orange);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

details[open] .faq-question::after,
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  font-weight: 300;
  color: #555555;
  line-height: 1.65;
  padding: 0 18px 14px;
  font-family: var(--pr-font);
}

/* ============================================================
   CTA-SECTION
   ============================================================ */
.cta-section {
  background: var(--pr-dark);
  padding: 56px 24px;
  text-align: center;
  font-family: var(--pr-font);
}

.cta-section h2,
.cta-section .cta-headline {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: 10px;
  font-family: var(--pr-font) !important;
  letter-spacing: 0.5px;
}

.cta-section p,
.cta-section .cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: #A0A8A8;
  margin-bottom: 28px;
  font-family: var(--pr-font);
}

.cta-section .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
#colophon {
  background-color: var(--pr-dark-deep) !important;
  font-family: var(--pr-font) !important;
  padding: 40px 24px 20px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--pr-orange);
  font-family: var(--pr-font);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 300;
  color: #6A7070;
  line-height: 1.6;
  font-family: var(--pr-font);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: #8FA8A8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-family: var(--pr-font);
}

.site-footer a,
#colophon a {
  font-size: 15px;
  color: #556060 !important;
  font-family: var(--pr-font) !important;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
#colophon a:hover {
  color: var(--pr-orange) !important;
}

.footer-divider {
  border: none;
  border-top: 0.5px solid #2A3232;
  margin: 24px 0 16px;
}

.footer-copyright {
  font-size: 13px;
  color: #405050;
  font-family: var(--pr-font);
  font-weight: 300;
}

/* ============================================================
   FORMULARE — Kontakt / WPForms
   ============================================================ */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea,
.contact-form input,
.contact-form textarea {
  font-family: var(--pr-font) !important;
  font-size: 16px;
  border: 0.5px solid var(--pr-border) !important;
  border-radius: var(--pr-radius-md) !important;
  padding: 10px 14px !important;
  color: var(--pr-text) !important;
  background: #FAFAFA !important;
  transition: border-color 0.2s ease;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pr-orange) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 112, 26, 0.12) !important;
}

.wpforms-form label,
.contact-form label {
  font-family: var(--pr-font) !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--pr-text) !important;
  margin-bottom: 5px;
}

.wpforms-submit-container button,
.wpforms-form .wpforms-submit {
  background: var(--pr-orange) !important;
  color: var(--pr-white) !important;
  font-family: var(--pr-font) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  border-radius: var(--pr-radius-md) !important;
  border: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wpforms-submit-container button:hover,
.wpforms-form .wpforms-submit:hover {
  background: var(--pr-orange-dark) !important;
}

/* ============================================================
   RESPONSIVE GRUNDREGELN
   ============================================================ */
@media (max-width: 900px) {
  .site-header .main-navigation {
    display: none;
  }

  .hero-stats {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 19px !important; }

  .cta-section {
    padding: 40px 16px;
  }

  .hero-badge {
    font-size: 12px;
  }
}

/* ============================================================
   UTILITY-KLASSEN
   (in Kadence-Blöcke als "Additional CSS Class" eintragen)
   ============================================================ */

/* Orangefarbener Akzent-Text */
.text-orange   { color: var(--pr-orange) !important; }
.text-dark     { color: var(--pr-dark) !important; }
.text-muted    { color: var(--pr-muted) !important; }
.text-white    { color: var(--pr-white) !important; }

/* Hintergrundfarben */
.bg-orange     { background-color: var(--pr-orange) !important; }
.bg-dark       { background-color: var(--pr-dark) !important; }
.bg-dark-deep  { background-color: var(--pr-dark-deep) !important; }
.bg-light      { background-color: var(--pr-orange-light) !important; }
.bg-gray       { background-color: var(--pr-bg) !important; }

/* Info-Strip (z.B. Gutschein-Hinweis) */
.info-strip {
  background: var(--pr-orange-light);
  border: 0.5px solid var(--pr-orange-border);
  border-radius: var(--pr-radius-md);
  padding: 12px 16px;
  font-size: 15px;
  color: #993D00;
  font-family: var(--pr-font);
}

/* WhatsApp-Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--pr-white) !important;
  padding: 10px 18px;
  border-radius: var(--pr-radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--pr-font) !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}

.whatsapp-btn:hover {
  background: #1fb855;
}

/* Pill-Badge */
.badge-orange {
  display: inline-block;
  background: var(--pr-orange-light);
  color: var(--pr-orange);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--pr-radius-pill);
  font-family: var(--pr-font);
  letter-spacing: 0.05em;
}


/* ================================================
   WETTER-BAR 5-TAGE VORSCHAU
   ================================================ */
.weather-bar--extended {
  flex-wrap: wrap;
  gap: 0;
  padding: 10px 20px;
  align-items: center;
}
.weather-bar__current {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.weather-forecast {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  margin: 0 12px;
}
.weather-day {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(63,68,68,0.06);
  min-width: 48px;
}
.weather-day-name {
  font-size: 11px !important;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.weather-day-icon {
  font-size: 18px;
  line-height: 1.2;
}
.weather-day-temp {
  font-size: 13px !important;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .weather-forecast {
    display: none !important;
  }
}

/* ================================================
   CUSTOMIZER-ERSATZ: alle UI-Overrides
   ================================================ */

#primary-menu li.ncta a {
  background-color: #FF701A !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
#primary-menu li.ncta a:hover { background-color: #e05a08 !important; }

body, p, li, td, th, label, input, textarea, select, button,
.entry-content, .wp-block-paragraph, .hero-sub, .ssub, .step-desc,
.review-text, .weather-text {
  font-family: Arial, Helvetica, sans-serif !important;
}
h1, h2, h3, h4, h5, h6, .wp-block-heading {
  font-family: 'Yanone Kaffeesatz', sans-serif !important;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span,
.wp-block-heading span { font-family: inherit !important; }

a.price-card-link, a.price-card-link:link, a.price-card-link:visited,
a.price-card-link:hover, a.price-card-link:active {
  display: block !important; text-decoration: none !important;
  color: inherit !important; border-bottom: none !important;
  box-shadow: none !important; outline: none !important; width: 100%;
}
.price-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); cursor: pointer; }

html body .wp-block-button.btn-secondary {
  background: transparent !important; border: none !important;
  padding: 0 !important; box-shadow: none !important;
}

.wp-block-button__link:hover, .wp-element-button:hover {
  filter: brightness(0.85) !important; transform: translateY(-1px);
  transition: filter 0.15s ease, transform 0.15s ease;
}
html body .wp-block-button.btn-secondary .wp-block-button__link:hover,
html body .wp-block-button.btn-secondary .wp-element-button:hover {
  background-color: #1a4f8a !important; filter: none !important; transform: translateY(-1px);
}
a.weather-cta:hover { filter: brightness(0.85) !important; transform: translateY(-1px); }

.weather-bar { background-color: #f0f4f8 !important; border: 1px solid #d0d8e0 !important; border-radius: 8px; }
.weather-text { color: #1d1d1b !important; font-weight: 600; }
.weather-sub { color: #3F4444 !important; }
.weather-day { background-color: #e2e8f0 !important; min-height: 90px !important; min-width: 72px !important; padding: 6px 8px !important; }
.weather-day-name { color: #3F4444 !important; opacity: 1 !important; font-size: 12px !important; font-weight: 700 !important; }
.weather-day-temp { color: #1d1d1b !important; font-weight: 700 !important; font-size: 14px !important; }
.weather-day-icon .emoji, .weather-day-icon { font-size: 36px !important; line-height: 1; display: block !important; }
.weather-icon .emoji, .weather-icon { font-size: 40px !important; line-height: 1; }

/* 4 SCHRITTE */
.step-item {
  text-align: center;
  padding: 28px 16px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e8ecf0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important; }
.step-icon-wrap {
  position: relative;
  display: block !important;
  text-align: center;
  margin-bottom: 16px;
}
.step-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 76px !important;
  height: 76px !important;
  background: linear-gradient(135deg, #FF701A 0%, #ff9a57 100%) !important;
  border-radius: 50% !important;
  font-size: 34px !important;
  line-height: 76px !important;
  margin: 0 auto !important;
  box-shadow: 0 4px 16px rgba(255,112,26,0.30) !important;
}
.step-badge {
  position: absolute !important;
  top: 0 !important;
  right: calc(50% - 44px) !important;
  width: 24px !important;
  height: 24px !important;
  background: #3F4444 !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: Arial, sans-serif !important;
  border: 2px solid #fff !important;
  line-height: 1 !important;
}
.step-title {
  font-family: 'Yanone Kaffeesatz', sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #1d1d1b !important;
  margin: 0 0 8px 0 !important;
}
.step-desc {
  font-size: 14px !important;
  color: #5a6068 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}
.step-number { display: none !important; }
.steps-grid { gap: 16px !important; }

/* Logo +30% Grösse */
.custom-logo-link img,
.custom-logo {
  max-width: 234px !important;
  width: 234px !important;
  height: auto !important;
}

/* Preiszahlen in Yanone Kaffeesatz */
.price-amount {
  font-family: 'Yanone Kaffeesatz', sans-serif !important;
  font-size: 48px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

/* Wetter-Bar 5-Tage-Vorschau: nebeneinander */
.weather-days {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  align-items: center !important;
}
.weather-day {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #e2e8f0 !important;
  border-radius: 8px !important;
  min-width: 60px !important;
  min-height: 80px !important;
  padding: 6px 8px !important;
  gap: 2px !important;
}
.weather-day-name {
  color: #3F4444 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.weather-day-icon {
  font-size: 28px !important;
  line-height: 1 !important;
}
.weather-day-temp {
  color: #1d1d1b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* Wetter-Vorschau: Link-Hover */
a.weather-days-link {
  text-decoration: none;
  display: flex;
  flex-direction: row;
}
a.weather-days-link:hover .weather-days {
  opacity: 0.85;
}
a.weather-days-link:hover .weather-day {
  background-color: #cdd5e0 !important;
}
a.weather-days-link .weather-day {
  transition: background-color 0.15s ease;
}

/* ============================
   MOBILE FIXES (390px)
   ============================ */

@media (max-width: 600px) {

  /* Hero-Stats: 2x2 Grid statt untereinander */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 8px !important;
    padding: 16px !important;
  }
  .hero-stats .wp-block-column {
    text-align: center !important;
    min-width: 0 !important;
  }
  .hero-stat-value {
    font-size: 1.4rem !important;
    margin-bottom: 2px !important;
  }
  .hero-stat-label {
    font-size: 0.75rem !important;
  }

  /* Wetterbar: Kompakteres Layout auf Mobile */
  .weather-bar {
    flex-wrap: wrap !important;
    gap: 8px 6px !important;
    padding: 10px 12px !important;
  }
  .weather-icon {
    font-size: 1.6rem !important;
    flex-shrink: 0 !important;
  }
  .weather-info {
    flex: 1 1 120px !important;
    min-width: 0 !important;
  }
  .weather-text {
    font-size: 0.8rem !important;
    white-space: normal !important;
  }
  .weather-sub {
    font-size: 0.7rem !important;
  }
  .weather-days-link {
    order: 3 !important;
    width: 100% !important;
  }
  .weather-days {
    justify-content: space-around !important;
    width: 100% !important;
    gap: 4px !important;
  }
  .weather-day {
    min-width: 36px !important;
    font-size: 0.7rem !important;
  }
  .weather-cta {
    order: 4 !important;
    width: 100% !important;
    text-align: center !important;
    padding: 10px !important;
    font-size: 0.9rem !important;
  }
}
