/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

a {
  color: #c0392b;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #922b21;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-red {
  background: #c0392b;
  color: #fff;
  border: 2px solid #c0392b;
}

.btn-red:hover {
  background: #922b21;
  border-color: #922b21;
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #c0392b;
  border: 2px solid #c0392b;
  font-size: 12px;
  padding: 8px 16px;
}

.btn-outline:hover {
  background: #c0392b;
  color: #fff;
  text-decoration: none;
}

.btn-dark {
  background: #333;
  color: #fff;
  border: 2px solid #333;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #333;
  text-decoration: none;
}

.btn-small {
  padding: 6px 16px;
  font-size: 12px;
}

/* ===== SIDEBAR BUTTONS ===== */
.sidebar-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  min-width: 44px;
  justify-content: center;
  transition: padding-right 0.3s;
}

.sidebar-btn span {
  display: none;
}

.sidebar-btn:hover span {
  display: inline;
}

.sidebar-btn:hover {
  padding-right: 20px;
  text-decoration: none;
  color: #fff;
}

.email-btn    { background: #c0392b; }
.phone-btn    { background: #2c3e50; }
.whatsapp-btn { background: #25d366; }

.email-btn:hover    { background: #922b21; }
.phone-btn:hover    { background: #1a252f; }
.whatsapp-btn:hover { background: #1ebe57; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-contacts a {
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contacts a:hover {
  color: #c0392b;
  text-decoration: none;
}

.top-bar-contacts i {
  color: #c0392b;
  font-size: 12px;
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* ===== NAVIGATION ===== */
.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 3px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-list li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}

.nav-list li a:hover,
.nav-list li.active > a {
  background: #c0392b;
  color: #fff;
  text-decoration: none;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 999;
  border-top: 3px solid #c0392b;
  list-style: none;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

.dropdown li a:hover {
  background: #c0392b;
  color: #fff;
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding: 60px 20px;
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-list {
  list-style: none;
  margin-bottom: 32px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-list li i {
  color: #c0392b;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: 90px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 60px 0;
  background: #fff;
}

.intro-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-section p {
  margin-bottom: 16px;
  color: #555;
  max-width: 860px;
}

/* ===== LEISTUNGEN SECTION ===== */
.leistungen-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.leistungen-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
}

.leistungen-intro {
  text-align: center;
  color: #555;
  max-width: 860px;
  margin: 0 auto 40px;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.leistung-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.leistung-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.leistung-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.leistung-icon img {
  max-height: 50px;
  margin: 0 auto;
}

.graffiti-icon i {
  font-size: 40px;
  color: #c0392b;
}

.leistung-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.leistung-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ===== RAT UND TAT SECTION ===== */
.rat-tat-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.rat-tat-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.rat-tat-section p {
  color: #555;
  max-width: 860px;
  margin: 0 auto 16px;
}

.rat-tat-section .btn {
  margin-top: 24px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.6);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.video-play-btn img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 4px;
  background: rgba(255,255,255,0.15);
  transition: transform 0.2s;
}

.video-play-btn:hover img {
  transform: scale(1.1);
}

.video-play-btn span {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== MEISTERBETRIEB SECTION ===== */
.meister-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.meister-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.meister-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.meister-text p {
  color: #555;
  margin-bottom: 16px;
}

.meister-text .btn {
  margin-top: 8px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #ddd;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 3px;
  overflow: hidden;
}

.accordion-header {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  position: relative;
  user-select: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #c0392b;
  font-weight: 400;
}

.accordion-item.active .accordion-header {
  background: #c0392b;
  color: #fff;
}

.accordion-item.active .accordion-header::after {
  content: '−';
  color: #fff;
}

.accordion-body {
  display: none;
  padding: 16px 18px;
  font-size: 13px;
  color: #555;
  background: #fff;
  border-top: 1px solid #eee;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* ===== ANGEBOT SECTION ===== */
.angebot-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.angebot-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 16px;
  font-weight: 700;
}

.angebot-section > .container > p {
  color: #555;
  margin-bottom: 24px;
}

.angebot-phone {
  margin: 32px auto;
  padding: 24px;
  background: #f8f8f8;
  border-left: 4px solid #c0392b;
  max-width: 500px;
  text-align: center;
}

.angebot-phone p {
  color: #555;
  margin-bottom: 10px;
  font-size: 14px;
}

.phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.phone-number:hover {
  color: #922b21;
  text-decoration: none;
}

.angebot-text {
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
  color: #555;
}

.angebot-text p {
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 16px 0 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #bbb;
}

.footer-col a {
  color: #bbb;
}

.footer-col a:hover {
  color: #c0392b;
  text-decoration: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  font-size: 13px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: #c0392b;
  font-size: 16px;
}

.footer-links li a:hover {
  color: #c0392b;
  text-decoration: none;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

/* Einsatzgebiete */
.einsatzgebiete {
  background: #111;
  padding: 30px 0;
  border-top: 1px solid #333;
}

.einsatzgebiete h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.einsatzgebiete p {
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 2;
}

.einsatzgebiete a {
  color: #888;
}

.einsatzgebiete a:hover {
  color: #c0392b;
  text-decoration: none;
}

.footer-bottom {
  background: #0d0d0d;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ccc;
  padding: 14px 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner p {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  justify-content: center;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .meister-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-contacts {
    gap: 12px;
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 999;
    gap: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li a {
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f0;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #c0392b;
    margin-left: 16px;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sidebar-buttons {
    display: none;
  }
}

@media (max-width: 480px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-contacts {
    flex-direction: column;
    gap: 6px;
  }

  .hero-content {
    padding: 40px 16px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .phone-number {
    font-size: 22px;
  }
}

/* ===== BREADCRUMB (ergänzt für Unterseiten) ===== */
.breadcrumb {
  background: #f8f8f8;
  padding: 12px 0;
  font-size: 13px;
  color: #777;
  border-bottom: 1px solid #eee;
}

.breadcrumb a { color: #777; }
.breadcrumb a:hover { color: #c0392b; text-decoration: none; }

/* ===== ELFSIGHT FORM WRAPPER (Angebot-Sektion) ===== */
.elfsight-wrap {
  margin: 32px auto 0;
  max-width: 600px;
  text-align: left;
}
