* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: #000 !important;
    background-image: none !important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior: none; /* Verhindert Overscroll-Effekt */
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000 !important;
    background-image: none !important;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

/* Logo - initial zentriert, bewegt sich nach oben wenn Overlay offen */
.logo-container {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s ease;
    will-change: transform, top;
}

.main.has-overlay .logo-container {
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    width: auto;
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1005;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: 0 0 8px 8px; /* Leichte Rundung unten */
}

.main.has-overlay .logo-img {
    height: 50px !important;
    transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main.has-overlay .nav {
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 1006;
    height: 80px;
    padding: 0 30px;
    gap: 25px;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), flex-direction 0.25s ease, background 0.25s ease;
}

.main.has-overlay .nav-img {
    max-height: 18px;
}

/* Instagram Section */
.instagram-section {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    margin-top: 350px; /* Weiter unten, unter Book a table */
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    padding-top: 50px; /* Mehr Abstand zum Book a table */
}

.main.has-overlay .instagram-section {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) translateY(-10px);
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram-link:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.1);
}

/* Navigation - initial zentriert, bewegt sich nach unten wenn Overlay offen */
.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), flex-direction 0.25s ease, gap 0.25s ease;
    margin-top: 150px; /* Abstand zum Logo */
    will-change: transform, top;
}

.main.has-overlay .nav {
    flex-direction: row;
    top: auto;
    bottom: 80px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 1001;
}

.logo {
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
}

.nav-item {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    padding: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    opacity: 0.6;
    transform: scale(1);
}

.nav-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-img {
    height: auto;
    width: auto;
    max-height: 30px;
    display: block;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.nav-item:hover .nav-img {
    filter: brightness(1.2);
}

/* Overlays */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 0.25s ease;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: opacity;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.overlay-content {
    max-width: 800px;
    width: 100%;
    padding: 40px 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 120px auto 100px auto; /* Platz für Header oben und Menü unten */
    max-height: calc(100vh - 220px); /* Begrenzte Höhe für Scrollbarkeit */
    overflow-y: auto; /* Scrollbar machen */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Verhindert Overscroll-Effekt */
    z-index: 1002; /* Über dem Logo */
    will-change: transform, opacity;
}

.booking-overlay-content {
    margin: auto !important;
    padding: 30px 40px !important;
    max-width: 600px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1010;
    background: transparent; /* Or whatever background it needs, assuming inherited or separate */
    will-change: opacity;
}

.overlay.active .booking-overlay-content {
    opacity: 1;
    transform: none;
}

.overlay.active .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

/* Custom Scrollbar */
.overlay-content::-webkit-scrollbar {
    width: 3px;
}

.overlay-content::-webkit-scrollbar-track {
    background: transparent;
}

.overlay-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.overlay-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Menu Styles */
.menu-section {
    margin-bottom: 55px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 8px;
}

.item-header h4 {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    flex: 1;
}

.price {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
}

.description {
    font-size: 12px;
    line-height: 1.7;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.menu-heading {
    margin: 40px 0 20px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-heading:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.menu-subtitle {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Food Gallery */
.food-gallery {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.food-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1;
}

/* Booking Form - New Design */
.booking-title {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-section-title {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper.half {
    width: 100%;
}

.input-label {
    display: block;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.booking-form-new input,
.booking-form-new select,
.booking-form-new textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

/* Make select options readable */
.booking-form-new select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Date input styling for better readability */
.booking-form-new input[type="date"] {
    color: #fff !important;
}

.booking-form-new input[type="date"]::-webkit-datetime-edit-text,
.booking-form-new input[type="date"]::-webkit-datetime-edit-month-field,
.booking-form-new input[type="date"]::-webkit-datetime-edit-day-field,
.booking-form-new input[type="date"]::-webkit-datetime-edit-year-field {
    color: #fff !important;
}

.booking-form-new input:focus,
.booking-form-new select:focus,
.booking-form-new textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.booking-form-new input::placeholder,
.booking-form-new textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.booking-form-new select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='rgba(255,255,255,0.8)' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
    color: #fff !important;
}

.booking-form-new select:invalid {
    color: rgba(255, 255, 255, 0.5) !important;
}

.booking-form-new select option:checked {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.booking-form-new input[type="date"] {
    color-scheme: dark;
    position: relative;
    color: #fff !important;
    cursor: pointer !important;
}

/* Force entire date input to be clickable */
.booking-form-new input[type="date"]:focus {
    cursor: pointer !important;
}

/* Custom white calendar icon - replace default icon */
.booking-form-new input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 20px 20px !important;
    opacity: 1 !important;
    cursor: pointer !important;
    padding: 5px;
    width: 30px !important;
    height: 30px !important;
    background-color: transparent !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    filter: none !important;
}

/* Firefox date picker */
.booking-form-new input[type="date"]::-moz-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 20px 20px !important;
    opacity: 1 !important;
    cursor: pointer !important;
    filter: none !important;
}

/* Make entire date field clickable */
.booking-form-new input[type="date"]::-webkit-datetime-edit {
    cursor: pointer;
    pointer-events: none;
    color: #fff !important;
}

.booking-form-new input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    cursor: pointer;
    pointer-events: none;
    color: #fff !important;
}

.booking-form-new input[type="date"]::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.booking-form-new input[type="date"]::-webkit-datetime-edit-month-field,
.booking-form-new input[type="date"]::-webkit-datetime-edit-day-field,
.booking-form-new input[type="date"]::-webkit-datetime-edit-year-field {
    color: #fff !important;
}

.booking-form-new input[type="date"]:invalid::-webkit-datetime-edit {
    color: rgba(255, 255, 255, 0.5) !important;
}

.booking-form-new textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

.submit-btn-new {
    width: 100%;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.submit-btn-new:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.submit-btn-new:active {
    transform: translateY(0);
}

.submit-btn-new:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-message-new {
    margin-top: 20px;
    padding: 16px 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.form-message-new.success {
    opacity: 1;
    background: rgba(100, 255, 100, 0.15);
    border: 1px solid rgba(100, 255, 100, 0.3);
    color: rgba(200, 255, 200, 0.95);
}

.form-message-new.error {
    opacity: 1;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: rgba(255, 200, 200, 0.95);
}

/* Privacy Notice in Form */
.form-privacy-notice {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.form-privacy-notice p {
    font-size: 10px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: left;
}

.form-privacy-notice .privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-privacy-notice .privacy-link:hover {
    color: rgba(255, 255, 255, 1);
}

.form-message {
    margin-top: 18px;
    padding: 14px;
    text-align: center;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.form-message.success {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-message.error {
    opacity: 1;
    color: rgba(255, 100, 100, 0.9);
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
    overscroll-behavior: none; /* Verhindert Overscroll-Effekt */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info span {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Impressum Styles */
.impressum-title {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.impressum-section {
    margin-bottom: 35px;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.impressum-section h3 {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.impressum-section h4 {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum-section p {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}

.impressum-section ul,
.impressum-list {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
}

.impressum-section ul li,
.impressum-list li {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.impressum-section ul li::before,
.impressum-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.impressum-section strong {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main {
        min-height: 100vh;
        padding: 20px 0;
    }

    .logo-container {
        top: 35%;
        position: fixed;
        transform: translate(-50%, -50%);
        transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .main.has-overlay .logo-container {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100%;
        height: 60px;
        background: rgba(0, 0, 0, 0.95);
        justify-content: flex-start;
        padding-left: 20px;
        pointer-events: auto;
        z-index: 1005;
        transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s ease;
    }

    .main.has-overlay .logo-img {
        height: 35px !important;
        transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .logo-img {
        height: 120px; /* Größeres Logo auf Mobile */
    }

    .nav {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 80px; /* Weniger Abstand zum Logo - alles höher */
        gap: 30px;
        flex-direction: column;
    }

    .main.has-overlay .nav {
        flex-direction: row;
        top: 0;
        bottom: auto;
        right: 0;
        left: auto;
        transform: none;
        margin-top: 0;
        z-index: 1006;
        height: 60px;
        width: auto;
        padding-right: 20px;
        gap: 20px;
        background: transparent;
        transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), flex-direction 0.25s ease, background 0.25s ease;
    }

    .nav-img {
        max-height: 32px; /* Größeres Menu auf Mobile */
    }

    .nav-item {
        padding: 10px;
        opacity: 0.7;
        min-width: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .instagram-section {
        margin-top: 220px; /* Höher positioniert auf Mobile */
        padding-top: 40px; /* Abstand zum Book a table */
    }

    .instagram-icon {
        width: 20px; /* Kleineres Logo auf Mobile */
        height: 20px;
    }

    .overlay {
        padding: 20px 15px;
        overscroll-behavior: none; /* Verhindert Overscroll-Effekt */
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .overlay-content {
        max-width: 100%;
        padding: 20px 15px;
        min-height: auto;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain; /* Verhindert Overscroll-Effekt */
        margin: 75px auto 0 auto; /* 60px Header + 15px Luft */
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        max-height: calc(100vh - 235px) !important; /* 75px oben + 160px unten */
        padding-bottom: 40px;
    }

    .overlay.active .overlay-content {
        transform: none;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .menu-section {
        margin-bottom: 35px;
    }

    .menu-items {
        gap: 20px;
    }

    .menu-item {
        padding: 10px 0;
    }

    .item-header h4 {
        font-size: 12px;
    }

    .price {
        font-size: 11px;
    }

    .description {
        font-size: 10px;
    }

    .menu-heading {
        margin: 30px 0 15px 0;
        padding-top: 25px;
    }

    .menu-subtitle {
        font-size: 9px;
    }

    .food-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Mobile Booking Form Tweaks */
    .booking-overlay-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 75px auto 0 auto !important; /* 60px Header + 15px Luft */
        padding: 25px 20px !important;
        max-width: 90% !important;
        width: 90% !important;
        max-height: calc(100vh - 235px) !important; /* Platz für Footer/Navi unten */
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 40px !important;
    }

    .overlay.active .booking-overlay-content {
        transform: none !important;
    }

    .booking-form-new {
        gap: 20px;
    }

    .input-row {
        grid-template-columns: 1fr; /* Stack inputs on mobile */
        gap: 20px;
    }

    .booking-form-new input,
    .booking-form-new select,
    .booking-form-new textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 15px;
        background: rgba(255, 255, 255, 0.08); /* Slightly more visible bg */
        border-color: rgba(255, 255, 255, 0.1);
    }

    .submit-btn-new {
        padding: 20px;
        font-size: 14px;
        margin-top: 20px;
        background: #fff; /* High contrast button */
        color: #000;
        border: none;
        font-weight: 400;
    }

    .submit-btn-new:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: none;
    }

    .footer {
        padding: 15px 15px;
        position: fixed;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        padding-bottom: env(safe-area-inset-bottom, 15px); /* For iPhone X+ */
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-info {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .footer-info span {
        font-size: 8px;
        line-height: 1.5;
    }

    .footer-link {
        font-size: 8px;
    }

    .impressum-title {
        font-size: 10px;
        margin-bottom: 30px;
    }

    .impressum-section {
        margin-bottom: 25px;
    }

    .impressum-section h3 {
        font-size: 9px;
        margin-bottom: 12px;
    }

    .impressum-section h4 {
        font-size: 8px;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .impressum-section p {
        font-size: 10px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }

    .nav {
        gap: 20px;
        bottom: 15px;
    }

    .nav-img {
        max-height: 20px;
    }

    .overlay-content {
        padding: 25px 12px;
        max-height: calc(100vh - 80px);
    }

    .menu-section {
        margin-bottom: 30px;
    }

    .menu-items {
        gap: 18px;
    }

    .item-header h4 {
        font-size: 11px;
    }

    .price {
        font-size: 10px;
    }

    .description {
        font-size: 9px;
    }

    .menu-heading {
        margin: 25px 0 12px 0;
        padding-top: 20px;
    }

    .menu-subtitle {
        font-size: 8px;
    }
}

