/******************VARIABLES******************/

:root {
    --bg: #f4f1ea;
    --green: #1f3d2b;
    --senf: #e8c56a;
    --lightGray: #3a3d38;
    --fontDark: #111311;
    --borderColor: rgb(106, 106, 106);
}

/******************GENERAL******************/

body {
    background-color: var(--bg);
    font-family: 'Inter';    
}

.secPad {padding: 120px 0;}

a {text-decoration: none;}
p {margin: 0;}

/******************BUTTONS******************/

.bigCta {
    display: inline-flex;
    padding: 15px 23px;
    border-radius: 999px;
    background: var(--green);
    color: var(--bg);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all .3s ease;
    justify-self: center;
    align-items: center;
    gap: 10px;
}

.bigCta i {
    margin-left: 5px;
}

.bigCta:hover {
    background-color: #254a33;
    transform: translateY(-2px);
}

.bigCtaRed {
    background: #c8412a;
}

.bigCtaRed:hover {
    background-color: var(--senf);
    transform: translateY(-2px);
}

.menuFooter a {
    font-size: 12px;
    color: var(--senf);
    text-transform: uppercase;
    border-bottom: 1px solid #e8c56a;
    transition: all 0.6s ease;
    padding-bottom: 5px;
    opacity: 0.7;
}

.menuFooter a:hover {
    transform: translateX(2px);
    opacity: 1;
}

/******************OPENINGSTATUS******************/

.statusDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.statusDot.open {
  background: #2ecc71;
  box-shadow:
    0 0 6px #2ecc71,
    0 0 12px #2ecc71,
    0 0 20px rgba(46, 204, 113, 0.6);
}

.statusDot.closed {
  background: #e74c3c;
  box-shadow:
    0 0 6px #e74c3c,
    0 0 12px #e74c3c,
    0 0 20px rgba(231, 76, 60, 0.6);
}

/******************TOPNAV******************/

.topbar {
    width: 100%;
    position: absolute;
    z-index: 1100;
    height: 50px;
}

.topbarInner {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    border-bottom: 1px solid var(--green);
}

.topbarInner a {
    color: var(--fontDark);
    text-decoration: none;
}

.topbarItem {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--green);
    letter-spacing: 2px;
}

.topbarItem:first-child {
    border-left: 1px solid var(--green);
}

/******************MAINAV******************/

#mainNav {
    position: sticky;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

#mainNav.navFixed {
    position: sticky;
    top: 0;
    background: #f3efe4b7;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mainNavInner {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
}

.mainNavBrand {
    justify-self: center;
}

.mainNavBrand img {
    width: 100px;
    height: auto;
    display: block;
}

.mainNavMenu {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mainNavMenu a {
    color: var(--green);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/******************FONTS******************/

.heroHeadline h1 {
    color: var(--fontDark);
    font-size: 150px;
    line-height: 120px;
    letter-spacing: -5px;
    font-weight: 900;
}

.heroHeadline h1 span {
    color: var(--green);
    font-style: italic;
    font-weight: 400;
}

h2 {
    line-height: 90px;
    font-weight: 900;
    font-size: 100px;
    color: var(--fontDark);
}

h2 span {
    font-weight: 400;
    font-style: italic;
    color: var(--green);
}

#menu h2 {
    color: var(--bg);
}

#menu h2 span,
footer h2 span {
    color: var(--senf);
}

footer h2 {
    font-size: 200px;
    line-height: 180px;
    font-weight: 900;
    color: white;
}

h3 {
    font-size: 68px;
    font-weight: 900;
    color: var(--fontDark);
}

h3 span {
    font-weight: 400;
    font-style: italic;
    color: var(--green);
}

.label {
    font-family: 'JetBrains',monospace;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.smallText {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--lightGtay);
}

.smallText span {
    display: block;
    font-weight: 900;
}

.floatText {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -.01em;
    font-weight: 400;
    color: var(--fontDark);
}

/******************HERO******************/

#hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.heroHeadline {
    margin-left: 150px;
}

.heroSub {
    display: flex;
    justify-content: space-around;
    align-items: start;
    margin-left: 150px;
    width: calc(100% - 300px);
    padding: 32px 0;
    border-top: 1px solid var(--borderColor);
}

/******************VIDEO******************/

#video {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video video {
    width: 90%;
}

/******************MARQUEE******************/

.marquee {
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 50px 0;
}

.marqueeTrack {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  animation: scroll 40s linear infinite;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.marqueeTrack span {
  display: inline-flex;
  align-items: center;
}

.marqueeTrack .star {
  color: var(--senf);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/******************UEBERUNS******************/

#ueberUns {
    background-color: var(--bg);
}

/******************SPEISEKARTE******************/

#menu {
    background-color: var(--green);
}

.menuGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid rgba(237,228,209,.2);
    border-left: 1px solid rgba(237,228,209,.2);
}
#deliveryZone .menuGrid {
    border-color: var(--fontDark);
}

.menuItem {
    padding: 25px;
    border-right: 1px solid rgba(237,228,209,.2);
    border-bottom: 1px solid rgba(237,228,209,.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
    transition: all 0.6s ease;
    cursor: pointer;
}
#deliveryZone .menuItem {
    border-color: var(--fontDark);
}

.menuItem:hover {
    background-color: #182f22;
    transition: all 0.6s ease;
}
#deliveryZone .menuItem:hover {
    background-color: #ebe7dd;
}

.menuTop {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
}

.menuNumber {    
    font-size: 12px;
    color: #a9bfae;
    letter-spacing: .1em;
}
#deliveryZone .menuNumber,
#deliveryZone .menuPrice {    
    color: var(--green);
}

.menuPrice {
    font-weight: 400;
    font-size: 15px;
    color: var(--senf);
    letter-spacing: .02em;
}

.menuName {
    margin-top: auto;
    font-size: 28px;
    font-weight: 900;
    color: var(--bg);
}

#deliveryZone .menuName {
    margin-top: auto;
    font-size: 28px;
    font-weight: 900;
    color: var(--fontDark);
}

.menuDescription {
    color: var(--bg);
    font-size: 12px;
}

.allergeneIcons img {
    width: 25px;
}

.menuFooter {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menuFooter p {
    color: var(--bg);
}

/******************GALLERY******************/

#gallery {
    background-color: var(--bg);
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 15px;
}

.gElement  {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.gElement img {
    width: 100%;
}

.gImg1 {
    grid-column: 1 / span 5;
    grid-row: 1 / span 3;
}

.gImg2 {
    grid-column: 6 / span 4;
    grid-row: 1 / span 2;
}

.gImg3 {
    grid-column: 10 / span 3;
    grid-row: 1 / span 2;
}

.gImg4 {
    grid-column: 6 / span 3;
    grid-row: 3 / span 2;
}
.gImg5 {
    grid-column: 9 / span 4;
    grid-row: 3 / span 2;
}

.gImg6 {
    grid-column: 1 / span 5;
    grid-row: 4 / span 3;
}

.gImg7 {
    grid-column: 6 / span 7;
    grid-row: 5 / span 2;
}

.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 1s ease;
    opacity: 0.9;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
    transition: transform 1s ease;
    opacity: 1;
}

/******************KONTAKT******************/

#contact ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#contact ul li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px dashed #c8c4b8;
}

#contact a {
    color: var(--fontDark);
    transition: all .6s ease;
}

#contact a:hover{
    color: var(--senf);
    transform: translateX(2px);
    letter-spacing: 2px;
}

/******************FOOTER******************/

footer {
    background-color:#111311;
    color: var(--bg);
    padding: 75px 0 25px 0;
}

footer a {
    color: var(--bg);
}

footer a:hover {
    color: var(--senf);
}

footer .label {
    color: var(--bg);
}

footer hr {
    border-top: 0.5px var(--bg) solid!important;
    opacity: 0.5;
}

footer a,footer p {
    font-size: 14px;
    color: var(--bg);
    display: block;
    line-height: 2;
    transition: all 0.2s ease;
}

.footerBottom {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

/******************Deklaration******************/

.kebabBlock {
    border: 1px solid var(--fontDark);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kebabBlockBottom {
    display: flex;
    border-bottom: 1px solid var(--fontDark);
    border-top: 1px solid var(--fontDark);
}

.gewuerzAllergene .countryFlag {
    margin: 5px;
}

.declaBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: solid 1px var(--fontDark);
    margin: 0;
    transition: 0.3s all ease;
}

.declaBox:hover {
    transform: scale(0.99);
    background-color: #ebe7dd;
}

.countryFlag {
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    display:inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    letter-spacing: .08em;
    border: 1px solid var(--fontDark);
}

.ch {
    background-color: var(--fontDark);
    color: var(--bg);
    border-color: var(--fontDark);
}

.br {
    background-color: #009739;
    color: var(--bg);
    border-color: #009739;
}

.tr {
    background-color: #c8412a;
    color: var(--bg);
    border-color: #c8412a;
}

.it {
    background-color: #87CEEB;
    color: var(--fontDark);
    border-color: #87CEEB;
}

.es {
    background-color: var(--senf);
    color: var(--fontDark);
    border-color: var(--senf);
}

.pl {
    background-color: var(--bg);
    color: var(--fontDark);
}

/******************FAQ********************/
.faqList {
    border-top: 1px solid var(--fontDark);

}
.accordion-item {
    padding: 25px;
    border-bottom: 1px solid var(--fontDark);
}

.accordion-body {
    padding: 15px
}

.accordionButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    transition: all .6s ease;
    color: var(--fontDark);
}

.accordionButton .countryFlag {
    background-color: var(--fontDark);
    color: var(--bg);
    transform: rotate(45deg);
    transition: all .6s ease;
}

.collapsed .countryFlag {
    color: var(--fontDark);
    background-color: var(--bg);
    transition: all .6s ease;
    transform: rotate(0);
}

.accordion-item .label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 25px;
}


/******************IMPRESSUM******************/

#impressum {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#impressum a,
#datenschutz a {
    color: var(--green);
    font-weight: bold;
}

/******************MOBILE******************/
@media (max-width: 992px) { 
    /*********/

    .secPad {
        padding: 75px 0;
    }

    .topbar, #mainNav {
        display: none;
    }

    .marquee {
        margin: 25px 0;
    }

    #video {
        height: auto;
    }

    #hero {
        height: auto;
    }

    .heroHeadline {
        margin-left: 10px;
    }

    .heroHeadline h1 {
        font-size: 60px;
        line-height: 50px;
        letter-spacing: 1px;
    }

    .heroSub {
        flex-direction: column;
        margin-left: 10px;
        width: calc(100% - 20px);
        height: 50%;
    }

    h2 {
        line-height: .95;
        font-weight: 900;
        font-size: 42px;
        color: var(--fontDark);
        margin-bottom: 50px;
    }

    h3 {
        text-align: center;
        font-size: 27px;
        font-weight: 900;
    }

    footer h2 {
        font-size: 50px;
        line-height: 45px;
    }

    .menuGrid{grid-template-columns:1fr}

    .gImg1 {
        background-color: var(--senf);
        grid-column: 1 / span 12;
        grid-row: 1 / span 2;
    }

    .gImg2 {
        grid-column: 1 / span 12;
        grid-row: 3 / span 2;
    }

    .gImg3 {
        background-color: var(--senf);
        grid-column: 1 / span 12;
        grid-row: 5 / span 2;
    }

    .gImg4 {
        grid-column: 1 / span 12;
        grid-row: 7 / span 2;
    }
    .gImg5 {
        grid-column: 1 / span 12;
        grid-row: 9 / span 2;
    }

    .gImg6 {
        grid-column: 1 / span 12;
        grid-row: 11 / span 2;
    }

    .gImg7 {
        grid-column: 1 / span 12;
        grid-row: 13 / span 2;
    }

    .footerBottom {
        flex-direction: column;
        align-items: center;
    }


    .menuFooter {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .kebabBlockBottom {
        flex-direction: column;
    }

    .kebabBlockBottom .w-50 {
        width: 100% !important;
    }

    .declaBox {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    #contact {
        text-align: center;
    }

    h2>.label {
        margin-bottom: 15px;
    }
    
}
.mobileNav {
    display: none;
}

.mobileOverlay {
    display: none;
}

@media (max-width: 991px) {
    .mobileNav {
        position: fixed;
        left: 0;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        background-color: var(--bg);
    }

    .mobileLogo img {
        height: 45px;
        width: auto;
    }

    .mobileMenuBtn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        padding: 0;
        cursor: pointer;
        z-index: 10001;
    }

    .mobileMenuBtn span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--green);
        transition: 0.3s ease;
    }

    .mobileMenuBtn.active span:first-child {
        transform: rotate(45deg) translate(3px, 3px);
    }

    .mobileMenuBtn.active span:last-child {
        transform: rotate(-45deg) translate(3px, -3px);
    }

    .mobileOverlay {
        position: fixed;
        flex-direction: column;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color:#111311;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.45s ease;
        z-index: 9998;
    }

    .mobileOverlay.active {
        transform: translateX(0);
    }

    .mobileOverlayMenu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mobileOverlayMenu a {
        color: var(--bg);
        font-size: 20px;
        text-decoration: none;
    }

    .mobileOverlayBottom {
        margin-top: 50px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: center;

    }

    .mobileOverlayBottom a {
        color: #FBF4D8;
        text-decoration: none;
        font-size: 14px;
    }

    .mobileOverlayBottom p {
        margin: 0;
        font-size: 13px;
        color: var(--bg);
    }

    .mobileOverlayBottom .bigCta {
            margin-top: 11px;
        width: 250px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    body.menuOpen {
        overflow: hidden;
    }
}