/* Farb-Variablen (leicht anpassbar) */
:root{
  --beige: #f5f0e8;
  --pink:  #d94f80; /* dezentes Pink */
  --text:  #333;
  --card:  #ffffff;
  --maxw:  1200px;
}

/* Grundlayout */
*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--beige);
}
.container{
  width: 92%;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Header */
.site-header{
  background: #fff;
  border-bottom: 2px solid var(--pink);
}
.header-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo{
  height: 140px;            /* größer wie gewünscht */
}
.main-nav a{
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  margin-left: 20px;
}
.main-nav a:hover{ color: var(--pink); }

/* Hero mit IMG (damit nichts abgeschnitten wird) */
.hero{
  position: relative;
  height: 100vh;             /* volle Breite, angenehme Höhe */
  min-height: 420px;
  overflow: hidden;
}
.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* füllt die Fläche */
  object-position: 50% 20%; /* leicht nach oben – hält Kopf & Füße im Bild */
  filter: saturate(1) contrast(1);
}
.hero-text{
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.hero-text h1{
  margin: -80px;
  background: rgba(255,255,255,0.85);
  padding: 16px 28px;
  border-radius: 6px;
  color: #615458; 
  font-size: clamp(24px, 4vw, 44px);
}

/* Intro */
.intro{
  text-align: center;
  padding: 36px 0 8px;
  font-size: 1.1rem;
}

/* Drei Boxen */
.three-boxes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
  padding: 24px 0 40px;
}
.box{
  background: var(--card);
  border-top: 5px solid var(--pink);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.box h3{ margin: 0 0 8px; }

/* Kurse */
.kurse{
  padding: 14px 0 40px;
}
.kurse h2{ margin-top: 0; }

/* Über mich */
.about{
  display: grid;
  grid-template-columns: 1fr 300px; /* Text links, kleines Bild rechts */
  gap: 28px;
  align-items: start;
  padding: 6px 0 50px;
}
.about-sidepic img{
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: 4px solid #fff; /* wirkt wie ein kleiner Passepartout-Rahmen, kein Pink */
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
/* Kontakt */
.contact {
  padding: 40px 0;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
}
.contact h2 {
  color: var(--pink);
}
.contact a {
  color: var(--pink);
  font-weight: bold;
}
.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer{
  background: #fff;
  padding: 18px 0;
  text-align: center;
  font-size: .95rem;
}
.site-footer a{
  color: var(--pink);
  text-decoration: none;
}
.site-footer a:hover{ text-decoration: underline; }

/* Responsiv */
@media (max-width: 900px){
  .about{
    grid-template-columns: 1fr; /* Bild unter Text */
    justify-items: center;
  }
  .about-sidepic img{ max-width: 260px; }
}

/* Allgemeiner Text */
body {
  font-family: Arial, sans-serif;
  color: #615458; /* Logo-Farbe */
  background-color: #f9f6f1; /* Beige Hintergrund */
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
  color: #615458;
}

/* Links */
a {
  color: #615458;
  text-decoration: none;
}

a:hover {
  color: #d63384; /* sanftes Pink nur beim Hover */
}
/* Navigation Links im Header */
header nav ul li a {
  color: #615458; /* Logo-Farbe */
}

header nav ul li a:hover {
  color: #d63384; /* sanftes Pink beim Hover */
}
/* Hero-Titel etwas höher setzen */
.hero-text h1{
  /* alte margin-Angabe entfernen/überschreiben */
  margin: 0;
  transform: translateY(-10vh); /* schiebt den Titel nach oben */
}

/* auf kleineren Screens etwas weniger nach oben */
@media (max-width: 600px){
  .hero-text h1{
    transform: translateY(-5vh);
  }
}
.hero-text{
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: flex-start;   /* nach oben ausrichten */
  justify-content: center;   /* horizontal mittig */
  padding-top: 25vh;         /* 1/4 der Höhe von oben */
}

.hero-text h1{
  margin: 0;
  background: rgba(255,255,255,0.85);
  padding: 16px 28px;
  border-radius: 6px;
  color: #615458; 
  font-size: clamp(24px, 4vw, 44px);
}
/* Navigation Links Standard */
.main-nav a {
  color: #615458 !important;   /* Logo-Farbe erzwingen */
  transition: color 0.3s ease; /* sanfter Farbwechsel */
}

/* Navigation Links Hover */
.main-nav a:hover {
  color: #d63384 !important;   /* Pink beim Hover */

.logo img {
  max-height: 120px;   /* Höhe z. B. 80px */
  width: auto;        /* Breite passt sich an */
  display: block;     /* verhindert ungewollte Abstände */
}


}
