/* ===== Fonts ===== */
@font-face{
  font-family: "MenuFont";
  src: url("fonts/KozGoPr6N-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face{
  font-family: "TextFont";
  src: url("fonts/KozMinPro-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* ===== Variablen ===== */
:root{
  --bg: #eae5cb;
  --green: #3F612E;
  --footer-bg: #084222;
  --footer-text: #bbaf71;
}

/* ===== Reset ===== */
*{ box-sizing: border-box; }

/* ===== Grundlayout ===== */
body{
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  font-family: "TextFont", serif;
}

.page{
  flex: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Innenabstand */
.site-header,
main{
  padding: 40px;
}

/* ===== Header ===== */
.site-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo{
  height: 45px;
  width: auto;
  display: block;
}

.menu-btn{
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  color: #0d4d32;
}

/* ===== Menü Overlay ===== */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: transparent;
  display: none;
  z-index: 999;
}

.menu-overlay.open{ display: block; }

.menu-overlay::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background: #e2c438;
}

.close-btn{
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  color: #0d4d32;
}

.menu-nav{
  position: absolute;
  top: 140px;
  left: calc(50vw + 60px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  text-align: left;
  align-items: flex-start;
}

.menu-nav a{
  font-family: "MenuFont", serif;
  font-size: 25px;
  font-weight: 700;
  color: #0d4d32;
  text-decoration: none;
}

.menu-nav a:hover{ text-decoration: underline; }

/* ===== Typo / Startseite ===== */
.home-intro{
  font-size: 20px;
  line-height: 1.5;
  max-width: 720px;
  margin: 0;
  color: var(--green);
}

.quote{
  font-family: "Square Peg", cursive;
  font-size: 58px;
  line-height: 1.1;
  color: var(--green);
  margin-top: 60px;
}

.hero-stack{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.hero-photo{
  display: block;
  width: 100%;
  max-width: 700px;
  border-radius: 11px;
}

/* ===== Cards (Schwerpunkte + Info) ===== */
.focus-card{
  width: 100%;
  max-width: 700px;
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: none;
}

.focus-card h2{
  margin: 0 0 14px 0;
  color: var(--green);
  font-size: 22px;
  line-height: 1.1;
  font-family: "MenuFont", serif;
  font-weight: normal;
}

.focus-card ul{
  margin: 0 0 18px 20px;
  padding: 0;
  color: var(--green);
  font-size: 18px;
  line-height: 1.6;
}

.focus-card p{
  margin: 0;
  color: var(--green);
  font-size: 16px;
  line-height: 1.6;
}

.focus-card li::marker{ color: var(--green); }

/* ===== Info Grid / Cards (Arbeitsweise/Kosten/Kontakt etc.) ===== */
.info-grid{
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 700px;
}

.info-card{
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 26px 28px;
}

.info-card h3{
  margin: 0 0 12px 0;
  font-family: "MenuFont", serif;
  font-weight: normal;
  color: var(--green);
  font-size: 22px;
  line-height: 1.1;
}

.info-card p{
  margin: 0;
  color: var(--green);
  font-size: 18px;
  line-height: 1.6;
}

.info-card a{
  color: var(--green);
  text-decoration: none;
}

.info-card a:hover{
  text-decoration: underline;
}

/* ===== Titel ===== */
.page-title{
  color: var(--green) !important;
  font-family: "MenuFont", serif;
  font-weight: normal;
}

/* ===== Sektionstitel (Arbeitsweise etc.) ===== */
.section-title{
  font-family: "MenuFont", serif;
  color: var(--green);
  font-weight: normal;
  font-size: 38px;
  line-height: 1.1;
  margin: 46px 0 18px;
}

/* ===== Fließtext-Block ===== */
.copy-block{
  max-width: 720px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.7;
}

.copy-block p{ margin: 0 0 18px 0; }

.page-bottom-space{ height: 60px; }

/* ===== Arbeitsweise: 3 Boxen ===== */
.pill-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}

@media (min-width: 900px){
  .pill-grid{ grid-template-columns: repeat(3, 1fr); }
}

.pill-card{
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 22px 24px;
}

.pill-card h3{
  margin: 0 0 12px 0;
  font-family: "MenuFont", serif;
  font-weight: normal;
  color: var(--green);
  font-size: 24px;
}

.pill-card ul{
  margin: 0 0 0 18px;
  padding: 0;
  color: var(--green);
  font-size: 18px;
  line-height: 1.6;
}

.pill-card li::marker{ color: var(--green); }

/* Schritte */
.steps{
  max-width: 720px;
  margin: 0;
  padding-left: 22px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.7;
}

/* ===== Über mich ===== */
.about-stack{
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
}

.about-photo{
  width: 100%;
  max-width: 700px;
  border-radius: 11px;
  display: block;
}

.about-copy{
  color: var(--green);
  font-size: 18px;
  line-height: 1.7;
}

.about-copy p{ margin: 0 0 18px 0; }

/* CV Bereiche */
.cv-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr !important; /* immer untereinander */
  gap: 22px;
  max-width: 980px;
}

.cv-card{
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 22px 24px;
}

.cv-card h2{
  margin: 0 0 16px 0;
  font-family: "MenuFont", serif;
  font-weight: normal;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}

.cv-item{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(63,97,46,0.25);
}

.cv-item:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.cv-date{
  color: var(--green);
  font-family: "MenuFont", serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.95;
}

.cv-text{
  color: var(--green);
  font-size: 17px;
  line-height: 1.6;
}

.cv-list{
  margin: 0;
  padding-left: 20px;
  color: var(--green);
  font-size: 17px;
  line-height: 1.7;
}

.cv-list li::marker{ color: var(--green); }

@media (max-width: 520px){
  .cv-item{ grid-template-columns: 1fr; }
}

/* ===== Map ===== */
.map{
  width: 100%;
  max-width: 700px;
  margin-top: 18px;
  border: 2px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
}

.map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ===== Legal (Impressum/Datenschutz) ===== */
.legal{
  max-width: 720px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.7;
}

.legal p{ margin: 0 0 18px 0; }

.legal a{
  color: var(--green);
  text-decoration: none;
}

.legal a:hover{ text-decoration: underline; }

.legal-title{
  margin: 28px 0 10px 0;
  font-family: "MenuFont", serif;
  font-weight: normal;
  color: var(--green);
  font-size: 26px;
  line-height: 1.2;
}

/* ===== Footer ===== */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  width: 100%;
  padding: 50px 40px 100px; /* mehr Luft unten */
  font-family: "MenuFont", serif;
}

.footer-inner{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a{
  color: var(--footer-text);
  text-decoration: none;
}

.footer-links a:hover{ text-decoration: underline; }

.footer-mail,
.footer-phone{
  color: var(--footer-text);
  text-decoration: none;
}

.footer-mail:hover,
.footer-phone:hover{ text-decoration: underline; }

.footer-credit{
  grid-column: 1 / -1;
  margin-top: 14px;
}

.credit-pill{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--footer-bg);
  text-decoration: none;
  font-family: "MenuFont", serif;
  font-size: 12px;
  border: 2px solid rgba(61, 56, 31, 0.7);
}

.credit-pill{
  display: inline-block;

  /* Größe */
  padding: 6px 10px;     /* kleiner */
  font-size: 12px;       /* kleiner Text */
  border-radius: 500px;

  /* Farben (hier festlegen) */
  background: #084222;   /* Button-Farbe */
  color: #337a49;        /* Text-Farbe */

  /* Rahmen */
  border: 2px solid #337a49;

  text-decoration: none;
  font-family: "MenuFont", serif;
}

.credit-pill:hover{
  filter: brightness(0.95);
}


.footer-note{
  grid-column: 1 / -1;
  margin-top: 12px;
  font-size: 16px;
  opacity: 0.9;
}.map{
  border: 0 !important;        /* Outline weg */
  border-radius: 16px;         /* Rundungen bleiben */
  overflow: hidden;            /* damit die Ecken wirklich rund sind */
}/* Immer Abstand (Body-Farbe) zwischen letztem Inhalt und Footer */
main{
  padding-bottom: 180px;


}:root{
  --footer-bg: #084222;      /* Footer Hintergrund */
  --footer-text: #337a49;    /* Footer Textfarbe */
  --footer-link: #bbaf71;    /* Footer Linkfarbe */
  --footer-link-hover: #eae5cb; /* Hover-Farbe Links */

  --footer-font-size: 12px;
  --footer-line-height: 1.6;

  --footer-pad-top: 50px;
  --footer-pad-side: 40px;
  --footer-pad-bottom: 70px;}
