/* ----------------------------------------------------
   FONT IMPORTS
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Open+Sans:wght@300;400;600&display=swap');

/* ----------------------------------------------------
   COLOR VARIABLES — BRAND PALETTE
---------------------------------------------------- */
:root {
    --brand-orange: #EC8742;     /* Primary Button Background */
    --accent-1: #F8D8C3;         /* Light Peach */
    --accent-2: #F5B589;         /* Mid Peach */
    --neutral-text: #555555;     /* Body text */
    --dark-bg: #262628;          /* Footers */
    --white: #FFFFFF;            /* Base */
    --color-A: #ff8433;          /* Darker Orange */
    --color-B: #ffba8c;          /* Lighter Orange */
}

/* ----------------------------------------------------
   GLOBAL LAYOUT STYLE
---------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    color: var(--neutral-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

#section5 {
    margin-top: 40px !important;
}

section + section {
    margin-top: 40px;
}

/* Gentle animation for warm, calm tone */
* {
    transition: all 0.25s ease;
}

/* ----------------------------------------------------
   TYPOGRAPHY SYSTEM
---------------------------------------------------- */

/* H1/H2 — uppercase, thin, large letter spacing */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8em;
    color: var(--dark-bg);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem !important; }

/* Subheadings — uppercase, medium weight, structured */
h3, .subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--neutral-text);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
}

/* Body text — calm gray readable tone */
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin: 0 0 1.2rem;
    color: var(--neutral-text);
}

/* Highlight text — emphasis */
strong, .highlight {
    font-weight: 600;
    color: var(--dark-bg);
}

/* ----------------------------------------------------
   BUTTONS — Friendly, rounded, warm
---------------------------------------------------- */
.btn-orange {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 30px;               /* Rounded friendly feel */
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    background: var(--brand-orange);
    color: var(--white) !important;
}

.btn-orange:hover {
    background: var(--accent-2) !important;       /* soft peach hover */
}

/* ----------------------------------------------------
   ICON STYLE
---------------------------------------------------- */
.icon {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

/* Icons inside features */
.feature-icon {
    background: var(--accent-1);
    padding: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* ----------------------------------------------------
   SECTION DIVIDERS / WAVES
---------------------------------------------------- */

/* Soft layered wave effect */
.wave-top {
    background: linear-gradient(to bottom, var(--accent-1), var(--white));
}

.wave-mid {
    background: linear-gradient(to bottom, var(--accent-2), var(--accent-1));
}

.wave-bottom {
    background: linear-gradient(to bottom, var(--brand-orange), var(--accent-2));
}

/* ----------------------------------------------------
   WHITE SPACE — Calm Layout
---------------------------------------------------- */
.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.spacer-xl { height: 80px; }
.spacer-lg { height: 50px; }
.spacer-md { height: 30px; }
.spacer-sm { height: 15px; }

/* ----------------------------------------------------
   ACCESSIBILITY & CONTRAST
---------------------------------------------------- */
.text-dark { color: var(--dark-bg); }
.text-light { color: var(--white); }

/* Avoid orange text on white for readability */
.text-orange { color: var(--brand-orange); }
.text-orange-on-white {
    color: var(--neutral-text); /* fallback - prevents poor contrast */
}

/* ----------------------------------------------------
   CARDS / BOX ELEMENTS — Rounded, soft borders
---------------------------------------------------- */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
}

/* ----------------------------------------------------
   FOOTER — Dark background zone
---------------------------------------------------- */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
}

.footer a {
    color: var(--white);
    opacity: 0.85;
}

.footer a:hover {
    opacity: 1;
}

/* custom styles */
.text-medium {
    font-size: 2.4rem !important;
    letter-spacing: 0;
}
.row > .col-lg-4.color-box-A:nth-child(odd) {
    background-color: var(--color-A); /* #ff8433 */
    transition: background-color 0.3s ease;
}

.row > .col-lg-4.color-box-A:nth-child(odd) .text-box:hover {
    background-color: var(--color-B);
}
.row > .col-lg-4.color-box-B:nth-child(even) {
    background-color: var(--color-B);
    transition: background-color 0.3s ease;
}

.row > .col-lg-4.color-box-B:nth-child(even) .text-box:hover {
    background-color: var(--color-A); /* #ff8433 */
}
#mainMenu li a {
  color: black !important;
}
#header .header-inner #logo a > img, #header #header-wrap #logo a > img { 
    width: 114px;
}
#header.dark .header-inner .lines, #header.dark .header-inner .lines:after, #header.dark .header-inner .lines:before {
    background-color: black;
}
#logo {
    display: flex;
  flex-direction: row;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
}
.logo-dark {
    height: 4rem;
}
.row.pop-up {
  padding: 25px;
  text-align: center;
  position: fixed;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  background: #EEE;
  opacity: 1;
  z-index: 9999;
  margin: 0;
}
.col-no-margin [class^="col"] {
  margin: 0 !important;
  padding: 0 !important;
}
.text-box.hover-effect p {
  opacity: 1;
}
.bg-overlay {
    background: #eaeaea !important;
}
.first-box .list-icon {
  opacity: 1;
  backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.6);
  color: #000;
  padding: 20px;
  z-index: 2;
  border-radius: 25px;
}
.list-icon li::before {
    margin-top: 4px;
}
.header-btn {
    margin-top: 3px;
}
.header-btn a {
    margin-left: 5px;
}
.header-btn .btn-orange {
    display: inline;
    margin-left: 5px;
}
#section1 .subttl {
    color: black;
}
#section1 {
        background-image: url(/__preview/LP/image/background/Haus_3_und_3a_ruck_zuschnitt.jpg);
      background-size: cover;
      background-repeat: no-repeat !important;
      background-position: center;
      background-attachment: fixed;
}
.header-btn a {
    color: black;
}
.header-btn a:first-of-type:hover {
    color: #EC8742 !important;
}
.menu-animate {
    min-height: 450px !important;
}
.list-icon.list-icon-colored li::before, .list-icon.icon-list-colored i {
    color: #ec8742;
}
.rounded-logo {
    margin-top: 7rem !important;
}
.timeline .timeline-item .timeline-icon {
    background-color: #ec8742;
}
.counter.small {
    font-size: 32px;
}
.flickity-button:hover {
    background-color: #ff8433;
}
#scrollTop::after, #scrollTop::before {
    background-color: #ec8742;
}
#section4 .row {
  height: 338px;
}
#section12 {
    background: #EA9B66 !important;
}

/*section#section10 {
    padding: 30px 0 !important;
}*/

@media (max-width: 1200px) {
    #section1 {
        background-repeat: repeat;
    }
}
@media (min-width: 1200px) {
    #mainMenu nav {
        display: flex;
    }
}
@media(min-width: 992px) and (max-width: 1200.50px){
  #mainMenu nav {
      float: right;
      width: 86.5%;
      margin-left: auto;
  }

  #mainMenu nav > ul > li > a {
    padding: 10px 7px;
  }

  #header .container {
    width: 100vw;
    max-width: 100%;
  }

  #mainMenu nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media(min-width: 768px) and (max-width: 991.50px){
  .container{
    width: 100% !important;
    max-width: 100% !important;
  }

  #section6 .col-lg-8 , #section12 .col-lg-8{
    width: 64% !important;
  }

  #section6 .col-lg-4 , #section12 .col-lg-4{
    width: 36% !important;
  }
  .make-large-logo {
    min-width: unset !important;
  }
}
@media (max-width: 991px) {
    #section1 .container {
        padding: 0 10px;
    }
    .mb-50 {
        margin-bottom: 50px;
    }
    .modal {
        overflow-x: scroll;
    }
    .row.pop-up {
        padding: 10px;
    }
    .row.pop-up h3 {
        margin-top: 0;
    }
    .content {
        margin-bottom: 6px;
    }
    .rounded-logo {
        margin-top: 0rem !important;
    }
}
@media (min-width: 991px) {
    .btn-space {
        margin-top: 1.5rem;
    }
}

/*NEW STYLE*/

#section1 span {
    font-weight: bold;
    text-shadow: 0 0 #000000;
    color: black;
    font-size: 1.25rem;
}
#section1 .subttl {
    font-weight: bold;
    text-shadow: 0 0 #000000;
    font-size: 1.25rem;
}
#section11 h3{
    font-size: 1.25rem;
}
.make-large-logo{
    min-width: 300px;
}

.testimonial-item{
  display: flex;
  flex-wrap: wrap;
}

.testi-img {
    width: 160px;
    height: 160px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.testi-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-info{
  padding-left: 60px;
  text-align: left;
  width: calc(100% - 160px);
}

.testi-info strong{
    font-weight: 600;
    font-size: 15px;
    display: block;
    line-height: 22px;
}

.testi-info span{
  font-weight: 500;
  color: #1e2022;
  display: block;
  font-size: 13px;
  font-style: italic;
}

.owl-theme .owl-nav{
  margin: 0px;
}

.owl-theme .owl-nav [class*='owl-'] {
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  color: #1e2022;
  text-align: center;
  z-index: 200;
  border: 0;
  box-sizing: initial;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  padding: 0px;
  margin: -30px 0 0 0;
  font-size: 0px;
}

.owl-theme .owl-nav [class*='owl-']:hover{
  background: #ff8433;
}

.owl-theme .owl-nav .owl-prev{
  left: 0px;
}

.owl-theme .owl-nav .owl-next{
  right: 0px;
}

.owl-theme .owl-nav .owl-prev:before {
    content: "\e92f";
    margin-right: 2px;
}

.owl-theme .owl-nav .owl-next:before, .owl-theme .owl-nav .owl-prev:before {
    font-size: 25px;
    font-family: inspiro-icons !important;
}

.owl-theme .owl-nav .owl-prev:before , .owl-theme .owl-nav .owl-next:before {
    color: #1e2022;
}

.owl-theme .owl-nav .owl-prev:hover:before , .owl-theme .owl-nav .owl-next:hover:before {
    color: #ffffff;
}

.owl-theme .owl-nav .owl-next:before {
    margin-left: 4px;
    content: "\e930";
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--brand-orange);
}

.accordion.fancy.radius.clean.mb-12 {
  margin-bottom: 6rem;
}

#modal-3 .modal-content , #modal-4 .modal-content{
  background: transparent;
  border: none;
  border-radius: 0px !important;
}

#modal-3 .modal-content .modal-body , #modal-4 .modal-content .modal-body{
  padding: 0px;
}

#modal-3 .modal-content .modal-footer .btn-orange , #modal-4 .modal-content .modal-footer .btn-orange {
    padding: 0;
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 20px;
}

#modal-3 .modal-content .modal-footer, #modal-4 .modal-content .modal-footer {
    padding: 0;
    border: none;
    position: absolute;
    top: -55px;
    right: 5px;
    z-index: 22;
}

#modal-3 .modal-dialog , #modal-4 .modal-dialog{
  margin-top: 75px;
}

.footer-part{
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212125;
  color: #666;
}

.footer-part p {
    margin-bottom: 1rem;
    line-height: 2em;
    color: #ffffff;
}

.footer-part h4 {
  color: #b3b3b3;
  font-size: 1.25rem;
  font-weight: 200;
  text-transform: uppercase;
}

.footer-part a {
  text-decoration: none;
  color: #c8c8c8;
  font-weight: 300;
}

.footer-part a:hover {
  color: #b3b3b3 !important;
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 100%;
    }

    .modal{
      padding-left: 15px;
      padding-right: 15px;
    }
}

@media(max-width: 991.50px){
  #header #logo{
    left: 30px;
  }

  .heading-text {
      margin-bottom: 30px;
  }

  .testi-img{
    width: 80px;
    height: 80px;
    margin: 20px auto;
  }

  .testi-info {
    padding-left: 0px;
    text-align: center;
    width: calc(100%);
  }

  .testimonial.testimonial-single .testimonial-item {
    padding: 10px 60px;
  }
}

@media(max-width: 767.50px){

  .text-box{
    padding: 30px;
  }

  .text-box.hover-effect i {
      margin: 0px 0 15px 0;
  }

  .text-box.hover-effect:hover i {
    margin: 0px 0 15px 0;
  }

  .text-box.hover-effect{
      height: auto !important;
      padding: 30px 30px 30px 30px;
  }

  h2{
    line-height: normal !important;
  }

  .p-t-150 {
    padding-top: 80px !important;
  }

  .p-b-150 {
    padding-bottom: 80px !important;
  }

  .text-box{
    height: auto !important;
  }

  .timeline .timeline-item {
    margin: 3rem 2rem 3rem 2rem;
  }

  .container {
    width: 100vw;
  }

  .carousel .flickity-button.previous, .carousel .flickity-button.previous:hover {
    left: -15px !important;
  }

  .carousel .flickity-button.next, .carousel .flickity-button.next:hover{
    right: -15px !important;
  }

  .accordion .ac-item .ac-title {
    padding-right: 30px;
  }

  .first-box .list-icon {
    background: rgba(255,255,255,0.85);
  }

  .bg-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
  }

  #section1 .text-medium , #section1 .subttl{
    color: var(--white);
    text-shadow: none !important;
  }

  .mfp-ready .modal {
    padding: 50px 20px;
  }

  .footer-part .col-xs-12{
    width: 100%;
    margin-bottom: 35px;
  }

  .footer-part .col-xs-12:last-child{
    margin-bottom: 0;
  }

  .footer-part{
    padding-bottom: 7rem;
  }

}

@media(max-width: 576.50px){
  .text-medium {
    font-size: 2.2rem !important;
  }

  .footer-part{
    padding-bottom: 10rem;
  }
}
.accordion.fancy.radius.clean.mb-12 {
  margin-bottom: 6rem;
}