

body{margin:0;background:#ffffff;color:#2b2f2a;font-family:'Source Sans 3',sans-serif;}
h1,h2,h3{margin:0;}
header{background:linear-gradient(rgba(40,60,45,0.55),rgba(40,60,45,0.55)),url('https://images.unsplash.com/photo-1500382017468-9049fed747ef');background-size:cover;background-position:center;color:white;padding:160px 20px 90px;text-align:center;position:relative;}
.brand{position:absolute;top:30px;left:40px;}


.preview-label{position:absolute;top:25px;right:40px;font-size:0.9em;font-weight:600;opacity:0.9;}
header h1{font-size:2.6em;font-weight:700;}
header p{margin-top:12px;font-size:1.15em;}
.search-box{margin-top:35px;}
.search-box input{width:60%;max-width:500px;padding:14px;border-radius:6px;border:none;font-size:1em;}
.search-box button{padding:14px 20px;border:none;border-radius:6px;background:#2f4f3a;color:white;font-weight:600;margin-left:10px;cursor:pointer;}

.main-wrapper{
background:#f6f4ee;
max-width:1100px;
margin:0 auto;
padding:70px 60px;
}

.section{margin-top:50px;}
.section-large{margin-top:110px;}
.categories{display:grid;grid-template-columns:repeat(4,1fr);gap:45px;margin-top:35px;}



.card{
  background:#ffffff;
  border-radius:4px;
  border:1px solid #7a6f5c;
  cursor:pointer;
  transition:all 0.25s ease;
  display:flex;
  flex-direction:column;
  overflow:hidden;               /* wichtig für Bild */
  min-height:200px;              /* höher für Bild */
  padding:0;                     /* padding kommt jetzt im Content */
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Bildbereich oben */
.card-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15); /* leichte Verdunklung */
  border-radius: 4px 4px 0 0;
}

/* Textbereich unten */
.card-content{
  padding:22px 24px 26px 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
}


.card-flat{background:#ffffff;padding:25px 30px;border-radius:4px;border:1px solid #7a6f5c;}
.button{display:inline-block;margin-top:18px;padding:10px 18px;background:#2f4f3a;color:white;text-decoration:none;border-radius:4px;font-weight:600;cursor:pointer;}
footer{background:#2f4f3a;color:white;text-align:center;padding:35px 20px;margin-top:60px;}
footer a{color:white;margin:0 15px;text-decoration:none;}
@media(max-width:900px){.categories{grid-template-columns:1fr;}.search-box input{width:90%;}}
.breadcrumb{font-size:0.85em;opacity:0.75;margin-bottom:20px;}
.breadcrumb span{cursor:pointer;text-decoration:underline;}
.seminar-item{display:flex;gap:30px;margin-bottom:40px;padding:25px;border:1px solid #7a6f5c;background:#ffffff;border-radius:4px;}
.seminar-item img{width:260px;height:180px;object-fit:cover;border-radius:4px;}


@media(max-width:900px){.seminar-item{flex-direction:column;}.seminar-item img{width:100%;height:220px;}.profile-grid{grid-template-columns:1fr;}}


a.card {
  text-decoration: none;
  color: inherit;
}

a.card:visited {
  color: inherit;
}

/* ================================================= */
/* ========== ANBIETERPROFIL – REFERENZ ============ */
/* ================================================= */

.profil-layout {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  align-items: flex-start;
}

.profil-bild {
  flex: 0 0 220px;
}

.profil-bild img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.profil-inhalt {
  flex: 1;
  max-width: 720px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.profil-inhalt h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.profil-inhalt p {
  margin-bottom: 8px;
}

.profil-inhalt ul {
  padding-left: 18px;
  margin-top: 6px;
}

.profil-inhalt li {
  margin-bottom: 4px;
}

/* Kompetenzblock */
.kompetenz-feedback {
  margin-top: 30px;
}

.arbeitsweise {
  max-width: 600px;
}

/* Video */

.video-placeholder {
  margin: 40px auto;
  aspect-ratio: 16/9;
  max-width: 600px;

  background-image: 
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 18px;
  font-weight: 600;

  border-radius: 8px;
  cursor: pointer;

  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Seminar-Karten */
.seminar-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.profil-card {
  border: 1px solid #e3ded1;
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.profil-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.profil-card-content {
  padding: 16px;
  font-size: 0.9rem;
}

.profil-card-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.profil-card-content p {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Feedback */
.feedback {
  margin-top: 15px;
  font-style: italic;
  color: #444;
  border-left: 2px solid #8a7f6a;
  padding-left: 14px;
  font-size: 0.9rem;
  max-width: 600px;
}

/* Einheitliche H2 nur im Anbieterprofil */
.anbieter-profil h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Mobile */
@media(max-width:900px){
  .profil-layout {
    flex-direction: column;
  }

  .profil-bild img {
    height: 240px;
  }
}




/* Mobile */
@media(max-width:900px){
  .profil-drei-spalten {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* ===== Profil-Kachelbereich ===== */

.profil-drei-spalten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.profil-box {
  background: #faf8f3;             /* leicht warmer Ton */
  border: 1px solid #e3ded1;
  padding: 28px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);   /* sehr dezenter Schatten */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profil-box h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.profil-trenner {
  height: 1px;
  background: #e3ded1;
  margin: 10px 0 16px 0;
}

.profil-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.profil-box li {
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.profil-box li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #7a6f5c;
}

.profil-box p {
  margin: 0;
  font-style: italic;
}

/* Mobile */
@media(max-width:900px){
  .profil-drei-spalten {
    grid-template-columns: 1fr;
  }
}

/* ===== Seminarseite: Anbieterblock ===== */

.anbieter-section{
margin-top:50px;
}

.anbieter-box{
  display:flex;
  gap:25px;
  align-items:flex-start;
  margin-top:20px;
}

.anbieter-box img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:50%;
  flex-shrink:0;
}

.anbieter-text{
  max-width:500px;
}

.anbieter-text h3{
  margin-bottom:6px;
}

/* ===== Seminar Info Box ===== */

.seminar-info-box{
background:#ffffff;
border:1px solid #e3ded1;
padding:20px 24px;
border-radius:6px;
max-width:420px;
margin-top:20px;
}

.seminar-info-item{
margin-bottom:8px;
font-size:0.95rem;
}

/* Zielgruppen-Box */

.zielgruppe-box{
background:#ffffff;
border:1px solid #e3ded1;
border-radius:6px;
padding:20px 24px;
max-width:520px;
margin-top:20px;
line-height:1.7;
font-size:0.95rem;
}

/* Kontaktformular */

.kontakt-form{
max-width:500px;
margin-top:30px;
display:flex;
flex-direction:column;
gap:12px;
}

.kontakt-form input,
.kontakt-form textarea{
padding:12px;
border:1px solid #d8d2c4;
border-radius:4px;
font-family:'Source Sans 3',sans-serif;
}

.kontakt-form button{
margin-top:10px;
}

h2{
font-size:26px;
font-weight:600;
margin-top:28px;
margin-bottom:14px;
}

.section h2{
margin-bottom:25px;
}

/* Kategorie-Seiten */

.main-wrapper h2{
font-size:24px;
}

h3{
font-size:1.05rem;
font-weight:600;
margin-bottom:6px;
}

.seminar-section{
margin-top:60px;
}

.seminar-intro{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
margin-top:20px;
}

.seminar-intro ul{
margin-top:10px;
}

@media(max-width:900px){
.seminar-intro{
grid-template-columns:1fr;
}
}

.seminar-leitung{
margin-top:45px;
}

.seminar-wrapper{
max-width:1200px;
margin:0 auto;
padding:0 40px 60px 40px;
}

/* Seminar Info Box (Kategorieseiten) */

.seminar-meta-box{
background:#f7f5ef;
border:1px solid #e3ded1;
border-radius:6px;
padding:12px 14px;
font-size:0.85rem;
line-height:1.5;
min-width:150px;
height:fit-content;

margin-left:auto;   /* schiebt Box ganz nach rechts */
}

.seminar-item{
display:flex;
gap:30px;
align-items:flex-start;
}

.seminar-content{
flex:1;
}

.seminar-meta-box div{
margin-bottom:4px;
}

/* Hinweisbox für Anbieter */

.anbieter-hinweis{
background:#faf8f3;
border:1px solid #e3ded1;
border-radius:8px;
padding:30px 32px;
margin-bottom:50px;
max-width:1020px;
line-height:1.6;
}

.anbieter-hinweis h3{
font-size:1.2rem;
margin-bottom:10px;
}

.anbieter-signatur{
margin-top:18px;
font-weight:600;
}

.kw-statement{
margin-top:40px;
max-width:760px;
font-size:1.1rem;
line-height:1.7;
font-weight:600;
color:#2f4f3a;
border-left:3px solid #7a6f5c;
padding-left:18px;
}

.kw-manifest{
margin:110px auto;
max-width:720px;
text-align:center;
}

.kw-manifest p{
margin:8px 0;
font-size:1.4rem;
font-weight:600;
line-height:1.6;
color:#2f4f3a;
}

.kw-lead{
font-size:0.95rem;
font-weight:400;
opacity:0.6;
margin-bottom:14px;
letter-spacing:1px;
text-transform:uppercase;
}

.header-meta{
margin-top:12px;
font-size:0.85rem;
opacity:0.8;
letter-spacing:0.5px;
}

.kategorie-intro{
margin-top:12px;
margin-bottom:30px;
max-width:720px;
line-height:1.6;
opacity:0.85;
}

/* ===== SEO-Text unten auf Kategorie-Seiten ===== */

.kategorie-seo{
margin-top:90px;        /* großer Abstand zu den Seminaren */
max-width:720px;
font-size:0.9rem;
line-height:1.6;
color:#6a6a6a;
}

.kategorie-seo p{
margin-bottom:12px;
}

.kategorie-seo p:last-child{
opacity:0.7;
font-size:0.85rem;
margin-top:15px;
}

.search-results{
max-width:500px;
margin:10px auto;
background:white;
border:1px solid #ddd;
border-radius:6px;
display:none;
}

.search-result{
display:block;
padding:12px 14px;
text-decoration:none;
color:#2b2f2a;
border-bottom:1px solid #eee;
}

.search-result:hover{
background:#f6f4ee;
}

.top-nav{
position:absolute;
top:35px;
right:40px;
font-size:0.95rem;
}

.top-nav a{
margin-left:18px;
text-decoration:none;
color:white;
opacity:0.9;
}

.top-nav a:hover{
text-decoration:underline;
}

.card-link{
display:block;
margin-top:10px;
font-weight:600;
color:#6a5e49;
}

.brand img{
max-width:220px;
height:auto;
}


@media (max-width:700px){

.main-wrapper{
padding:50px 20px;
}

}

@media (max-width:700px){

.brand{
left:20px;
top:20px;
}

.brand img{
max-width:110px;
}

header{
padding:110px 20px 60px;
}

}

