/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

img{
max-width:100%;
display:block;
}

/* ROOT / DESIGN SYSTEM */

:root{
--color-background:#F5F4F1;
--color-text:#1E1E1E;
--color-accent:#7A8F7A;
--font-heading:"Cormorant Garamond", serif;
--font-body:"Inter", sans-serif;
--font-size-h1:48px;
--font-size-h2:32px;
--font-size-body:18px;
--container-width:1100px;
}



/* BASE STYLES */

body{
background:var(--color-background);
color:var(--color-text);
font-family:var(--font-body);
line-height:1.6;
}

/* TYPOGRAPHY */

h1,h2,h3{
font-family:var(--font-heading);
}

h1{
font-size:var(--font-size-h1);
letter-spacing: 1px;
}

h2{
font-size:var(--font-size-h2);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}

h3{
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

section{
    margin-bottom: 60px;
}

p{
line-height: 1.6;
margin-bottom: 16px;
font-size: var(--font-size-body);
}

/* LAYOUT */

#holder{
max-width:var(--container-width);
margin:0 auto;
padding:0 20px;
}

.content{
display:flex;
gap:50px;
align-items: flex-start;
}

nav {
width:200px;
margin-top: 0;
}

main{
flex:1;
padding-left:40px;
border-left:1px solid var(--color-accent);
}

main h1,
main h2,
main h3{
margin-top:0;
}
/* HEADER */

header{
padding-top: 20px;
padding-bottom: 20px;
border-bottom: 1px solid var(--color-accent);
margin-bottom: 40px;
text-align: center;
}

header img{
    height:120px;
    width:auto;
    display: block;
    margin: 0 auto;
}

.logo{
display:inline-block;
padding-bottom:6px;
letter-spacing:2px;
letter-spacing: 2px;
margin-bottom: 20px;
}

.logo img{
    height:150px;
    width:auto
}

footer{
   font-size:0.8rem;
   color:#777;
   margin-top: 80px;
   text-align: center;
   padding-bottom: 30px;
}

footer p{
   margin:4px 0;
}


/* NAVIGATION */

nav ul{
list-style:none;
}

nav a{
display:block;
background: rgba(122, 143, 122, 0.8);
color:black;
text-decoration: none;
padding: 10px 14px;
margin-bottom: 10px;
border-radius:4px;
width:100%;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 13px;
}

nav a:hover{
opacity: 0.85;
}

/* SECTIONS */

.hero img{
    max-width:750px;
    border-radius: 6px;
}

.philosophie{
margin-top:40px;
}

.produkt img{
    width:100%;
    height:500px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.produkte h3{
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.produkte{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:40px;
}

.workshops img{
    max-width:750px;
    margin-top:10px;
    border-radius: 6px;
}

.workshops p{
    max-width: 650px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.kurse{
list-style: none;
margin-top: 20px;
margin-bottom: 30px;
}

.kurse li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin-top: 20px;
}

.kontakt form{
    margin-top: 30px;
    max-width: 400px;
}

.kontakt p{
    max-width: 650px;
    margin-bottom: 20px;
}

.kontakt-layout{
display:flex;
gap:60px;
align-items: flex-start;
margin-top: 30px;
}

.kontakt-form{
    max-width:400px;
}

.kontakt-bild{
    flex:1;
    margin-top:30px;
}

.kontakt h2{
    margin-top: 0;
}
.kontakt-bild img{
    max-width:420px;
    width:100%;
    border-radius: 6px;
}

.kontakt input,
.kontakt textarea{
    width:100%;
    padding:8px;
    margin-top: 6px;
    margin-bottom: 14px;
    border:1px solid #ccc;
    border-radius:4px;
    font-family: var(--font-body);
}

input,
textarea{
    padding:10px;
    font-size:14px;
}

/* COMPONENTS */

.hero-buttons{
display:flex;
gap: 16px;
margin:32px 0;
}

.btn{
display:inline-block;
padding:12px 24px;
border-radius:4px;
text-decoration:none;
font-size:13px;
letter-spacing: 1px;
text-transform: uppercase;
}

.btn-third{
    background: white;
    color: var(--color-text);
    border: 2px solid var(--color-accent);
}
.btn-primary,
.btn-secondary{
    background:white;
    color:var(--color-text);
    border:2px solid var(--color-accent);
}

.btn-primary:hover,
.btn-secondary:hover{
    background: white;
    color: var(--color-text);
    border:2px solid var(--color-accent);
}

/* FOOTER */

footer{
border-top:1px solid var(--color-text);
margin-top:80px;
padding:20px 0;
font-size:14px;
}


/* =========================
   MOBILE LUNA FIX
========================= */

@media (max-width: 768px) {

  /* ======================
     GLOBAL
  ====================== */

  #holder {
    padding: 0 15px;
  }

  .content {
    flex-direction: column;
    gap: 30px;
  }

  /* ======================
     HEADER
  ====================== */

  header {
    margin-bottom: 20px;
  }

  .logo img {
    height: 90px;
  }

  /* ======================
     NAVIGATION → OBEN
  ====================== */

  nav {
    width: 100%;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

  /* ======================
     MAIN RESET
  ====================== */

  main {
    padding-left: 0;
    border-left: none;
  }

  /* ======================
     HERO
  ====================== */

  .hero img {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* ======================
     PRODUKTE GRID → STACK
  ====================== */

  .produkte {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .produkt img {
    height: auto;
  }

  /* ======================
     WORKSHOPS
  ====================== */

  .workshops img {
    max-width: 100%;
  }

  .workshops p {
    max-width: 100%;
  }

  .kurse li {
    max-width: 100%;
    font-size: 16px;
  }

  /* ======================
     KONTAKT
  ====================== */

  .kontakt-layout {
    flex-direction: column;
    gap: 30px;
  }

  .kontakt-form {
    max-width: 100%;
  }

  .kontakt-bild img {
    max-width: 100%;
  }

  /* ======================
     TYPO
  ====================== */

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  /* ======================
     FOOTER
  ====================== */

  footer {
    margin-top: 50px;
    font-size: 12px;
  }

}

@media (max-width: 768px) {

  /* ======================
     NAV SMALLER / CLEANER
  ====================== */
  nav {
    width: 100%;
  }

  nav a {
    padding: 6px 8px;
    font-size: 11px;
    background: rgba(122, 143, 122, 0.4);
  }

  nav a:hover {
    opacity: 0.8;
  }

  /* ======================
     HERO BUTTON SPACING
  ====================== */
  .hero-buttons {
    margin-bottom: 80px;
  }

  /* ======================
     CONTACT FORM BIGGER
  ====================== */
  .kontakt-form {
    width: 100%;
  }

  .kontakt input,
  .kontakt textarea {
    padding: 14px;
    font-size: 16px;
    margin-bottom: 18px;
  }

  .kontakt textarea {
    min-height: 140px;
  }

  /* ======================
     INPUT FOCUS (UX BOOST)
  ====================== */
  .kontakt input:focus,
  .kontakt textarea:focus {
    outline: none;
    border: 1px solid var(--color-accent);
    background: #fff;
  }

}
