/* Reset / Basis */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #333; /* Dunkler Hintergrund */
  color: #fff;      /* Weiße Schrift */
}

a { color: inherit; }

/* =========================================================
   Header / Branding
   ========================================================= */
.main-header {
  text-align: center;
  padding: 40px 10px 20px;
  background: #333;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #ff0000; 
}

.logo-container {
  max-width: 1100px;
  margin: 0 auto;
}

.logo-lockup {
  display: inline-block;
  text-align: center;
  margin: 0;
  font-weight: normal;
}

.logo-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 2.8rem;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.logo-main span {
  display: block;
  font-weight: bold; 
}

.logo-sub {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 5px;
  white-space: nowrap;
}

.slogan {
  font-size: 1rem;
  color: #fff;
  margin: 15px 0 0;
  font-style: italic;
  opacity: 0.95;
}

/* =========================================================
   Landingpage: Split-Choice & Welcome
   ========================================================= */

.landing-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 250px);
  padding: 0; 
}

.welcome-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px 20px; 
  color: #fff;
}

.welcome-top {
  font-size: 1.5rem;
  margin-bottom: 0.2rem; 
  font-weight: normal;
  line-height: 1.2;
}

.welcome-brand {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem; 
  font-weight: bold;
  line-height: 1.1;
}

.welcome-brand span {
  letter-spacing: 6px; 
  margin-right: 15px;
}

.welcome-sub {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 1.5rem; 
  line-height: 1.3;
}

.welcome-section p {
  margin-bottom: 0.8rem; 
  line-height: 1.5;
  opacity: 0.95;
  font-size: 1.1rem;
}

.boxes-wrapper {
  display: flex;
  width: 100%;      
  max-width: none;  
  margin: 0;
  padding: 0;
  border-top: 1px solid #ff0000;
}

.choice-box {
  flex: 1;
  position: relative;
  text-decoration: none;
  color: #fff;
  display: flex;
  overflow: hidden;
  border-right: 1px solid #555;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 600px; 
  min-height: 300px; 
}

.choice-box:last-child { border-right: none; } 
.choice-box:hover { flex: 1.35; }

.privat {
  background:
    linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.72)),
    url("../img/20250111_112511.jpg") center/cover no-repeat;
}

.industrie {
  background:
    linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.72)),
    url("../img/20250111_093918.jpg") center/cover no-repeat;
}

.content-overlay {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: rgba(0,0,0,0.28);
  transition: background 0.5s ease;
}

.choice-box:hover .content-overlay { background: transparent; }

.content-overlay h2 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

.content-overlay p {
  margin: 0;
  opacity: 0.92;
  line-height: 1.5;
  max-width: 520px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.btn:hover { background: rgba(255,255,255,0.08); }

/* =========================================================
   Footer
   ========================================================= */
.main-footer {
  padding: 15px 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  background: #333;
  line-height: 1.4;
  border-top: 1px solid #ff0000;
}

.main-footer p { margin: 0; }

.main-footer a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #777;
  transition: border-color 0.3s;
}

.main-footer a:hover { border-bottom-color: #fff; }

/* =========================================================
   Navigation
   ========================================================= */
.top-nav {
  border-top: 1px solid transparent; 
  margin-top: 25px;
  padding: 12px 0;
  position: relative;
  z-index: 1100;
}

.nav-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.nav-home {
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  border-bottom: 1px solid #555;
  padding-bottom: 2px;
  opacity: 0.95;
}

.nav-home:hover { border-bottom-color: #fff; opacity: 1; }

.nav-toggle { position: absolute; left: -9999px; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  opacity: 0.88;
  transition: opacity 0.25s, border-color 0.25s;
}

.nav-links a:hover { opacity: 1; border-bottom-color: #fff; }
.nav-links a.active { opacity: 1; border-bottom-color: #fff; }

.nav-hamburger {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid #555;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  opacity: 0.9;
}

/* =========================================================
   Unterseiten Styles (Hero, Content)
   ========================================================= */
.page-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
  border-top: none; 
  border-bottom: 1px solid #222;
  position: relative;
  z-index: 0;
}

.hero-privat {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    url("../img/20250111_112511.jpg") center/cover no-repeat;
}

.hero-industrie {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    url("../img/20250111_093918.jpg") center/cover no-repeat;
}

.hero-content {
  width: min(920px, calc(100% - 20px));
  padding: 22px 18px;
  border: 1px solid #555;
  background: rgba(0,0,0,0.22);
}

.hero-content h2 { margin: 0 0 10px; font-size: 2.2rem; letter-spacing: 1px; }
.hero-content p { margin: 0; opacity: 0.93; line-height: 1.65; }
.hero-content p + p { margin-top: 12px; }
.hero-actions { margin-top: 18px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.section { padding: 54px 0; border-bottom: 1px solid #222; }
.section-alt { background: #2a2a2a; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.section-title { margin: 0 0 12px; font-size: 1.6rem; letter-spacing: 1px; }
.divider { height: 1px; background: #ff0000; margin: 14px 0 18px; }
.divider--spaced { margin: 26px 0 22px; }
.subhead { margin: 22px 0 10px; font-size: 1.05rem; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.95; }
.text { margin: 0; opacity: 0.92; line-height: 1.7; }
.note { margin-top: 18px; padding-top: 14px; border-top: 1px solid #555; }
.text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.cta-strip { padding: 34px 0; background: #333; border-top: 1px solid #444; border-bottom: 1px solid #444; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   Listen & Preislisten-Logik (UNIFIED)
   ========================================================= */

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none; /* Standard-Bullets aus, wir machen eigene */
}

/* Basis-Style für JEDEN Listenpunkt (Privat, Industrie, Preise) */
.clean-list li {
  position: relative;
  padding-left: 20px; /* Platz für den roten Punkt */
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px dotted #555; /* Die feine Trennlinie */
  line-height: 1.5;
}

/* Der rote Punkt für ALLE Listen */
.clean-list li::before {
  content: "•";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  top: -2px; 
  line-height: 1;
}

/* Spezialanpassung NUR für die Preisliste (Text links, Preis rechts) */
#preisliste .clean-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
}

#preisliste .clean-list li .price {
  font-weight: bold;
  color: #fff;
  margin-left: 15px;          
  white-space: nowrap;        
}

/* Box für Rasenmäher-Service */
.service-highlight-box {
  background-color: #444; 
  padding: 25px;
  margin-top: 30px;
  border: 1px solid #555;
  border-left: 5px solid #ff0000; 
  color: #fff; 
}

.service-highlight-box h4 { 
  margin-top: 0; 
  color: #fff; 
  font-size: 1.2rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* =========================================================
   Responsive Handy
   ========================================================= */
@media (max-width: 900px) {
  .text-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .boxes-wrapper { flex-direction: column; }
  .choice-box { width: 100%; height: 300px; border-right: none; border-bottom: 1px solid #555; }
  .choice-box:last-child { border-bottom: none; }
  
  .nav-hamburger { display: inline-flex; }
  
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    margin-top: 12px; flex-direction: column; align-items: stretch; gap: 0;
    background: #333; border: 1px solid #555; overflow: hidden;
    max-height: 0; padding: 0; transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 5000;
  }
  
  .nav-links li { border-top: 1px solid #444; }
  .nav-links li:first-child { border-top: none; }
  
  .nav-links a { display: block; padding: 14px 14px; border-bottom: none; opacity: 1; }
  
  .nav-toggle:checked ~ .nav-links { max-height: 520px; padding: 6px 0; }
  
  .hero-content h2 { font-size: 1.8rem; }
}