::selection {
  background-color: #e43147;
  color: white;
}
/* Custom styles */
.hero {
    padding: 4rem 0;
}

/* General styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    html, body {
        height: 100%;
        overflow: hidden;
    }
}

/* Normal scrollbar behavior */
.scroll-container::-webkit-scrollbar {
    /* Default scrollbar */
}

.scroll-container {
    /* Default scrollbar */
}

@media (min-width: 992px) {
    .scroll-container {
        height: auto;
        overflow: visible;
    }

    section, footer {
        /* Normal scrolling behavior */
    }
}

/* Make all sections full width */
section, footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

/* Account for fixed navbar */
section {
    padding-top: 50px; /* Height of navbar */
}

/* Navigation */
.navbar {
    transition: background-color 0.3s ease;
    z-index: 1000;
    padding: 4vh 0 0 0;
}

.navbar .container {
    padding-right: 4vh;
    max-width: none;
}

.navbar-nav {
    margin-left: auto;
    padding: 0;
}

.nav-item {
    margin: 0 2vh;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link {
    color: #e43147 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transform: scaleX(0.8);
    display: inline-block;
    font-size: 1.1rem;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgba(228, 49, 71, 0.8) !important;
}

.nav-link.active {
    color: #e43147 !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(228, 49, 71, 0.2);
    transform: scaleX(0.85);
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    position: fixed;
    top: 2vh;
    right: 1vh;
    color: #e43147 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: scaleX(0.8);
    overflow: visible;
    z-index: 1600;
    display: none;
    min-height: 50px;
    line-height: 1.2;
}

.navbar-toggler[aria-expanded="true"] {
    color: white !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Menu text animation */
.menu-text {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler[aria-expanded="true"] .menu-text {
    transform: translateY(100%);
    opacity: 0;
}

.navbar-toggler .menu-text-close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler[aria-expanded="true"] .menu-text-close {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* Mobile navigation */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0;
    }

    .navbar .container {
        padding-right: 0;
    }

    .nav-item {
        margin: 0;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #e43147;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000;
        transition: opacity 0.4s ease-out;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-nav {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        height: 100%;
        padding-bottom: 10vh;
        padding-top: 10vh;
        margin-left: 0;
    }

    .nav-item {
        text-align: center;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .nav-link {
        color: white !important;
        font-size: 2.5rem;
        display: inline-block;
        transform: scaleX(0.8);
        transform-origin: center;
        font-weight: 800;
    }

    .nav-link:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-link {
        color: white !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        font-size: 1.2rem;
        padding: 0;
        transition: all 0.3s ease;
    }

    .nav-link.active {
        color: white !important;
        font-weight: 700;
        font-size: 1.3rem;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.25s; }
.navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.3s; }

    .navbar-collapse.collapsing .nav-item,
    .navbar-collapse.closing .nav-item {
        opacity: 0;
        transform: translateY(20px);
    }

    .navbar-collapse.collapsing .nav-item:nth-child(1),
    .navbar-collapse.closing .nav-item:nth-child(1) { transition-delay: 0s; }
    
    .navbar-collapse.collapsing .nav-item:nth-child(2),
    .navbar-collapse.closing .nav-item:nth-child(2) { transition-delay: 0.05s; }
    
    .navbar-collapse.collapsing .nav-item:nth-child(3),
    .navbar-collapse.closing .nav-item:nth-child(3) { transition-delay: 0.1s; }
    
    .navbar-collapse.collapsing .nav-item:nth-child(4),
    .navbar-collapse.closing .nav-item:nth-child(4) { transition-delay: 0.15s; }
    
    .navbar-collapse.collapsing .nav-item:nth-child(5),
    .navbar-collapse.closing .nav-item:nth-child(5) { transition-delay: 0.2s; }

    .navbar-collapse.collapsing,
    .navbar-collapse.closing {
        transition-delay: 0.3s;
    }
}

/* Start section with background */
#start {
    padding-top: 0;
    background: url('../img/bg-1.jpg');
    background-position:  center center;
    background-size: cover;
    background-repeat:  no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

/* Dark overlay for better text readability */
#start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

#start .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo styling */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 20vw;
    height: 20vw;
    object-fit: contain;
}

/* Ensure text remains readable on all backgrounds */
#start h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#start .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Kitchen & Bar section */
#kitchen {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.kitchen-content {
    padding: 15vh 15vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.section-header {
    color: #e43147;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    transform: scaleX(0.8);
    transform-origin: left;
    margin: 0;
}

.section-text,
.leistung-item p {
    font-size: clamp(0.8rem, 1.1vw, 1.0rem);
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.leistung-item h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    margin: 0;
    color: #e43147;
}

/* Gallery Mosaic Layout */
.gallery-mosaic {
    width: 100%;
    max-height: 332px;
    overflow: hidden;
    margin: 0;
}

.gallery-item {
    width: calc((100% - 0px) / 8);
    height: 0;
    padding-bottom: calc((100% - 0px) / 8);
    margin: 0;
    float: left;
    position: relative;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .gallery-item {
        width: calc((100% - 0px) / 7);
        padding-bottom: calc((100% - 0px) / 7);
    }
}

@media (max-width: 1200px) {
    .gallery-item {
        width: calc((100% - 0px) / 6);
        padding-bottom: calc((100% - 0px) / 6);
    }
}

@media (max-width: 991px) {
    .gallery-item {
        width: calc((100% - 0px) / 5);
        padding-bottom: calc((100% - 0px) / 5);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc((100% - 0px) / 4);
        padding-bottom: calc((100% - 0px) / 4);
    }
}

@media (max-width: 1200px) {
    .kitchen-content {
        padding: 15vh 10vh;
    }
}

@media (max-width: 768px) {
    .kitchen-content {
        padding: 10vh 5vh;
    }

    .section-header {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-text,
    .leistung-item p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .leistung-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .kitchen-content {
        padding: 8vh 4vh;
    }
    
    .section-header {
        font-size: 1.6rem;
    }

    .section-text,
    .leistung-item p {
        font-size: 0.95rem;
    }

    .leistung-item h3 {
        font-size: 1.3rem;
    }
}

/* Events section */
#events {
    background-color: #f8f9fa;
}

.events-content {
    padding: 10vh 15vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vh;
    width: 100%;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.event-item img {
    width: 100%;
    aspect-ratio: 12/9;
    object-fit: cover;
}

.event-item h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin: 0;
    color: #e43147;
}

.event-item p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
    color: #000000;
}

/* Leistungen section */
#leistungen {
    background-color: #f8f9fa;
}

#leistungen .row {
    width: 100%;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #212529;
}

.social-links a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Container adjustments for full-height sections */
section .container {
    padding: 2rem 15px;
}

/* Fixed Logo Top */
.fixed-logo-container {
    position: fixed;
    top: 4vh;
    left: 4vh;
    z-index: 1600;
    overflow: hidden;
    width: 5vw;
    height: 5vw;
}

.fixed-instagram-container {
    position: fixed;
    bottom: 4vh;
    left: 4vh;
    z-index: 1600;
    overflow: hidden;
    width: 5vw;
    height: 5vw;
    cursor: pointer;
}

.fixed-instagram-container:hover {
    opacity: 0.8;
}

.fixed-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: top left;
}

.logo-default {
    display: block;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo animations */
/* Opening Animation */
body:has(.navbar-collapse.show) .logo-default {
    transform: translateY(100%);
    opacity: 0;
    transition-delay: 0.15s;
}

body:has(.navbar-collapse.show) .logo-overlay {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

body:has(.navbar-collapse.show) .fixed-instagram-container .logo-default {
    transform: translateY(100%);
    opacity: 0;
    transition-delay: 0.2s;
}

body:has(.navbar-collapse.show) .fixed-instagram-container .logo-overlay {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* Closing Animation */
body:has(.navbar-collapse.closing) .logo-default {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.95s;
}

body:has(.navbar-collapse.closing) .logo-overlay {
    transform: translateY(-100%);
    opacity: 0;
    transition-delay: 0.95s;
}

body:has(.navbar-collapse.closing) .fixed-instagram-container .logo-default {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.05s;
}

body:has(.navbar-collapse.closing) .fixed-instagram-container .logo-overlay {
    transform: translateY(-100%);
    opacity: 0;
    transition-delay: 1.05s;
}

/* Fixed Instagram Bottom */
.fixed-instagram {
    position: fixed;
    bottom: 4vh;
    left: 4vh;
    z-index: 1500;
    transition: opacity 0.3s ease;
}

/* Fixed Arrows Bottom */
.fixed-arrows {
    position: fixed;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    transition: opacity 0.3s ease;
}

/* Reservation Button */
.fixed-reservation {
    position: fixed;
    bottom: 4vh;
    right: 4vh;
    z-index: 1500;
}

.reservation-btn {
    background-color: transparent;
    border: 1.5px solid #e43147;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}
.reservation-btn a, .event-btn a{
    color: #e43147;
}
.reservation-btn:hover a, .event-btn:hover a{
    color: white;
}
.reservation-btn:hover{
    background-color: #e43147;
}


.reservation-btn a:hover{
    color: white;
}
body:has(.navbar-collapse.show) .reservation-btn {
    border-color: white;
    color: white;
}

body:has(.navbar-collapse.show) .reservation-btn a {
    color: white;
}

body:has(.navbar-collapse.show) .reservation-btn:hover {
    background-color: white;
    color: #e43147;
}

body:has(.navbar-collapse.show) .reservation-btn:hover a {
    color: #e43147;
}

@media (max-width: 768px) {
    .reservation-btn {
        font-size: 1.1rem;
        padding: 15px 35px;
        letter-spacing: 3px;
        border-width: 2px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding-top: 56px;
    }

    /* Ensure background image works well on mobile */
    #start {
        background-attachment: scroll;
    }

    .main-logo {
        width: 70vw;
        height: 70vw;
    }

    .small-logo {
        width: 10vw;
        height: 10vw;
    }

    .fixed-logo-container,
    .fixed-instagram-container {
        width: 10vw;
        height: 10vw;
    }
}

.arrow-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes bounceArrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

.arrow-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.arrow-bounce {
    animation: bounceArrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.arrow-bounce:first-child {
    animation-delay: 0s;
}

.arrow-bounce:last-child {
    animation-delay: 0.3s;
}

.arrow {
    width: 1.5px;
    height: 15px;
    background-color: #e43147;
    position: relative;
    transform: rotate(225deg);
}

.arrow::after {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 15px;
    background-color: #e43147;
    transform: rotate(-90deg);
    right: -7px;
    bottom: 7px;
}

.fixed-instagram a {
    display: block;
    transition: opacity 0.3s ease;
}

.fixed-instagram a:hover {
    opacity: 0.8;
}

/* Shared logo styles */
.small-logo {
    width: 5vw;
    height: 5vw;
    object-fit: contain;
}

.leistungen-content {
    padding: 10vh 15vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vh;
    width: 100%;
}

.leistung-item {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.leistung-item img {
    width: 100%;
    aspect-ratio: 12/9;
    object-fit: cover;
}

.leistung-item h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin: 0;
    color: #e43147;
}

.leistung-item p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
    color: #000000;
}

/* CI-Button für Leistungen */
.event-btn {
    background-color: transparent;
    border: 1.5px solid #e43147;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: stretch;
    width: 100%;
    text-align: center;
    margin-top: auto;
    color: #e43147;
}
.event-btn:hover {
    background-color: #e43147;
    color: white;
}

/* Bewerben-Link im Kontaktbereich: gleiches Design wie .event-btn */
#jobs a {
    background-color: transparent;
    border: 1.5px solid #e43147;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    color: #e43147;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}
#jobs a:hover {
    background-color: #e43147;
    color: white;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .leistungen-content {
        padding: 10vh 10vh;
    }
}

@media (max-width: 991px) {
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vh;
    }

    .leistung-item img {
        aspect-ratio: 21/9;
    }
}

@media (max-width: 768px) {
    .leistungen-content {
        padding: 8vh 5vh;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 6vh;
    }
    
    .leistung-item {
        gap: 2vh;
    }
    
    .leistung-item img {
        aspect-ratio: 16/9;
    }
    
    .leistung-item h3 {
        font-size: 1.4rem;
    }
    
    .leistung-item p {
        font-size: 1rem;
        display: block;
        max-width: 90%;
    }
    
    .event-btn {
        font-size: 1.1rem;
        padding: 15px 35px;
        letter-spacing: 3px;
        border-width: 2px;
        width: 100%;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .leistungen-content {
        padding: 6vh 4vh;
    }
    
    .leistung-item h3 {
        font-size: 1.3rem;
    }

    .leistung-item p {
        font-size: 0.9rem;
    }

    .leistung-item img {
        aspect-ratio: 16/10;
    }
}

/* Events responsive styles */
@media (max-width: 1200px) {
    .events-content {
        padding: 10vh 10vh;
    }
}

@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vh;
    }

    .event-item img {
        aspect-ratio: 21/9;
    }
}

@media (max-width: 768px) {
    .events-content {
        padding: 8vh 5vh;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 6vh;
    }
    
    .event-item {
        gap: 2vh;
    }
    
    .event-item img {
        aspect-ratio: 16/9;
    }
    
    .event-item h3 {
        font-size: 1.4rem;
    }
    
    .event-item p {
        font-size: 1rem;
        display: block;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .events-content {
        padding: 6vh 4vh;
    }
    
    .event-item h3 {
        font-size: 1.3rem;
    }

    .event-item p {
        font-size: 0.9rem;
    }

    .event-item img {
        aspect-ratio: 16/10;
    }
}
#kontakt{
    padding-bottom: 50px;
}
.kontakt-content {
    padding: 10vh 15vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vh;
    width: 100%;
    min-height: 400px;
}

.maps-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 4vh;
    justify-content: center;
}

.kontakt-spalte {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.kontakt-spalte h3 {
    font-size: clamp(1rem, 1vw, 1rem);
    font-weight: 800;
    margin: 0;
    color: #e43147;
    text-transform: uppercase;
}

.kontakt-spalte p {
    font-size: clamp(0.8rem, 0.8vw, 0.8rem);
    line-height: 1.6;
    margin: 0;
    color: #333;
}

@media (max-width: 1200px) {
    .kontakt-content {
        padding: 10vh 10vh;
    }
}

@media (max-width: 768px) {

    #kontakt{
        padding-bottom: 50px;
    }
    .kontakt-content {
        padding: 8vh 5vh;
    }
    
    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 4vh;
    }
    
    .maps-container {
        min-height: 300px;
    }
    
    .kontakt-info {
        gap: 3vh;
    }
    
    .kontakt-spalte h3 {
        font-size: 1.4rem;
    }
    
    .kontakt-spalte p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kontakt-content {
        padding: 6vh 4vh;
    }
    
    .kontakt-spalte h3 {
        font-size: 1.3rem;
    }
    
    .kontakt-spalte p {
        font-size: 0.95rem;
    }
}

/* Fixed elements adjustments for mobile */
@media (max-width: 991px) {
    .fixed-arrows {
        display: none;
    }
    
    .fixed-reservation {
        position: fixed;
        bottom: 4vh;
    }
}

/* Desktop-only styles */
@media (min-width: 992px) {
    html, body {
        height: auto;
        overflow: visible;
    }

    .scroll-container {
        height: auto;
        overflow: visible;
    }

    section, footer {
        /* Normal scrolling behavior */
    }
}

/* Mobile-only styles */
@media (max-width: 991px) {
    html {
        height: auto !important;
        overflow-y: auto !important;
    }
    
    body {
        height: auto !important;
        overflow: visible !important;
        overflow-y: visible !important;
        position: relative !important;
    }

    .scroll-container {
        height: auto !important;
        overflow: visible !important;
        overflow-y: visible !important;
        scroll-snap-type: none !important;
        position: relative !important;
    }

    section, footer {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        height: auto !important;
        position: relative !important;
    }

    #start {
        background-attachment: scroll;
        height: 100vh !important;
    }

    #start .container {
        height: 100vh !important;
    }
} 


#leistungen p{
    font-size: 1rem;
}

#kitchen p{
    line-height: 1.4rem;
}
#jobs a{
    padding: 10px 20px;
    display: inline-block;
    color: white;
    background: #e43147;
    text-decoration: none;
    transition: all 0.3s ease;
    border: solid 2px white;
}
#jobs a:hover{
    color: #e43147;
    background:white;
    transition: all 0.3s ease;
    border: solid 2px #e43147;
}
a{
    text-decoration: none;
}
.kontakt-spalte a{
    text-decoration: none;
    color: #e43147;
}
.kontakt-spalte a:hover{
    color: black;
}