/* WEBFONTS */

@font-face {
    font-family: 'Fontin';
    src: url('fonts/Fontin-Regular.eot');
    src: url('fonts/Fontin-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Fontin-Regular.woff2') format('woff2'),
        url('fonts/Fontin-Regular.woff') format('woff'),
        url('fonts/Fontin-Regular.ttf') format('truetype'),
        url('fonts/Fontin-Regular.svg#Fontin-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fontin Bold';
    src: url('fonts/Fontin-Bold.eot');
    src: url('fonts/Fontin-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Fontin-Bold.woff2') format('woff2'),
        url('fonts/Fontin-Bold.woff') format('woff'),
        url('fonts/Fontin-Bold.ttf') format('truetype'),
        url('fonts/Fontin-Bold.svg#Fontin-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* END WEBFONTS */


/* VARIABLEN ################################### */

:root {
  /* TYPO */

    --normal: 'Fontin';
    --fettText: 'Fontin Bold';

  /*FONT SIZE */

    --mengenClamp: clamp(1rem, 0.9722rem + 0.1481vw, 1.25rem);

    --h1Headline: clamp(1.375rem, 1.1111rem + 1.4074vw, 3.75rem);

    --h2Clamp:  clamp(1rem, 0.9779rem + 0.1176vw, 1.125rem);
    --h2Span: clamp(1.375rem, 1.1434rem + 1.2353vw, 2.6875rem);

    --mainNav: clamp(1.25rem, 1.2059rem + 0.2353vw, 1.5rem);

    --mainNavMid: clamp(1rem, 0.9478rem + 0.2786vw, 1.1875rem);

    --inputFields:  clamp(1rem, 0.9722rem + 0.1481vw, 1.25rem);
    --cvLabel: clamp(1.125rem, 1.0972rem + 0.1481vw, 1.375rem);
    --cvH2: clamp(1.25rem, 1.2083rem + 0.2222vw, 1.625rem);

    --font15: 15px;
    --font16: 16px;



 /* COLOR */

    --braun: #a17152;
    --gelb: #FEBA06;
    --weiss: #fff;
    --dunkelbraun: #682704;
    --borderDunkel: #24120f;
    --richtigdunkel: #0a0403;
}

/* END VARIABLEN ############################### */

/* BODY ################################### */

body {
  font-family: var(--normal);
  font-size: var(--mengenClamp)!important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.sppb-row-container {
    max-width: 90%;
}

div.sppb-section-title.center > p {
    color: var(--weiss);
    font-size: var(--mengenText)!important;
}

#karriere .sppb-section-title .sppb-title-subheading {
    text-transform: none;
    max-width: 1320px;
    margin: auto;
}
/* END BODY ############################### */

/* Landingpage ################################### */

#czs__sectionIntro h2 {
  color: var(--weiss);
  text-transform: uppercase;
  font-size: var(--h2Clamp);
}

#czs__sectionIntro h2 span {
  font-size: var(--h2Span);
}

#czs__sectionIntro p {
    color: var(--weiss);
}

/* END Landingpage ############################### */

/* RESERVIERUNGSBUTTONS ################################### */

.button-container {
    position: fixed;
    bottom: 0;
    right: 10%;
    display: flex;
    gap: 10px;
    padding: 0;
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 25px 20px;
    margin-bottom: -15px;
    border: none;
    border-radius: 5px 5px 0 0;
    font-size: var(--font16);
    cursor: pointer;
    transition: transform 0.3s ease; /* Transition für das Verschieben */
}

.zimmer-buchen {
    background-color: var(--braun);
    color: var(--weiss);
}

.tisch-reservieren {
    background-color: var(--gelb);
    color: var(--richtigdunkel);
}

.button i {
    font-size: 24px;
    margin-bottom: 5px;
}

.zimmer-buchen:hover {
    background-color: var(--braun);
    color: var(--weiss);
    transition: .3s;
    transform: translateY(-15px);
}

.tisch-reservieren:hover {
    background-color: var(--gelb);
    color: var(--richtigdunkel);
    transition: .3s;
    transform: translateY(-15px);
}

@media (max-width: 768px) {
    .button-container {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        justify-content: space-evenly;
        padding: 0;
        gap: 0;
    }

    .button {
        flex-direction: row;
        width: 100%;
        font-size: var(--font15);
    }

    .button i {
        margin-right: 10px;
        margin-bottom: 0;
    }
}

/* END RESERVIERUNGSBUTTONS ############################### */

/* HAUPTMENU ################################### */

#sp-header.header-sticky, #sp-header.header-sticky .logo, #sp-header.header-sticky #sp-menu {
    height: 105px;
}

.sp-megamenu-parent>li>a, .sp-megamenu-parent>li>span {
    font-size: var(--mainNav);
}
.sppb-row-container {
        max-width: 90%!important;
}

.header-sticky {
    background-color: rgba(0,0,0,.7)!important;
}

.header-sticky .sp-megamenu-parent>li>a, 
.header-sticky .sp-megamenu-parent>li>span {
    color: var(--weiss)!important;
}

.sp-megamenu-parent>li>a:hover,
.sp-megamenu-parent>li.sp-menu-item.current-item.active>a {
    color: var(--gelb)!important;
}


@media (768px <= width <= 1377px) {

.sp-megamenu-parent>li>a, .sp-megamenu-parent>li>span {
    font-size: var(--mainNavMid);
}

}

@media (768px <= width <= 1090px) {

.sp-megamenu-parent>li {
    padding: 0 10px 0 0;
}

}

/* END HAUPTMENU ############################### */

/* Image Layouts SP Pagebuilder ################################### */

.sppb-addon-image-layouts a.sppb-btn-custom {
    padding: 25px;
    display: inline-block;
    background-color: var(--gelb);
    color: var(--borderDunkel);
    text-transform: uppercase;
    font-family: var(--mengenClamp);
    transition: .4s;
}

.sppb-addon-image-layouts a.sppb-btn-custom:hover {
    background-color: var(--braun);
    color: var(--weiss);
    transition: .4s;
}
/* END Image Layouts SP Pagebuilder ############################### */

/* PAGEBUILDER KLASSEN ################################### */

h1.sppb-addon-title {
    font-size: var(--h1Headline);
    color: var(--gelb);
}

#header .sppb-addon-text-block .sppb-addon-content p {
    color: var(--weiss);
    text-transform: uppercase;
}

#czs__takeYourChoice .sppb-row-column {
    margin-bottom: 30px;
}

/* END PAGEBUILDER KLASSEN ############################### */

/* CONVERTFORMS ################################### */

.convertforms .cf-label {
    font-size: var(--cvLabel);
}

.cf-control-input h2 {
    font-size: var(--cvLabel)!important;
}

.convertforms input.cf-input, 
.convertforms textarea.cf-input,
.convertforms .cf-input {
    color: #111 !important;
    border-radius: 0 !important;
    font-size: var(--inputFields)!important;
}

#form1_time {
    height: 54px;
    border: 2px solid #e6e6e6;
}

.flatpickr-months .flatpickr-month {
    height: 80px;
}

#form1_requirements {
    border: 2px solid #e6e6e6;
}

.convertforms .cf-btn {
    border-radius: 0!important;
    background-color: var(--richtigdunkel)!important;
    color: var(--weiss)!important;
    transition: .3s;
}

.convertforms .cf-btn:hover {
    background-color: var(--braun)!important;
    transition: .3s;
}

/* END CONVERTFORMS ############################### */

/* FOOTER ################################### */

#sp-footer {
    padding: 0;
}

#sp-footerbereich {
    background-color: var(--richtigdunkel);
}

.mod-footer .sppb-row-container {
    padding: 20px 0 40px 0;
}

.footer1 ul {
    list-style-type: none; /* Listenpunkte entfernen */
    padding: 0; /* Innenabstand auf 0 setzen */
    margin: 0; /* Außenabstand auf 0 setzen */
}

.footer1 li {
    display: inline; /* Alle li-Elemente nebeneinander anzeigen */
    margin-right: 10px; /* Abstand zwischen den Elementen */
    color: var(--weiss);
}

.footer1 li a {
    color: var(--weiss);
}

.footer1 li a:hover {
    text-decoration: underline;
}

.footer1 li:last-child {
    margin-right: 0; /* Kein Abstand nach dem letzten Element */
}


.footer1 li::after {
    content: "|";
    margin-left: 10px; /* Abstand nach der Pipe */
}

.footer1 li:last-child::after {
    content: ""; /* Entfernt die Pipe nach dem letzten Element */
}


/* END FOOTER ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* GLOBAL ################################### */

/* END GLOBAL ############################### */

/* BUCHUNGSKALENDER ################################### */



/* END BUCHUNGSKALENDER ############################### */



/* MEDIA QUERIES #################################### */

@media (width <= 5000px) {

    .sppb-row-container {
        max-width: 90%!important;
    }

}

@media (300px <= width <= 576px) {

.logo-image-phone {
    height: 52px!important;
    margin-top: 20px;
}

nav.sp-megamenu-wrapper.d-flex {
    margin-top: 15px;
}

.mod-footer .sppb-row-container {
    padding: 20px 0 80px 0;
}

}

@media (578px <= width <= 991px) {}






/* Basis */
.pp { position: fixed; inset: 0; display: grid; place-items: center; z-index: 9999; }
.pp--hidden { display: none; }
.pp__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
  opacity: 0; animation: pp-backdrop-in .35s ease forwards;
}
.pp__content {
  position: relative;
  width: 600px;
  max-width: 90vw;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  transform: translateY(8px) scale(.96);
  opacity: 0;
  animation: pp-pop-in .35s cubic-bezier(.2,.7,.2,1) forwards;
  background: #000;
}

.pp__content img { display: block; width: 100%; height: auto; }

.pp__close {
  position: absolute; top: 10px; right: 12px; width: 40px; height: 40px;
  border: 0; border-radius: 999px; background: rgba(0,0,0,.55); color: #fff;
  font: 600 22px/40px ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  cursor: pointer; transition: transform .15s ease, background .2s ease;
}
.pp__close:hover { transform: scale(1.05); background: rgba(0,0,0,.7); }

/* Ausblend-Status */
.pp.is-closing .pp__backdrop { animation: pp-backdrop-out .28s ease forwards; }
.pp.is-closing .pp__content { animation: pp-pop-out .28s cubic-bezier(.2,.7,.2,1) forwards; }

/* Keyframes */
@keyframes pp-backdrop-in { to { opacity: 1; } }
@keyframes pp-backdrop-out { to { opacity: 0; } }
@keyframes pp-pop-in   { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pp-pop-out  { to { opacity: 0; transform: translateY(8px) scale(.96); } }

/* Reduziertes Motion */
@media (prefers-reduced-motion: reduce) {
  .pp__backdrop, .pp__content { animation-duration: .01ms; animation-iteration-count: 1; }
}
