@charset "UTF-8";@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');@media all {/*
Theme Name: ecantore.de
Theme URI: https://ecantore.de
Author: Renkens Orgel- und Kirchenelektronik GmbH
Description: Offizielles WordPress-Theme für ecantore.de – Selbstspieleinrichtung für Kirchenorgeln
Version: 1.0.1
Text Domain: ecwebtheme-ec-de
*/



:root {
  --primary: #a72b2a;
  --primary-dark: #8b2221;
  --primary-light: #F5EEEE;
  --primary-muted: #D4A5A4;
  --accent: #c8891a;
  --text: #1a1a1a;
  --text-muted: #5a6272;
  --bg: #ffffff;
  --bg-soft: #FAFAFA;
  --bg-tint: #F5EEEE;
  --bg-dark: #14080a;
  --bg-dark2: #1e0f0f;
  --border: #E8E8E8;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(167,43,42,.10);
  --shadow-lg: 0 16px 48px rgba(167,43,42,.16);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.14);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ========== NAV ========== */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; color: var(--text);
  transition: background .15s, color .15s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--bg-tint); color: var(--primary); }
.nav-links .has-dropdown:hover .dropdown,
.nav-links .menu-item-has-children:hover .sub-menu { display: block; }
.dropdown,
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-lg);
  margin-top: 4px; list-style: none;
}
.dropdown a,
.sub-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  font-size: .88rem; font-weight: 500; color: var(--text);
}
.dropdown a:hover,
.sub-menu a:hover { background: var(--bg-tint); color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switcher { display: flex; gap: 2px; }
.lang-switcher a,
.lang-switcher span {
  display: inline-block; padding: 4px 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; border-radius: var(--radius);
  color: var(--text-muted); text-decoration: none;
  border: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
}
.lang-switcher a:hover { color: var(--primary); border-color: var(--primary-muted); }
.lang-switcher .current-lang,
.lang-switcher span[aria-current] { color: var(--primary); border-color: var(--primary-muted); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 99px;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  border: none; transition: all .2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #F5EEEE; transform: translateY(-2px); }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: var(--bg-dark2); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ========== TAGS ========== */
.tag {
  display: inline-block; background: var(--primary-light);
  color: var(--primary); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px; margin-bottom: 14px;
}
.tag-dark { background: rgba(255,255,255,.12); color: #f5c5c4; }

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  background: linear-gradient(135deg, #fdfcfc 0%, #f5eeee 60%, #fff8f8 100%);
  padding: 80px 0 64px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 16px; color: var(--text);
}
.page-hero h1 em { color: var(--primary); font-style: normal; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 28px; }

/* ========== SECTIONS ========== */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(167,43,42,.2) 0%, transparent 60%);
  color: #f5f0f0;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 900; line-height: 1.2; margin-bottom: 14px;
}
.section-header h2 em { color: var(--primary); font-style: normal; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; }
.section--dark .section-header p { color: #c8b0b0; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1a1a 100%);
  border-radius: 24px; padding: 64px 48px; text-align: center; color: white;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-banner p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== FAQ ========== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700; text-align: left; color: var(--text); gap: 16px;
}
.faq-icon { font-size: 1.3rem; color: var(--primary); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ========== FOOTER ========== */
.site-footer { background: var(--bg-dark); color: #c8b8b8; padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { font-size: 1.3rem; font-weight: 900; color: white; margin-bottom: 12px; letter-spacing: -.02em; }
.footer-logo span { color: var(--primary-muted); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-brand address { font-style: normal; font-size: .82rem; line-height: 1.7; color: #a89090; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #f0e0e0; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: #a89090; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #6b5555; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #6b5555; }
.footer-legal a:hover { color: #a89090; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 56px 0 40px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px; gap: 2px; z-index: 199;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a { width: 100%; }
  .hamburger { display: block; }
  .nav-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
}
