/* anek-bangla-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anek Bangla';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/anek-bangla-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* anek-bangla-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anek Bangla';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/anek-bangla-v16-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* anek-bangla-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anek Bangla';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/anek-bangla-v16-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* anek-bangla-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anek Bangla';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/anek-bangla-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* anek-bangla-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anek Bangla';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/anek-bangla-v16-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --bg: #f7f2ef;
  --text: #3C3C3B;
  --accent: #943414;
  --max-width: 1200px;
}

a:link, a:hover {
  transition: all .3s;
}

strong, b {
  font-weight: 600;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Anek Bangla', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

/* ====================== CONTAINER ====================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ====================== HEADER ====================== */
.site-header {
  background: var(--bg);
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.header-inner {
  text-align: center;
}

.logo {
margin: 0 auto;
display: block;
}

.logo img {
  height: 60px;
  width: auto;
  
}

.nav {
   display: flex;
   flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* Abstand zwischen Links */
   
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.0rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
 
}
.nav a:hover { color: var(--accent); }

.nav a:last-child {
  background-color: var(--accent);
  color:#fff;
  padding: 0 10px;
 
}

.nav a:last-child:hover {
  background-color: var(--text);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  right: 0;
  background: var(--bg);
  width: 100%;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ====================== HERO ====================== */
.hero {
  padding: 2rem 0;
}
.hero-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 100%;
}
.hero-images {
  position: relative;
  text-align: right;
  padding-right: 1rem;
}

.hero-images img {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
  position: relative;
}

.hero-images::before {
  background-image: url(img/gradient-background.jpg);
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 70%;
  height: 100%;
  background-size: cover;
  background-position: right;
  z-index: 1;
}

/* ====================== ABOUT ====================== */
.about {
  padding: 1rem 0;
}
.about-inner {
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 1fr;
  align-items: top;
}

.about-images {
  position: relative;
  text-align: right;
  padding-left: 1rem;
}

.about-text p {
  margin:0;
  padding:0;

}

.about-images img {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
  position: relative;
}

.about-images::before {
  background-image: url(img/gradient-background.jpg);
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 80%;
  height: 100%;
  background-size: cover;
  background-position: right;
  z-index: 1;
}

/* ====================== ANGEBOT ====================== */
#angebot {
  width: 100%;
  max-width: 2000px;
  margin: 2rem auto;
  background: url(img/systemische-supervision-thueringen.webp) no-repeat center center;
  background-size: cover;
  font-size: 1.2rem;
  color: #fff;
}
#angebot .container {
  background: linear-gradient( 135deg,rgba(228, 128, 32, 0.87) 0%, rgba(148, 52, 20, 0.87) 100% );
  color: #fff;  
  padding: 2rem;
  width: 90%;
  margin: 0 auto;
  line-height: 1.2;
}

.galerie {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: var(--max-width);
  width: 95%;
  margin:-50px auto 0 auto;
}

.galerie img {
  width: 100%;
  height: auto;
   border:5px solid #fff;
}

/* ====================== VERAENDERN ====================== */
#veraendern {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

#veraendern p {
  margin-bottom: 15px;
}

#veraendern h1 {
  font-size: 2.0rem;
  margin-top: 0;
  padding: 0;
}

/* ====================== ALLGEMEIN ====================== */

h2, h1, h3 {
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h2 {
  margin-top: 1.5rem;     
  text-transform: uppercase;
}
 
.list {
  list-style: circle;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0 0 15px;
}


/* ====================== KONTAKT ====================== */

#kontakt {
  background: var(--accent);
  padding: 2rem;
  max-width: 380px;
  margin: 2rem auto;
  color:#fff;
  font-style: normal;
}

#kontakt h2 {
  margin-top: 0;
}

.kontakt a {
  color: #fff;
  text-decoration: none;
}
.kontakt a:hover {
  text-decoration: underline;
}

/* ====================== FOOTER ====================== */
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.95rem;
}
.footer-nav {
  margin-top: 0.5rem;
  border-top: 1px solid #636363;
  display: inline-block;
  padding: 2rem 0 1rem 0;
}
.footer-nav a {
  color: #636363;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0.75rem;
}
.footer-nav a:hover {
  color: var(--accent);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 900px) {
  .hero-inner, .about-inner {
    grid-template-columns: 1fr;
    gap:1rem;
    }

.about-inner {
    flex-direction: column; 
  }

  .about-text {
    order: -1; /* Text vor dem Bild */
  }


}

@media (max-width: 700px) {
  .section {
    padding: 3rem 1rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

 

@media ( min-width:900px ) {

  body {
  font-size: 16px;
}
  .hero h1 {
    font-size: 4rem;
}

.hero-images img {
  width: 80%;
}

.about, .hero {
  padding: 4rem 0;
}



}


@media ( min-width:1100px ) {
  #angebot .container {
    width: 50%;
    padding: 4rem 10rem 4rem 3rem;
    margin-right: 0; 
    box-sizing: border-box;
  }

  #angebot .container h2 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .galerie img {
   border:10px solid #fff;
}

}


@media ( min-width:1030px ) {
  .site-header {
  position: sticky;
  top: 0;
  }

  .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav {
 
  gap: 2.5rem;
  line-height: 40px;
  flex-direction: row;
}

.nav a {
  font-size: 1.1rem;
  display: inherit;
  text-align: inherit;
  margin-bottom: inherit;
}

.logo img {
  height: 80px;
  width: auto;
}

#veraendern h1 {
  font-size: 2.5rem;
  margin-top: 2rem;
  padding: 0;
}

}

@media ( min-width:1800px ) {
  #angebot .container {
    width: 50%;
    padding: 8rem 20rem 8rem 6rem;

  }


}

 