/* 
Theme Name: Kaffeeschrauberei
Theme URI: /
Description: Kaffeeschrauberei Theme
Author: www.farbzirkel.com
Version: 1.1
Tags: farbzirkel
*/
.hidden {
  display: none;
  visibility: hidden;
}

.show {
  display: block;
  visibility: visible;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

::selection {
  background-color: #ffec6d; /* Hintergrundfarbe beim Markieren */
  color: #000000; /* Textfarbe beim Markieren */
}

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 auto;
}

body {
  background-color: #ffffff;
  margin: 0;
}

.cky-notice {
  font-family: "Fira Light";
}

.cky-modal {
  font-family: "Fira Light";
}

@font-face {
  font-display: swap;
  font-family: "Fira Light";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/fira-sans-v17-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira Regular";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/fira-sans-v17-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira Medium";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/fira-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Fira SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/fira-sans-v17-latin-600.woff2") format("woff2");
}
/* 
Theme Name: Kaffeeschrauberei
Theme URI: /
Description: Kaffeeschrauberei Theme
Author: www.farbzirkel.com
Version: 1.1
Tags: farbzirkel
*/
@media (min-width: 75.0625rem) {
  main {
    padding-top: 80px;
  }
  .header {
    width: 100%;
    background-color: #ffffff;
    height: 80px;
    position: fixed;
    z-index: 200;
    display: flex;
    align-items: center;
  }
  .header .nav {
    display: none;
  }
  .header .header-inner {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header-inner svg {
    transition: 0.3s ease all;
  }
  .header .header-inner svg:hover {
    opacity: 0.5;
  }
  .header .header-inner .burger-menu {
    display: none;
  }
  .header .header-inner .menu-large {
    z-index: 199;
  }
  .header .header-inner .menu-large a {
    color: #000000;
    font-family: "Fira Regular";
    font-size: 1.2rem;
    text-decoration: none;
  }
  .header .header-inner .menu-large #kontakt-menu-point {
    font-family: "Fira Medium";
    background-color: #ffdd00;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    transition: 0.5s ease all;
  }
  .header .header-inner .menu-large #kontakt-menu-point:hover {
    color: #ffdd00;
    background-color: #000000;
  }
  .header .header-inner .menu-large .menu-point {
    position: relative;
    font-size: 1.2rem;
    color: #000000;
    margin-right: 30px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
  }
  .header .header-inner .menu-large .menu-point::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: #ffdd00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
  }
  .header .header-inner .menu-large .menu-point:hover {
    background-color: #ffdd00;
  }
  .header .header-inner .menu-large .menu-point.active::after {
    transform: scaleX(1);
  }
  .menu-mobile {
    display: none;
  }
  .dropdown {
    position: fixed;
    padding-top: 80px;
    z-index: 199;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .dropdown.show {
    max-height: 45rem;
  }
  .dropdown .dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    display: flex;
  }
  .dropdown .dropdown-inner .grid-menu-left {
    width: 30%;
    display: flex;
    align-items: center;
  }
  .dropdown .dropdown-inner .grid-menu-left ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .dropdown .dropdown-inner .grid-menu-left ul li a {
    position: relative;
    font-family: "Fira Regular";
    text-decoration: none;
    font-size: 1.5rem;
    color: #000000;
    padding: 5px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .dropdown .dropdown-inner .grid-menu-left ul li a:hover {
    background-color: #ffdd00;
  }
  .dropdown .dropdown-inner .grid-menu-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    width: 70%;
    padding-right: 20px;
    height: 350px;
  }
  .dropdown .dropdown-inner .grid-menu-right a {
    text-decoration: none;
  }
  .dropdown .dropdown-inner .grid-menu-right .text-box-menu-card {
    padding-left: 20px;
    padding-top: 20px;
  }
  .dropdown .dropdown-inner .grid-menu-right .text-box-menu-card p {
    color: #ffdd00;
    font-size: 1.8rem;
    font-family: "Fira Medium";
    padding-bottom: 10px;
  }
  .dropdown .dropdown-inner .grid-menu-right .text-box-menu-card span {
    font-family: "Fira Regular";
    color: #ffffff;
    font-size: 1.2rem;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-first {
    position: relative;
    grid-column: 1/3;
    height: 100%;
    background-image: url(./images/finanzierung.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-first::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: 0.3s ease all;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-first:hover::before {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-first > * {
    position: relative;
    z-index: 2;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-second {
    position: relative;
    grid-column: 1;
    height: 100%;
    background-image: url(./images/service.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-second::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: 0.3s ease all;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-second:hover::before {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-second > * {
    position: relative;
    z-index: 2;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-third {
    position: relative;
    grid-column: 2;
    height: 100%;
    background-image: url(./images/betreuung.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-third::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: 0.3s ease all;
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-third:hover::before {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .dropdown .dropdown-inner .grid-menu-right .menu-card-third > * {
    position: relative;
    z-index: 2;
  }
}
/* 
Theme Name: Kaffeeschrauberei
Theme URI: /
Description: Kaffeeschrauberei Theme
Author: www.farbzirkel.com
Version: 1.1
Tags: farbzirkel
*/
@media (min-width: 0rem) and (max-width: 75rem) {
  .header {
    width: 100%;
    background-color: #ffffff;
    padding-top: 2px;
    position: fixed;
    z-index: 200;
  }
  .header .header-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header-inner .menu-large {
    display: none;
  }
  .header .header-inner .burger-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .header-inner .burger-menu .menu-icon {
    transform: scale(1.5);
  }
  .header .header-inner .menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .header .header-inner .menu-icon__cheeckbox {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    -webkit-touch-callout: none;
  }
  .header .header-inner .menu-icon div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 22px;
    height: 12px;
  }
  .header .header-inner .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bar-bg, #ffdd00);
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
  }
  .header .header-inner .menu-icon span:first-of-type {
    top: 0;
  }
  .header .header-inner .menu-icon span:last-of-type {
    bottom: 0;
  }
  .header .header-inner .menu-icon.active span:first-of-type, .header .header-inner .menu-icon__cheeckbox:checked + div span:first-of-type {
    transform: rotate(45deg);
    top: 5px;
  }
  .header .header-inner .menu-icon.active span:last-of-type, .header .header-inner .menu-icon__cheeckbox:checked + div span:last-of-type {
    transform: rotate(-45deg);
    bottom: 5px;
  }
  .header .header-inner .menu-icon.active:hover span, .header .header-inner .menu-icon:hover .header .header-inner .menu-icon__cheeckbox:checked + div span {
    width: 22px;
  }
  .menu-mobile {
    position: fixed;
    z-index: 199;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #000000;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu-mobile.open {
    display: flex;
  }
  .menu-mobile .copyright-mobile-menu {
    width: 90%;
    margin: 0 auto;
  }
  .menu-mobile .copyright-mobile-menu p {
    font-family: "Fira Light";
    color: #ffffff;
    font-size: 0.7rem;
    padding-bottom: 10px;
  }
  .menu-mobile .menu-mobile-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    padding: 20dvh 0;
  }
  .menu-mobile .menu-block {
    display: flex;
    flex-direction: column;
  }
  .menu-mobile .menu-block #menu-mobile-point-highlight {
    color: #ffffff;
    font-family: "Fira Medium";
  }
  .menu-mobile .menu-block .menu-point {
    font-family: "Fira Regular";
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffdd00;
    font-size: 1.5rem;
    padding: 0.6rem 0;
  }
  .menu-mobile .menu-block .dropdown-mobile {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
  }
  .menu-mobile .menu-block .dropdown-mobile a {
    font-family: "Fira Light";
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.7rem 0;
  }
  .menu-mobile .menu-block .dropdown-mobile .line-menu-mobile {
    color: #ffdd00;
    font-family: "Fira SemiBold";
  }
  .dropdown {
    display: none;
  }
}
/* 
Theme Name: Kaffeeschrauberei
Theme URI: /
Description: Kaffeeschrauberei Theme
Author: www.farbzirkel.com
Version: 1.1
Tags: farbzirkel
*/
@media (min-width: 75.0625rem) {
  footer {
    background-color: #ffdd00;
  }
  footer p {
    text-align: center;
    color: #000000;
    font-family: "Fira Regular";
    font-size: 0.8rem;
    padding-bottom: 30px;
    padding-top: 10px;
  }
  footer .copyright-footer {
    text-align: center;
  }
  footer .footer-wrapper {
    padding-top: 30px;
    width: 90%;
    margin: 0 auto;
    max-width: 1700px;
  }
  footer .footer-wrapper .footer-column1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20%;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  footer .footer-wrapper .footer-column1 a {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-family: "Fira Regular";
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  footer .footer-wrapper .footer-column1 a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
  }
  footer .footer-wrapper .footer-column1 a:hover::after {
    width: 100%;
  }
  footer .footer-wrapper .footer-column2 p {
    padding-bottom: 15px;
    padding-top: 0px;
  }
  footer .footer-wrapper .footer-column2 img {
    width: 150px;
    padding-bottom: 5px;
    transition: 0.3s ease all;
  }
  footer .footer-wrapper .footer-column2 img:hover {
    opacity: 0.5;
  }
}
/* 
Theme Name: Kaffeeschrauberei
Theme URI: /
Description: Kaffeeschrauberei Theme
Author: www.farbzirkel.com
Version: 1.1
Tags: farbzirkel
*/
@media (min-width: 0rem) and (max-width: 75rem) {
  footer {
    background-color: #ffdd00;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer p {
    text-align: center;
    color: #000000;
    font-family: "Fira Regular";
    font-size: 0.8rem;
    padding-top: 10px;
  }
  footer .copyright-footer {
    text-align: center;
  }
  footer .footer-wrapper {
    padding-top: 40px;
    width: 280px;
    margin: 0 auto;
  }
  footer .footer-wrapper .footer-column1 {
    text-align: center;
    padding-bottom: 30px;
  }
  footer .footer-wrapper .footer-column1 a {
    text-decoration: none;
    color: #000000;
    font-family: "Fira Regular";
    font-size: 1.2rem;
    padding-bottom: 15px;
  }
  footer .footer-wrapper .footer-column2 img {
    width: 120px;
    padding-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
