/* =========================================
   SECTIONS
========================================= */
.section {
  padding: 60px 0;
}

.section--light {
  background: #fff7e6; /* helles Beige */
}

.section--cta {
  background: #e89b2c;
  color: white;
  text-align: center;
}
/* =========================================
   FEATURES GRID
========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f2d7a6; /* zarter gelb-beiger Rand */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature h3 {
  margin-top: 0;
  color: #c46a1b; /* dunkelorange */
}
/* =========================================
   BENEFITS LIST
========================================= */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.benefits-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: "✔";
  color: #e89b2c; /* orange */
  position: absolute;
  left: 0;
  top: 0;
}
/* =========================================
   REGIONS LIST
========================================= */
.regions-list {
  columns: 2;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.regions-list li {
  margin-bottom: 10px;
}

.regions-list a {
  color: #c46a1b;
  text-decoration: none;
  font-weight: 600;
}

.regions-list a:hover {
  text-decoration: underline;
}
/* =========================================
   TESTIMONIALS
========================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f2d7a6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial blockquote {
  margin: 0 0 10px 0;
  font-style: italic;
  color: #5a3e1b;
}
/* =========================================
   REGION BUTTON
========================================= */
.region-btn {
    background: white;
    color: #5a3e1b;
    border: 2px solid #e89b2c;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.region-btn:hover {
    background: #fff3d6;
    transform: translateY(-3px);
}

body.dark .region-btn {
    background: #333;
    color: #fff;
    border-color: #666;
}

body.dark .region-btn:hover {
    background: #444;
}
/* =========================================
   WAPPEN
========================================= */
/* GRID */
.wappen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

/* Formular */
.wappen-form {
    margin: 0;
}

.wappen-btn {
    width: 100%;
    background: #fff7e6;
    border: 2px solid #f2d7a6;
    border-radius: 12px;
    padding: 18px 12px;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    font-size: 1rem;
    font-weight: 600;
    color: #5a3e1b;

    /* 3D-Lift Basis */
    box-shadow: 0 4px 0 rgba(0,0,0,0.25);
    transition:
        transform 0.25s cubic-bezier(.15,.75,.35,1.25),
        box-shadow 0.25s cubic-bezier(.15,.75,.35,1.25),
        background-color 0.2s ease;
}

.wappen-btn img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
}

/* Hover: Karte hebt sich ab */
.wappen-btn:hover {
    transform: translateY(-8px);
    background: #ffefcc;
    box-shadow:
        0 12px 0 rgba(0,0,0,0.25),
        0 16px 20px rgba(0,0,0,0.15);
}

/* Klick: Karte drückt sich ein */
.wappen-btn:active {
    transform: translateY(-3px);
    box-shadow:
        0 6px 0 rgba(0,0,0,0.25),
        0 10px 14px rgba(0,0,0,0.12);
}
/* =========================================
   DARKMODE
========================================= */

body.dark .wappen-btn {
    background: #222;
    border-color: #444;
    color: #fff;
    box-shadow: 0 4px 0 rgba(255,255,255,0.15);
}

body.dark .wappen-btn:hover {
    background: #2c2c2c;
    box-shadow:
        0 12px 0 rgba(255,255,255,0.15),
        0 16px 20px rgba(0,0,0,0.4);
}

body.dark .wappen-btn img {
    filter: drop-shadow(0 3px 4px rgba(255,255,255,0.15));
}

.kat-click {
    cursor: pointer;
}
/* Buttonfelder */
.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.feature-form {
	display: block;
}

.feature-button {
	background: none;
	border: none;
	padding: 0;
	width: 100%;
	text-align: left;
	cursor: pointer;
}

.feature-button article:hover {
	transform: translateY(-3px);
	transition: 0.2s ease;
}
/* ============================================
   DARKMODE FIX FÜR FUNKTIONEN-BEREICH
   ============================================ */

body.dark .section--light {
    background: #222 !important;
    color: #eee !important;
}

body.dark .features-grid .feature {
    background: #2a2a2a !important;
    border-color: #444 !important;
    color: #eee !important;
}

body.dark .feature h3 {
    color: #fff !important;
}

body.dark .feature p {
    color: #ddd !important;
}

body.dark .feature-icon {
    filter: brightness(1.3);
}

body.dark .feature-button {
    background: transparent !important;
}

body.dark .feature-button:hover .feature {
    background: #333 !important;
}
/* Darkmode-Fix für Testimonials */
body.dark #stimmen.section--light {
    background: #1e1e1e !important;
    color: #ddd !important;
}

body.dark #stimmen .testimonial blockquote {
    background: #1e1e1e !important;
    color: #aaa !important; /* Zitat */
}

body.dark #stimmen .testimonial figcaption {
    color: #bbb !important; /* Name */
}
.highlight-section {
    margin: 60px auto;
}

.highlight-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    padding-bottom: 10px;
    scroll-behavior: auto; /* wichtig: NICHT smooth hier */
}

.highlight-slider::-webkit-scrollbar {
    height: 8px;
}

.highlight-slider::-webkit-scrollbar-thumb {
    background: rgba(196,106,27,0.45);
    border-radius: 4px;
}

.highlight-box {
    min-width: 260px;
    background: #fffdf8;
    border: 3px solid rgba(196,106,27,0.45);
    border-radius: 14px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 12px 28px rgba(196,106,27,0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(196,106,27,0.25);
}
.highlight-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(196,106,27,0.25);
}
.highlight-box {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.highlight-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-box.hidden {
    opacity: 0;
    transform: translateY(10px);
}
.highlight-box {
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 10px rgba(196,106,27,0.10);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out,
        box-shadow 0.6s ease-out;
}

.highlight-box.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(196,106,27,0.25);
}

.highlight-box.hidden {
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 10px rgba(196,106,27,0.10);
}
#highlights {
    padding-top: 100px;
}
/* Darkmode für Highlight-Slider */
body.dark .highlight-box {
    background: #1e1e1e !important;
    color: #ddd !important;
    border-color: rgba(196,106,27,0.35) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45) !important;
}

body.dark .highlight-box h3,
body.dark .highlight-box p {
    color: #ddd !important;
}

body.dark .highlight-thumb {
    box-shadow: 0 4px 12px rgba(0,0,0,0.55) !important;
}
.highlight-box {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-box:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.highlight-thumb {
    transition: transform 0.2s linear;
    will-change: transform;
}
