@charset "UTF-8";
/* Google Font CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #3c5c12;
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #b2d599;
}

/* navbar styling */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: "Ubuntu", sans-serif;
}

nav.sticky {
  background: #3c5c12;
  padding: 13px 0;
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #000000;
}

nav.sticky .navbar .logo a {
  color: #fff;
}

nav .navbar .menu {
  display: flex;
  position: relative;
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 8px;
}

.navbar .menu a {
  font-size: 14px;
  font-weight: 500;
  color: #273b0d;
  padding: 6px 0;
  transition: all 0.4s ease;
}

.navbar .menu a:hover {
  color: #000000;
}

nav.sticky .menu a {
  color: #FFF;
}

nav.sticky .menu a:hover {
  color: #a2dd56;
}

.navbar .media-icons a {
  color: #273b0d;
  font-size: 18px;
  margin: 0 6px;
}

nav.sticky .media-icons a {
  color: #FFF;
}

/* Side Navigation Menu Button CSS */
nav .menu-btn, .navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

nav .menu-btn {
  color: #406115;
}

nav.sticky .menu-btn {
  color: #FFF;
}

.navbar .menu .menu-btn {
  color: #fff;
}

/* home */
.availability-notice {
  background-color: #fffffe;
  border: 1px solid #77b707;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", sans-serif;
}
.availability-notice h2 {
  color: #4f830d;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.availability-notice p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4f830d;
  margin-bottom: 10px;
}
.availability-notice .welcome {
  font-weight: 600;
  font-size: 1.1rem;
  color: #4f830d;
}

.home {
  background: #f1fde1;
}

.content {
  margin: 0 auto;
  padding: 30px 0;
  margin-top: -1000px;
}

.text {
  width: 80%;
  text-align: left;
  margin: auto;
}

.image-container {
  width: 100%;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 15px;
}

.image-container img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

#content1 {
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
  max-height: 180px;
  overflow: hidden;
  /* Set Transitions */
  transition: max-height 0.7s;
}

#content1.open {
  max-height: 2900px;
  /* Set Transitions */
  transition: max-height 0.7s;
}

#show-more {
  width: 20%;
  color: #72b006;
  font-family: sans-serif;
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 1px;
  margin: 10px auto;
}

.topic {
  text-align: center;
}

/* About */
section {
  padding-top: 40px;
}

section .content {
  width: 80%;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
}

.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to the start */
}

section .title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

section .title span {
  color: #0E2431;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

section .title span::before, section .title span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #355b18;
  left: 0;
  bottom: 0;
}

section .title span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

.about .about-details .left {
  width: 45%;
}

.about .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-details .right {
  width: 55%;
}

section .topic {
  color: #0E2431;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-details .right p {
  text-align: left; /* Align text to the left */
  color: #0E2431;
  word-spacing: normal; /* Reset word spacing */
  letter-spacing: normal; /* Reset letter spacing */
  line-height: 1.5; /* Adjust line height for better readability */
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
}

section .button {
  margin: 16px 0;
}

section .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: #5c772e;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

section .button button:hover {
  border-color: #dafda0;
  background-color: #fff;
  color: #dcfab9;
}

/* Rückmeldungen */
.ruckmeldungen {
  background: #f1fde1;
}

.ruckmeldungen .content {
  padding: 40px 0;
}

.ruckmeldungen .ruckmeldungen-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ruckmeldungen-details .text {
  width: 50%;
}

.gallery {
  display: flex;
  overflow-x: scroll;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: cursive;
  font-size: small;
  top: 250px;
}

.gallery-item {
  flex-shrink: 0;
  width: 33.3333333333%;
  margin-right: 10px;
}

.gallery-item img {
  width: 50%;
}

/* Slideshow container */
.slideshow-container1 {
  position: relative;
  background: #f1fde1;
}

/* Slides */
.mySlides {
  display: none;
  padding: 50px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 10px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: #605f5f;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 2px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #626060;
}

/* Add an italic font style to all quotes */
q {
  font-style: italic;
}

/* Add color to the author */
.author {
  color: #e47748;
}

/* Co - Regulation */
.coregulation {
  background: #f1fde1;
}

.buttons {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5c772e;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
  top: 100px;
  padding: 10px;
  margin-left: 20px;
  margin-top: 20px;
}

.button:hover {
  background-color: #a2dd56;
}

/*tantra*/
.tantra {
  background: #f1fde1;
}

/* Contact */
.contact .content {
    /* Use the same spacing as the .about section for consistency */
    width: 80%;
    margin: 40px auto; 
    padding: 30px 0;
}

/* ------------------------------------------- */
/* TWO-COLUMN LAYOUT AND STYLING FOR CONTACT */
/* ------------------------------------------- */

/* 1. Establish the two-column container */
.contact-details {
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 2. Left Column (Text/Info) */
.contact-details .left {
    width: 45%; 
    text-align: left;
    padding-right: 20px; 
}
.contact-details .left .topic {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3c5c12;
}


/* 3. Right Column (Map) */
.contact-details .right {
    width: 55%; 
}

.contact-details .left p .contact-icon { 
    color: #3c5c12 !important; 
    font-size: 16px; 
}

.contact-details .left p {
    line-height: 1.8; 
    margin: 0;
}

.contact-details .right .map-container iframe {
    width: 100%;
    height: 350px; 
    display: block;
    border: none; 
    border-radius: 6px; 
}

.contact .text {
    width: auto; 
    text-align: inherit;
    margin: 0;
}

.contact-icon-green {
    color: #3c5c12; /* This is your green color */
}

.contact-details .left .contact-title-text {
    color: inherit; /* This makes it inherit the default dark text color */
}

/*contact2*/
.contact2 {
    background: #f1fde1;
}

.contact2 .content {
    margin: 0 auto;
    padding: 300px 0;
}

/*Datenschutzrichtlinie*/
.Datenschutzrichtlinie {
    background: #f1fde1;
}

.Datenschutzrichtlinie .content {
    margin: 0 auto;
    padding: 70px 0;
}

/* Footer CSS */
footer {
    background: #3c5c12;
    padding: 15px 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

footer a:link {
    color: #ffffff;
}

footer .text span {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

footer .text span a {
    font-weight: 500;
    color: #FFF;
}

footer .text span a:hover {
    text-decoration: underline;
}

/* Scroll TO Top Button CSS */
.scroll-button a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    background: #3c5c12;
    padding: 7px 12px;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.15);
    display: none;
}

/* ------------------------------------------- */
/* RESPONSIVE MEDIA QUERIES */
/* ------------------------------------------- */

@media (max-width: 1190px) {
    section .content {
        width: 85%;
    }
}

@media (max-width: 1000px) {
    .about .about-details {
        justify-content: center;
        flex-direction: column;
    }

    .about .about-details .left {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-details .right {
        width: 90%;
        margin: 40px 0;
    }

    .services .boxes .box {
        margin: 20px 0;
        width: calc(100% / 2 - 20px);
    }
    
    /* CRITICAL: STACKING RULES FOR CONTACT */
    .contact-details {
        flex-direction: column; /* Stack columns vertically */
    }

    .contact-details .left,
    .contact-details .right {
        width: 100%; /* Items take full width when stacked */
        padding-right: 0;
        margin-bottom: 20px; /* Space between stacked elements */
    }
}

@media (max-width: 900px) {
    .about .left img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 750px) {
    nav .navbar {
        width: 90%;
    }

    nav .navbar .menu {
        position: fixed;
        left: -100%;
        top: 0;
        background: #3c5c12;
        height: 100vh;
        max-width: 400px;
        width: 100%;
        padding-top: 60px;
        flex-direction: column;
        align-items: center;
        transition: all 0.5s ease;
    }

    .navbar.active .menu {
        left: 0;
    }

    nav .navbar .menu a {
        font-size: 23px;
        display: block;
        color: #fff;
        margin: 10px 0;
    }

    nav.sticky .menu a:hover {
        color: #0e1504;
    }

    nav .navbar .media-icons {
        display: none;
    }

    nav .menu-btn, .navbar .menu .cancel-btn {
        display: block;
    }

    .skills .skills-details {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .skills-details .text {
        width: 100%;
        margin-bottom: 50px;
    }

    .skills-details .boxes {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .services .boxes .box {
        margin: 20px 0;
        width: 100%;
    }

    .contact .text {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .skills-details .boxes .per {
        font-size: 50px;
        color: #17021a;
    }
}
