body {
    margin: 0;                   /* Entfernt den Standardabstand des Browsers */
    padding: 0;                  /* Entfernt das Standard-Padding */
    font-family: 'Brisa Sans', sans-serif; /* Setzt die Schriftart */
    line-height: 1.4;            /* Erhöht den Zeilenabstand für bessere Lesbarkeit */
    background-color: #FBF9F3;   /* Setzt einen hellen Hintergrund */
    color: #332F2B;                 /* Dunkle Schriftfarbe für den Text */
}
/*colors*/
:root {
    --primary-color:#B04719;       /* Primärfarbe */
    --secondary-color: #FBF9F3;     /* Sekundärfarbe */
    --beige-light: #FBF9F3;     /* Sekundärfarbe */
    --beige: #E0D5BB;     /* Sekundärfarbe */
    --green-light: #8DA187;     /* Sekundärfarbe */
    --green: #566C54;     /* Sekundärfarbe */
    --text-color: #332F2B;              /* Textfarbe */
    --link-color:var(--beige);           /* Linkfarbe */
    --link-hover-color: var(--beige);     /* Linkfarbe bei Hover */
    --bs-gutter-x:1.5rem;
}
/* Spacing */
.mt-1{
    margin-top: 1.2rem!important;
}
.mt-2{
    margin-top: 2rem!important;
}
.mt-4{
    margin-top: 4rem!important;
}
.mb-1{
    margin-bottom: 1.2rem!important;
}
.mb-2{
    margin-bottom: 2rem!important;
}
.mb-4{
    margin-bottom: 4rem!important;
}
.pt-4{
    padding-top: 4rem!important;
}
.pb-4{
    padding-bottom: 4rem!important;
}

/* Font */
.topline{
    font-size: 18px;
 
    font-weight:250;
    letter-spacing: 1.5;
}
.topline-sections{
    font-size: 18px;
    text-transform: uppercase;
    font-weight:250;
    letter-spacing: 2;
}
.h1{
    font-family: "loretta-display", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 32px;
    margin: 0;
    padding: 0;
    color: #59504c;
}
.h2{
    font-family: "loretta-display", serif;
    font-weight: 300;
    font-style: normal;
    line-height: 120%;
    font-size: 26px;
    margin: 0;
    padding: 0; 
    color: #59504c; 
    margin-bottom: 12px;
}
.h3{
    font-family: "loretta-display", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 26px;
     margin-bottom: .4rem;
     margin-top: .2rem;
     color: #59504c;
}
.h4{
    font-family: 'Blacker Pro', sans-serif;
    font-weight: light;
    font-size: 32px;
    font-weight: 400;
     margin-bottom: .4rem;  
}
.p{
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}
.p-large{
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}
@media (min-width: 576px) {
    .h1 {
        font-size: 34px;
    }
}
@media (min-width: 990px) {
    .h1  {
        font-size: 42px;
    }
    .p-large{
        font-size: 20px;
    }
    .p{
        font-size: 1.1rem;
    }
    .h3{
        font-size: 24px;
    }
    .h2{
        font-size: 34px; 
    }
}
@media (min-width: 1200px) {
    .h1  {
        font-size: 42px;
    }
  }
@media (min-width: 1400px) {
    .h1  {
        font-size: 52px;
    }
}
/* basics */
a {
    color: #d7d7d7;                 /* Linkfarbe */
    text-decoration: none; 
    overflow: hidden;                /* Prevents the pseudo-element from overflowing */              /* Entfernt die Unterstreichung */
}
a:hover {          
    text-decoration: underline;       /* Entfernt die Unterstreichung */
}

.link-intern{
    color: #d7d7d7;                 /* Linkfarbe */
    text-decoration: none; 
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: .4rem;
}
.link-intern-icon{
    width: 20px;
    height: 20px;
    margin-right: .4rem;
}
.link-intern-text{
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;  
    color: #B04719;
    overflow: hidden;
    padding-left: .3rem;
}
.link-intern-text:hover{
 text-decoration: underline;
}
@media (min-width: 990px) {
    .link-intern-text{
        font-size: 20px;
    }
}
.input-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.primary-button{
 color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0);
    font-family: 'Brisa Sans';
    font-weight:300;
    font-size: 1rem;
    padding: 8px 16px;
    border:var(--primary-color) solid 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.primary-button:hover{
    background-color:#F6EBE2;
    border: #5a310c solid 1px;
    transform: scale(1.05);
    border:var(--primary-color) solid 1.2px;
}
/* form */
.form-label{
    font-size: 16px;
    line-height: 1.4;
    font-weight:300;
    margin-bottom: .5rem;
}
.form-control{
  display: block;
  width: 100%;
  padding: .45rem .85rem;
  font-family: 'Brisa Sans';
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 1px solid #a1a1a1;
  border-radius: 4px;
  transition: border-color .16s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:active,.form-control:focus{
    border: 2px solid var(--beige); 
    box-shadow:  0 0 0 0.15rem #bfbfbf4e;
}
input::placeholder {
    color: #c8c8c8;           
    font-weight: 200;  
    font-size: 1rem;   
}
.textarea{
    width: 100%; /* Textarea auf 100% */
    height: auto; /* Höhe passt sich automatisch an */
    min-height: 50px; /* Minimale Höhe */
    min-height: 90px;
}
textarea::placeholder {
    color: #888;             /* Placeholder text color for textarea */
    font-style: italic;      /* Italic font style */
    opacity: 1;              /* Opacity */
}
.textarea :focus{
    outline: none; /* Entfernt den Standard-Outline */
}
/* navbar */
.nav{
    position: fixed;
    z-index: 10000;
    height: 70px;
    width:100vw;
    display: flex;
    top: 0px;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--beige);
    background-color: transparent; 
    transition: background-color 0.6s ease;
}
.scrolled {
    background-color:#FBF9F3;
  }
  
.nav-logo{
    width: 140px;
    height: 30px;
}
/* components */
.hero{
    width:100%;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-items: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    position: relative;
}
#myVideo {
    object-fit: cover;
    right: 0;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 9;
    opacity: .3;
}
.myVideo{
    position: absolute;
}
.hero .h1{
    text-align: center;
}
.hero .topline{
    text-align: center;
    font-size: 18px;
}
.card{
    border: none;
    background-color: #fff0;
}
.contact-form{
    width: 100%;
}
@media (min-width: 990px) {
    .contact-form{
      width: 700px;
    }
}
.container{
    width: 100%;
    padding: 0 1rem;
}
@media (min-width: 576px) {
    .container {
        max-width: 100vw; 
    }
}
@media (min-width: 768px) {
    .container {
    max-width: 750px;
}
}
@media (min-width: 990px) {
    .container {
      max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
      max-width: 1000px;
    }
  }
@media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
}
@media (min-width: 1600px) {
    .container {
      max-width: 1540px;
    }
  }
@media (min-width: 2000px) {
    .container {
      max-width: 1920px;
    }
  }
  .card{
    width: 50%;
}
@media (max-width: 768px) {
    .card{
        width: 100%;
        margin-bottom: 2rem;
}
}

.container-s{
    width: 100%;
    padding: 0 1rem;
}
@media (min-width: 576px) {
    .container-s {
      max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container-s {
    max-width: 750px;
}
}
@media (min-width: 990px) {
    .container-s {
      max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container-s {
      max-width: 1000px;
    }
  }
@media (min-width: 1400px) {
    .container-s {
      max-width: 1100px;
    }
}
@media (min-width: 1600px) {
    .container-s {
      max-width: 1200px;
    }
  }

  /* Sections */
  .intro{
    width: 100%;
    background:#fffffe;
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    justify-content: center;
  }
  .contact{
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: center;
  }
  .contact .container{
    display: flex;
    justify-content: center;
  }
.service{
    width: 100vw;
    background:#fffffe;
    padding-bottom: 6rem;
    display: flex;
    justify-content: center;
}
.teaser{
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    justify-content: center;
}
.teaser .two-column{
align-items: center;
}
.footer{
    width: 100%;
    padding: 4rem 0 0 0;
    border-top: 1px solid var(--beige);
}
.footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
}
.footer-row{
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color:#f1eee5;
    margin-top: 4rem;
    padding: .6rem 0;
}
.footer-row .a{
    font-size: 14px;
    color: var(--text-color);
    font-weight: 300;
}
.logo{
    width: 200px;
}



  /* IMG - Ratios */
  .img-bildmarke{
    display: block;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
.image-16x9{
    position: relative;           /* Enables absolute positioning for the image */
    width: 100%;                 /* Full width of the parent */
    padding-top: 56.25%;         /* 16:9 aspect ratio (9 / 16 = 0.5625) */
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.2rem;
}
.image-16x9 img {
    position: absolute;          /* Position the image absolutely */
    top: 0;                      /* Align to the top */
    left: 0;                     /* Align to the left */
    width: 100%;                 /* Make the image fill the container */
    height: 100%;                /* Make the image fill the container */
    object-fit: cover;           /* Cover the container while maintaining aspect ratio */
}



  /* Utilitys */
  .two-column{
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  @media (max-width: 768px) {
    .two-column{
    flex-direction: column;
}
}
  .centered{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .text-centered{
    text-align: center;
  }
/* viewports */