@charset "UTF-8";
/**
* Theme Name:    Hotel-Gasthaus zur Krone
* Theme URI:     http://www.df-kreativ.de
* Author:        Daniel Faßbender | df-kreativ
* Author URI:    http://www.df-kreativ.de/
* Description:   Developed for Wordpress 7 width custom Gutenberg Blocks
* Version:       1.0
*/
@font-face {
  font-family: "NotoSerif";
  src: url("fonts/NotoSerif-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlusJakartaSansLight";
  src: url("fonts/PlusJakartaSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlusJakartaSansBold";
  src: url("fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  background: rgb(245, 240, 230);
  margin: 0;
  padding: 0;
  font-family: "PlusJakartaSansLight", sans-serif;
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

#root {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
}

@media (max-width: 1300px) {
  body {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 16px;
  }
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-family: "NotoSerif", serif;
  text-wrap: balance;
  color: rgb(70, 103, 65);
  line-height: 1;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.8rem;
}

@media (max-width: 1300px) {
  h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
}
p {
  margin: 0;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  p {
    margin-bottom: 10px;
    text-wrap: pretty;
  }
}
strong {
  font-family: "PlusJakartaSansBold", sans-serif;
}

a {
  color: rgb(70, 103, 65);
  text-decoration: none;
  transition: all ease-in 0.25s;
}

a:hover {
  color: rgb(48, 55, 46);
  text-decoration: none;
  text-decoration: none;
}

a.btnPrimary {
  background: rgb(70, 103, 65);
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 50px;
  color: white;
  margin: 20px 20px 0 0;
  font-family: "PlusJakartaSansBold", sans-serif;
}

a.btnPrimary:hover {
  background: rgb(48, 55, 46);
  color: white;
}

a.btnWhite {
  background: white;
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 50px;
  color: rgb(70, 103, 65);
  margin: 20px 20px 0 0;
  font-family: "PlusJakartaSansBold", sans-serif;
}

a.btnWhite:hover {
  background: rgb(48, 55, 46);
  color: white;
}

a.btnOutline {
  background: none;
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 50px;
  color: rgb(70, 103, 65);
  border: 1px solid rgb(70, 103, 65);
  margin: 20px 20px 0 0;
  font-family: "PlusJakartaSansBold", sans-serif;
}

a.btnOutline:hover {
  background: rgb(48, 55, 46);
  color: white;
}

a.wp-block-button__link.wp-element-button {
  background: rgb(70, 103, 65);
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 50px;
  color: white;
  margin-top: 20px;
  font-family: "PlusJakartaSansBold", sans-serif;
}

a.wp-block-button__link.wp-element-button:hover {
  background: rgb(48, 55, 46);
  color: white;
}

.sectionMargin {
  margin-top: 130px;
}

.sectionMarginSmall {
  margin-top: 70px;
}

@media (max-width: 500px) {
  .sectionMargin {
    margin-top: 70px;
  }
  .sectionMarginSmall {
    margin-top: 40px;
  }
}
.wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container {
  width: min(90%, 100rem);
}

/* Wenn main ein #hero enthält, padding-top entfernen */
main:has(#hero) {
  padding-top: 0;
}

.grid-auto {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.gridResponsive {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.grid-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.contentContainer {
  display: grid;
  gap: 5rem;
  grid-template-columns: 2fr 1fr;
}

.bigGap {
  gap: 5rem;
}

/* Speziell: Gutenberg-Spalten innerhalb von .wrap ebenfalls begrenzen */
.wrap .wp-block-columns:not(.alignfull) {
  width: min(90%, 100rem);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Volle Breite weiterhin erlauben, wenn explizit "Volle Breite" gewählt */
.wrap > .alignfull,
.wrap .wp-block-columns.alignfull {
  width: 100%;
  max-width: 100%;
}

/* Standard: alles im Container bleibt begrenzt – so wie bei dir */
.container > .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Optional: horizontales Padding der Seite berücksichtigen */
body {
  overflow-x: hidden;
}

@media (max-width: 1400px) {
  .contentContainer {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1300px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 5em;
}

@media (max-width: 1200px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
header {
  background: white;
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 15px 0 15px;
  transition: all ease-in 0.25s;
}

.headerTiny {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
  padding: 10px 0 10px;
}

.brand {
  width: 250px;
  transition: all ease-in 0.25s;
}

.brandTiny {
  width: 200px;
}

@media (max-width: 500px) {
  .brand {
    width: 200px;
  }
}
.main-nav {
  position: relative;
  z-index: 1000;
  padding: 15px 0 0 0;
  transition: all ease-in 0.25s;
}
.main-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.main-nav .nav-toggle {
  display: none;
}
.main-nav .nav-toggle-label {
  display: none;
}
.main-nav .nav-overlay {
  display: none;
}
.main-nav .main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav .main-menu > li {
  list-style: none;
  position: relative;
}
.main-nav .main-menu > li a {
  font-family: "PlusJakartaSansBold", sans-serif;
  text-decoration: none;
  color: black;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.main-nav .main-menu > li a:hover {
  color: rgb(70, 103, 65);
}
.main-nav .main-menu > li.current-menu-item > a, .main-nav .main-menu > li.current-page-item > a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 15px;
}
.main-nav .main-menu > li.menu-item-has-children > a::after {
  content: "▾";
  font-size: 0.7em;
}
.main-nav .main-menu > li.menu-item-has-children > .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  margin: 0;
  padding: 0.75rem 0;
  list-style: none;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1200;
}
.main-nav .main-menu > li.menu-item-has-children > .sub-menu li a {
  display: block;
  padding: 0.4rem 1rem;
  white-space: nowrap;
}
.main-nav .main-menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .main-menu > li:last-child > a {
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  background: rgb(70, 103, 65);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.main-nav .main-menu > li:last-child > a:hover {
  background-color: rgb(48, 55, 46);
  color: #ffffff;
}

.main-navTiny {
  padding: 8px 0 0 0;
}

@media (max-width: 1200px) {
  .main-nav {
    padding: 8px 0 0 0;
  }
  .main-nav .nav-inner {
    justify-content: space-between;
  }
  .main-nav .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1101;
  }
  .main-nav .nav-toggle-label span,
  .main-nav .nav-toggle-label span::before,
  .main-nav .nav-toggle-label span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: black;
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav .nav-toggle-label span::before,
  .main-nav .nav-toggle-label span::after {
    position: absolute;
    left: 0;
  }
  .main-nav .nav-toggle-label span::before {
    top: -7px;
  }
  .main-nav .nav-toggle-label span::after {
    top: 7px;
  }
  .main-nav .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
  }
  .main-nav .main-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    padding: 5rem 1.5rem 2rem;
    margin: 0;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .main-nav .main-menu > li {
    width: 100%;
  }
  .main-nav .main-menu > li > a {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    color: black;
    font-size: 1.05rem;
  }
  .main-nav .main-menu > li > a:hover {
    color: rgb(70, 103, 65);
  }
  .main-nav .main-menu > li:last-child > a {
    margin-top: 1rem;
    padding: 0.5rem 1.3rem;
    border-radius: 999px;
    background: rgb(70, 103, 65);
    color: white;
    white-space: nowrap;
    align-self: flex-start;
  }
  .main-nav .main-menu > li:last-child > a:hover {
    background-color: rgb(48, 55, 46);
    color: #ffffff;
  }
  .main-nav .main-menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav .main-menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 0.7em;
    transition: transform 0.2s ease;
  }
  .main-nav .main-menu .menu-item-has-children > .sub-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: max-height 0.25s ease;
  }
  .main-nav .main-menu .menu-item-has-children > .sub-menu li a {
    padding-left: 1rem;
    font-size: 0.98rem;
  }
  .main-nav .main-menu .menu-item-has-children:focus-within > .sub-menu, .main-nav .main-menu .menu-item-has-children.current-menu-ancestor > .sub-menu, .main-nav .main-menu .menu-item-has-children.current-menu-item > .sub-menu {
    max-height: 500px;
  }
  .main-nav .main-menu .menu-item-has-children:focus-within > a::after, .main-nav .main-menu .menu-item-has-children.current-menu-ancestor > a::after, .main-nav .main-menu .menu-item-has-children.current-menu-item > a::after {
    transform: rotate(180deg);
  }
  .main-nav .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .main-nav .nav-toggle:checked ~ .main-menu {
    transform: translateX(0);
  }
  .main-nav .nav-toggle:checked + .nav-toggle-label span {
    transform: rotate(45deg);
  }
  .main-nav .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(-90deg) translate(-7px, 0);
  }
  .main-nav .nav-toggle:checked + .nav-toggle-label span::after {
    opacity: 0;
  }
  .main-navTiny {
    padding: 8px 0 0 0;
  }
}
.heroText,
.heroImg {
  height: 95dvh;
}

.heroImg img,
.heroImg video {
  width: 100%;
  height: 95dvh;
  -o-object-fit: cover;
     object-fit: cover;
  border-end-start-radius: 90px;
}

.heroText {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 5rem 8rem 0;
}

p.headTop {
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

@media (max-width: 1700px) {
  .heroText {
    padding: 3rem 5rem 0 5rem;
  }
  .heroText h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1400px) {
  .heroText {
    padding: 3rem 3rem 0 5rem;
  }
  .heroText h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 1200px) {
  .heroImg {
    order: -1;
  }
  .heroImg,
  .heroImg img,
  .heroImg video {
    height: 60dvh;
  }
  .heroText {
    height: auto;
    padding: 1rem 2rem 0 2rem;
  }
}
@media (max-width: 768px) {
  .heroText h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 500px) {
  .heroText h1 {
    font-size: 2rem;
  }
  .heroImg,
  .heroImg img,
  .heroImg video {
    height: 50dvh;
  }
  .heroText {
    height: auto;
    padding: 0rem 2rem 0 2rem;
  }
  p.headTop {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 388px) {
  p.headTop {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 360px) {
  .heroText h1 {
    font-size: 1.8rem;
  }
  p.headTop {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.introBlock {
  background: white;
  border-radius: 12px;
}

.introBlock img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.introBlockText {
  padding: 2rem 3rem 1.5rem;
}

.introBlockText h2,
.introBlockText h3 {
  font-size: 1.8rem;
  line-height: 1;
}

.textLink::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background: url("img/arrow.svg") no-repeat center/contain;
  vertical-align: middle;
  margin-left: 0.25em;
}

@media (max-width: 500px) {
  .introBlock img {
    height: 220px;
  }
  .introBlockText {
    padding: 1rem 1.5rem 1.5rem;
  }
}
.werbung {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 10rem 0;
  text-align: center;
}

.werbung strong {
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.werbung h2,
.werbung h3,
.werbung h4 {
  font-size: 4rem;
  color: white;
  line-height: 1;
}

.nextDates h3 {
  font-size: 1.1rem;
}

.nextDates strong {
  font-size: 1rem;
}

@media (max-width: 500px) {
  .werbung strong {
    font-size: 1.4rem;
  }
  .werbung h2,
  .werbung h3,
  .werbung h4 {
    font-size: 3rem;
  }
}
.order-1 {
  order: -1;
}

.bildText {
  gap: 5rem;
}

.bildTextBild img {
  border-radius: 12px;
}

.bildTextBilder3er {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}
.bildTextBilder3er .bild3er-links {
  width: 100%;
  height: calc(100% - 100px);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 50px 0;
}
.bildTextBilder3er .bild3er-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bildTextBilder3er .bild3er-stack img {
  flex: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 0;
}

.bildTextText {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.bildTextText h2,
.bildTextText h3,
.bildTextText h4 {
  font-size: 3rem;
  line-height: 1.1;
}

@media (max-width: 1200px) {
  .order-1 {
    order: 2;
  }
  .bildText {
    gap: 2rem;
  }
  .bildText--3er {
    grid-template-rows: minmax(380px, auto) auto;
  }
  .bildTextBilder3er {
    height: 100%;
  }
  .bildTextBilder3er .bild3er-links {
    height: calc(100% - 60px);
    margin: 30px 0;
  }
  .bildTextBilder3er .bild3er-stack img {
    flex: 1;
    min-height: 0;
  }
}
@media (max-width: 500px) {
  .bildTextText h2,
  .bildTextText h3,
  .bildTextText h4 {
    font-size: 2.3rem;
  }
  .bildText {
    gap: 1rem;
  }
}
.vorteile {
  margin-top: 4rem;
}

.vorteilRaster {
  display: grid;
  gap: 2rem;
}

.vorteilRaster2 {
  grid-template-columns: repeat(2, 1fr);
}

.vorteilRaster3 {
  grid-template-columns: repeat(3, 1fr);
}

.vorteilRaster4 {
  grid-template-columns: repeat(4, 1fr);
}

.vorteilRaster5 {
  grid-template-columns: repeat(5, 1fr);
}

.vorteilRaster6 {
  grid-template-columns: repeat(6, 1fr);
}

.vorteilBox {
  text-align: center;
}

.vorteilBox img {
  margin-bottom: 1rem;
  width: 100px;
}

@media (max-width: 1300px) {
  .vorteilRaster6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .vorteilRaster5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .vorteilRaster4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .vorteilRaster6,
  .vorteilRaster5,
  .vorteilRaster3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .vorteilRaster {
    gap: 1rem;
  }
  .vorteilBox {
    font-size: 0.9rem;
  }
  .vorteilBox img {
    width: 75px;
  }
  .vorteile {
    margin-top: 2rem;
  }
}
.hero-klein img {
  width: 100%;
  height: 60dvh;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 90px;
}

.heroKleinGrid {
  margin-top: 3rem;
}

.heroKleinGrid h1,
.heroKleinGrid h2,
.heroKleinGrid h3 {
  font-size: 3.5rem;
  line-height: 1.1;
}

@media (max-width: 1300px) {
  .heroKleinGrid h1,
  .heroKleinGrid h2,
  .heroKleinGrid h3 {
    font-size: 3rem;
  }
}
@media (max-width: 1200px) {
  .heroKleinGrid.grid-2 {
    gap: 1rem;
  }
  .hero-klein img {
    height: 45dvh;
  }
}
@media (max-width: 500px) {
  .heroKleinGrid h1,
  .heroKleinGrid h2,
  .heroKleinGrid h3 {
    font-size: 2rem;
  }
}
.speisen {
  background: white;
  border-radius: 90px;
  padding: 3rem 4rem;
  text-align: center;
}
.speisen h2 {
  margin-bottom: 2.5rem;
}

.speisenListe {
  text-align: left;
}

.speisenToggle {
  display: none;
}

.speisenItem {
  border-bottom: 1px solid rgba(48, 55, 46, 0.2);
}
.speisenItem:first-of-type {
  border-top: 1px solid rgba(48, 55, 46, 0.2);
}

.speisenKopf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: "PlusJakartaSansBold", sans-serif;
  color: rgb(48, 55, 46);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.speisenIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.speisenIcon::before, .speisenIcon::after {
  content: "";
  position: absolute;
  background: rgb(48, 55, 46);
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.speisenIcon::before {
  width: 14px;
  height: 1.5px;
}
.speisenIcon::after {
  width: 1.5px;
  height: 14px;
}

.speisenToggle:checked + .speisenKopf .speisenIcon {
  transform: rotate(45deg);
}

.speisenInhalt {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.speisenToggle:checked ~ .speisenInhalt {
  grid-template-rows: 1fr;
}

.speisenText {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.35s ease;
}
.speisenText > * {
  margin-bottom: 1rem;
}

.speisenToggle:checked ~ .speisenInhalt .speisenText {
  padding-bottom: 1.5rem;
}

@media (max-width: 500px) {
  .speisen {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
}
main#page {
  padding-top: 10rem;
}

main.standart h1 {
  font-size: 3rem;
}

main.standart h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

main.standart h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.footerKontakt {
  background: white;
  padding: 5rem 0;
}

.footerKontaktInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footerAdresse h2 {
  color: rgb(70, 103, 65);
  margin-bottom: 1.5rem;
}
.footerAdresse p {
  margin-bottom: 0.5rem;
  color: rgb(48, 55, 46);
}

.footerKontaktCard {
  background: rgb(70, 103, 65);
  border-radius: 90px 0 0 90px;
  padding: 3rem 3.5rem;
  margin-right: calc((min(90vw, 100rem) - 100vw) / 2);
  padding-right: calc((100vw - min(90vw, 100rem)) / 2 + 3.5rem);
  color: white;
}
.footerKontaktCard h2 {
  color: white;
  margin-bottom: 1rem;
}
.footerKontaktCard p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}
.footerKontaktCard a {
  display: block;
  color: white;
  font-family: "PlusJakartaSansBold", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footerKontaktCard a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footerOpen {
  color: white;
}

.footerBar {
  background: rgb(70, 103, 65);
  padding: 3.5rem 0;
}

.footerBarInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footerInfo {
  max-width: 280px;
}
.footerInfo strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.footerInfo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footerNav strong,
.footerLegal strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footerNav ul,
.footerLegal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footerNav li,
.footerLegal li {
  margin-bottom: 0.6rem;
}
.footerNav a,
.footerLegal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all ease-in 0.25s;
}
.footerNav a:hover,
.footerLegal a:hover {
  color: white;
}

@media (max-width: 900px) {
  .footerKontakt {
    padding: 4rem 0;
  }
  .footerKontaktInner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footerAdresse {
    text-align: center;
  }
  .footerKontaktCard {
    text-align: center;
    border-radius: 40px;
    margin-right: 0;
    padding-right: 2rem;
    padding: 2.5rem 2rem;
  }
  .footerBarInner {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footerInfo {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .footerKontakt {
    padding: 3rem 0;
  }
  .footerKontaktCard {
    border-radius: 24px;
    padding: 2rem 1.5rem;
  }
  .footerBar {
    padding: 2.5rem 0;
  }
  .footerBarInner {
    gap: 1.5rem;
  }
  .footerNav,
  .footerLegal {
    flex: 1;
  }
}
input,
textarea {
  border: none !important;
}

#gform_submit_button_1,
#gform_submit_button_2 {
  background: rgb(70, 103, 65);
  display: inline-block;
  padding: 15px 25px 15px;
  border-radius: 50px;
  color: white;
  margin: 20px 20px 0 0;
  font-family: "PlusJakartaSansBold", sans-serif;
}

#gform_submit_button_1:hover,
#gform_submit_button_2:hover {
  background: rgb(48, 55, 46);
  color: white;
}

.ccm-settings-summoner {
  display: none !important;
}/*# sourceMappingURL=style.css.map */