
/* inter-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v19-latin-300.woff2') format('woff2');
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2');
}

/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v19-latin-500.woff2') format('woff2');
}

/* space-grotesk-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/space-grotesk-v21-latin-regular.woff2') format('woff2');
}

/* space-grotesk-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/space-grotesk-v21-latin-500.woff2') format('woff2');
}

/* space-grotesk-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/space-grotesk-v21-latin-700.woff2') format('woff2');
}



:root {
  --green: #a7cc4e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #111213;
  color: #ccc;
  line-height: 1.75;
}

a {
  color: var(--green);
  text-decoration: none;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 100;
}

h1, h2 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 32px;
	color: white;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
	letter-spacing: 1.2px;
}

p {
	color: #ccc;
	margin-bottom: 10px;
}

/* Grid System */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* Erhöht den Abstand zwischen Spalten */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

[class^="col-"] {
  padding: 10px;
  width: 100%;
}

.col-3 { width: 25%; }
.col-4 { width: 31%; }
.col-6 { width: 48%; }
.col-8 { width: 66.666%; }
.col-12 { width: 100%; }




/* Navigation */
header {
  background-color: #111;
  display: flex;
  justify-content: space-between; /* Logo links, Navigation rechts */
  align-items: center;
}


.logo-img {
  max-width: 120px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: flex-end; /* Navigation rechts */
  list-style: none;
  gap: 40px;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  color: #fff;
	letter-spacing: 2.5px;
}


.nav li a {
  color: #fff;
  font-weight: 100;
}
.nav li a:hover,
.nav li a:focus {
  color: #a7cc4e; /* dein Grünton #a7cc4e */
  transition: color 0.3s ease;
}


/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 2em;
  text-align: right;
  cursor: pointer;
  padding: 20px;
  color: #fff;
}

.nav-wrapper {
  text-align: center;
}

/* Hero Section */
.hero {
  text-align: center;
  background-color: #111;
}

.hero-image img,
.section-image {
  max-width: 100%;
  height: auto;
}

/* CTA Button */
.cta {
  display: inline-block;
	font-family: 'Space Grotesk', sans-serif;
  font-weight: 300; /* dünne Schrift */
  margin-top: 20px;
  padding: 12px 24px;
  background-color: var(--green);
  color: #000;
  border: 2px solid var(--green); /* Damit Border immer da ist */
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Content Styles */
.dark {
  background-color: #1a1a1a;
}

.quote {
  font-style: italic;
  margin-top: 20px;
  color: #ccc;
}

.quote-container img.quote-icon {
  width: 50px !important;
  height: auto !important;
  max-width: none;
}

/* Kontakt */


.contact .cta {
  background-color: var(--green);
}

.contact .logo-img {
  max-width: 120px;
}

.contact > .col-3 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.contact > .col-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

/* Trenner zwischen Sektionen */
.section-separator {
  height: 1px;
  background: linear-gradient(to right, #111213, #777, #111213);
  width: 100%;
}

/* Ergänzende Styles für Header, Hero, Button Hover */

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  max-width: 140px;
  height: auto;
}

.nav {
  justify-content: flex-end;
  align-items: flex-start;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.95em;
}

.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 2.8em;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}

.hero-text p {
  text-align: left;
}

.cta:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid var(--green);
}


/* Logo und Menü im Header: bündig oben */
.header-top {
  align-items: flex-start;
	padding-top: 10px;
}

.logo-area {
  justify-content: flex-start;
  padding-top: 20px;
}

.nav {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 20px;
}

/* Hero: Button nur so breit wie Text */
.cta {
  width: fit-content;
  padding: 10px 20px;
  font-size: 1rem;
}

/* Alle Section-Header (h2) weiß */
h2 {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2em;
  margin-bottom: 10px;
}

/* Untermenüs direkt unter h2 */
h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Zitate größer darstellen */
.quote {
  font-size: 1.3em;
  font-style: italic;
  color: #ccc;
}

/* Leistungen: expliziten Header ergänzen */
#leistungen h2 {
  color: #fff;
  margin-bottom: 10px;
}


/* Grundlegende Typografieanpassung */
body {
  color: #cccccc;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* Listenstyles mit Icons */
ul.icon-list li {
  list-style: none;
  padding-left: 30px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: 0 5px;
  background-size: 18px;
}


ul.checklist li {
  background-image: url('../img/haken.png');
}

ul.circlelist li {
  background-image: url('../img/kreis.png');  
  margin-bottom: 10px;
}

/* Zweispaltiges Layout für „Warum Do it Now?“ */
#warum .col-4,
#warum .col-8 {
  padding: 10px;
}

#warum .col-4 img {
  width: 100%;
  height: auto;
}

#warum .col-4 p {
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.6;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5em;
  font-weight: 200;
  margin-bottom: 20px;
  color: #ffffff;
	max-width: 500px;
    margin-left: 0;
}
/* Zitat mit Paraphe-Icon im Warum-Bereich */
.quote-container {
  display: flex;
  align-items: flex-start; /* oben ausrichten statt zentrieren */
  margin-top: 50px;
  gap: 15px;
}

.quote-icon {
  width: 50px;
	max-width: 50px;
  height: 50px;
  flex-shrink: 0;
}	

.quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2em;
  font-style: italic;
  color: #cccccc;
  margin: 0;
  line-height: 1.5;
}


.footer {
  background-color: #111;
  padding: 30px 20px 40px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85em;
  color: #848484;
  letter-spacing: 2.5px;
}

.footer-nav {
  text-align: left;
}

.footer-nav a {
  color: #848484;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #a7cc4e;
  text-decoration: none;
}
