
/*misc */
.desktop-break {
    display: block;
}

/* Mobile - <br> wird versteckt */
@media screen and (max-width: 768px) {
    .desktop-break {
        display: none;
    }
}


.grain-overlay {
    position: fixed;
    top:-50%;
    left: -50%;
    width: 400%;
    height: 400%;
    background-image: url('asfalt-dark.png');
    background-repeat: repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 999999;
    /*mix-blend-mode: overlay;*/
    animation: grain 0.8s steps(4) infinite;
}

@keyframes grain {
    0%, 100% { 
        transform: translate(0, 0); 
    }
    25% { 
        transform: translate(-2%, -3%); 
    }
    50% { 
        transform: translate(-3%, 2%); 
    }
    75% { 
        transform: translate(2%, -2%); 
    }
}
/*Anything scroll related*/
html {
  scroll-behavior: smooth;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Arial', sans-serif;
  font-weight: 400;
}

.scroll-arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  animation: bounce 1.4s infinite;
  margin-top: -6px;
}

.scroll-arrow:last-child {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.85;
  }
  50% {
    transform: translateY(7px) rotate(45deg);
    opacity: 0.15;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.85;
  }
}


/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: scroll; /* Scrollbar ist IMMER da, auch wenn nicht nötig */
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar {
    width: 100%;
    padding: 1.2rem 0;
}

.navbar-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px; /* Passe die Höhe nach Bedarf an */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/*.logo-image:hover {
    transform: scale(1.05);                                                       //eventuell rauslassen
}*/

/* Hamburger Animation to X */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-link:hover {
    color: #c25252;
}

.btn-reserve-nav {
    background-color: #8B1A1A; /*C1440E*/
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-reserve-nav:hover {
    background-color: #621212;
    box-shadow: 0 4px 15px rgba(212, 41, 41, 0.363);
}

/* ========================================
   Mobile Navigation
   ======================================== */




/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Hamburger Animation to X - PERFEKT ZENTRIERT */
.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* ========================================
   Mobile Navigation
   ======================================== */

@media screen and (max-width: 968px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-container {
        position: relative;
    }
    
    /* Hamburger wird neben Logo angezeigt */
    .hamburger {
        display: flex;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Nav nimmt gesamten Bildschirm ein */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: transform 0.4s ease, opacity 0.4s ease;
        padding: 2rem;
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        opacity: 0;
    }
    
    .nav-wrapper.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }
    
    /* Staggered animation for menu items */
    .nav-wrapper.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-wrapper.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-wrapper.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-wrapper.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-wrapper.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-wrapper.active .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .nav-link {
        font-size: 1.5rem;
        display: block;
        padding: 1rem 0;
    }
    
    .btn-reserve-nav {
        width: 80%;
        max-width: 300px;
        text-align: center;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
    }
    
    .nav-wrapper.active .btn-reserve-nav {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }
}

@media screen and (max-width: 480px) {
    .navbar-container {
        padding: 0 1.5rem;
    }
    
    .hamburger {
        right: 1.5rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 360px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        right: 1rem;
        width: 24px;
        height: 19px;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
}

/* Hero Section mit Video */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Container */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video Element */
.hero-video {
position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}


/* Overlay über dem Video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
    linear-gradient(
        to bottom,
        rgba(60, 30, 15, 0.25) 0%,
        rgba(30, 15, 8, 0.6) 100%
    );
    z-index: 1;
}

/* Content über Video und Overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/*--------------------------------------------------------------------------------*/
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.type-cursor {
    font-weight: 100;
    display: inline-block;
    width: 0;
    overflow: visible;
    animation: type-blink 1.1s steps(1) infinite;
}
@keyframes type-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.8rem;
    /*font-style: italic;*/
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: "Playwrite CA", serif;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-reserve {
    background-color: #8B1A1A; /*weinrot: 8B1A1A, kräftigeres terakotta: C1440E, goldig: D4A373*/
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.btn-reserve:hover {
    background-color: #621212;  /*9b370c*/
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 41, 41, 0.363);
}

.btn-menu {
    background-color: transparent; /*#ffffff*/
    color: #ffffff; /*#333333*/
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-menu:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-reserve,
    .btn-menu {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Öffnungszeiten & Kontakt Section
   ======================================== */

.hours-contact-section {
    background-color: #f5f1ed;
    padding: 6rem 2rem;
}

.hours-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Flexbox Wrapper für 2 Spalten */
.hours-contact-wrapper {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.hours-column,
.contact-column {
    flex: 1;
    text-align: left;
}

.column-title {
    font-size: 1.8rem;
    color: #a71e1e; /*c75a2c*/
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ========================================
   Öffnungszeiten Spalte
   ======================================== */

.hours-regular {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.hours-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid #a71e1e;
    margin-bottom: 0.5rem;
}

.hours-header-day,
.hours-header-time {
    font-size: 0.95rem;
    color: #a71e1e;
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-header-day {
    text-align: left;
}

.hours-header-time {
    text-align: center;
}

.hours-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #e8e4df;
    align-items: center;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 1.05rem;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-weight: 600;
    text-align: left;
}

.hours-time {
    font-size: 0.95rem;
    color: #6d6d6d;
    font-family: Arial, sans-serif;
    text-align: center;
}

.hours-time.closed {
    color: #a71e1e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Desktop: first Ruhetag spans both time columns; second is hidden */
.hours-row .hours-time.closed:nth-child(2) {
    grid-column: 2 / 4;
    text-align: center;
}
.hours-row .hours-time.closed + .hours-time.closed {
    display: none;
}

.hours-special {
    background-color: #fff8f3;
    border-left: 4px solid #a71e1e;
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.special-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.special-notice svg {
    flex-shrink: 0;
    color: #a71e1e;
    margin-top: 0.2rem;
}

.special-text {
    font-size: 0.9rem;
    color: #2d2d2d;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.special-text strong {
    color: #a71e1e;
}

.hours-exception-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: rgba(167, 30, 30, 0.18);
    color: #a71e1e;
    border: 1px solid rgba(167, 30, 30, 0.35);
    border-radius: 50%;
    font-size: 0.58rem;
    font-weight: 700;
    font-style: normal;
    font-family: Georgia, serif;
    cursor: default;
    position: relative;
    vertical-align: middle;
    margin-left: 5px;
    flex-shrink: 0;
    outline: none;
    user-select: none;
}

.hours-exception-tooltip {
    display: none;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 5, 5, 0.96);
    color: #e8e0d5;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    white-space: nowrap;
    z-index: 200;
    border-left: 2px solid #a71e1e;
    pointer-events: none;
    font-family: Arial, sans-serif;
    font-weight: normal;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hours-exception-icon:hover .hours-exception-tooltip,
.hours-exception-icon:focus .hours-exception-tooltip {
    display: block;
}

.hours-note {
    font-size: 0.85rem;
    color: #6d6d6d;
    font-style: italic;
    font-family: Arial, sans-serif;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-badge.open {
    background: rgba(34, 139, 34, 0.1);
    color: #1a6b1a;
    border: 1px solid rgba(34, 139, 34, 0.3);
}
.status-badge.open .status-dot {
    background: #22a022;
    animation: pulse-dot 2s infinite;
}

.status-badge.closing-soon,
.status-badge.opening-soon {
    background: rgba(185, 110, 0, 0.1);
    color: #8a5200;
    border: 1px solid rgba(185, 110, 0, 0.3);
}
.status-badge.closing-soon .status-dot,
.status-badge.opening-soon .status-dot {
    background: #c47800;
}

.status-badge.closed {
    background: rgba(100, 100, 100, 0.07);
    color: #666;
    border: 1px solid rgba(100, 100, 100, 0.2);
}
.status-badge.closed .status-dot {
    background: #aaa;
}

.status-next {
    font-size: 0.8rem;
    color: #888;
    font-family: Arial, sans-serif;
    margin-bottom: 1.25rem;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ========================================
   Kontakt Spalte
   ======================================== */

.contact-info {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e8e4df;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(199, 90, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a71e1e;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    font-size: 1rem;
    color: #a71e1e;
    font-family: 'Georgia', serif;
    margin-bottom: 0.3rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: #2d2d2d;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c25252;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e8e4df;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.9rem;
}

.map-placeholder-icon {
    color: #a71e1e;
    opacity: 0.6;
    flex-shrink: 0;
}

.map-placeholder-text {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    color: #6d6d6d;
    line-height: 1.55;
    max-width: 320px;
}

.map-placeholder-text a {
    color: #a71e1e;
    text-decoration: underline;
    display: block;
    margin-top: 0.25rem;
}

.map-consent-btn {
    background-color: #8B1A1A;
    color: #ffffff;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.map-consent-btn:hover {
    background-color: #621212;
}

/* ========================================
   Responsive Design
   ======================================== */

@media screen and (max-width: 1024px) {
    .hours-contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-column {
        width: 80%;
    }

    .hours-column {
        width: 80%;
    }
    
    .column-title {
        font-size: 1.6rem;
    }
    .hours-contact-wrapper {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .contact-column {
        width: 100%;
    }

    .hours-column {
        width: 100%;
    }

    .hours-contact-wrapper {
        align-items: center;
    }

    .contact-item {
        align-items: center;
    }

    .hours-contact-section {
        padding: 4rem 1.5rem;
    }
    
    .hours-regular,
    .contact-info {
        padding: 1.5rem;
    }
    
    .hours-header {
        display: none;
    }
    
    .hours-row {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem;
        border: 1px solid #e8e4df;
        border-radius: 6px;
        margin-bottom: 0.8rem;
        background-color: #fafafa;
    }
    
    .hours-row:last-child {
        margin-bottom: 0;
    }
    
    .hours-day {
        font-size: 1.1rem;
        text-align: center;
        color: #C1440E;
        border-bottom: 1px solid #e8e4df;
        padding-bottom: 0.5rem;
    }
    
    .hours-time {
        display: flex;
        justify-content: space-between;
        text-align: left;
        padding: 0.3rem 0;
    }
    
    .hours-time::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2d2d2d;
    }
    
    .hours-row .hours-time:nth-child(2)::before {
        content: 'Mittags:';
    }

    .hours-row .hours-time:nth-child(3)::before {
        content: 'Abends:';
    }

    /* Mobile: show both Ruhetag spans, each with its own label */
    .hours-row .hours-time.closed:nth-child(2) {
        grid-column: unset;
        text-align: unset;
    }
    .hours-row .hours-time.closed + .hours-time.closed {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .hours-regular,
    .contact-info {
        padding: 1rem;
    }
    
    .special-notice {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}


/* ========================================
   Highlights Section
   ======================================== */

.highlights-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    display: none;
}

@media screen and (max-width: 968px) {
    .highlights-section {
        display: block;
    }
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #b8936d;
    margin-bottom: 0.5rem;
    font-family: "Playwrite CA", serif;
    font-weight: 400;
}

.section-title {
    font-size: 3rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #a71e1e;
    margin: 0 auto 4rem auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 8px solid #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-image-wrapper:hover .highlight-image {
    transform: scale(1.1);
}

.highlight-name {
    font-size: 1.6rem;
    color: #2d2d2d;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.highlight-description {
    font-size: 1rem;
    color: #6d6d6d;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    
}

/* Responsive Design für Highlights Section */
@media screen and (max-width: 968px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 640px) {
    .highlights-section {
        padding: 4rem 1.5rem;
        background-color: #ebe7e1;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .highlight-image-wrapper {
        width: 240px;
        height: 240px;
    }
}


/* ========================================
   Menu Section
   ======================================== */

.menu-section {
    background-color: #f5f1ed;
    padding: 6rem 2rem;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.menu-title {
    color: #2d2d2d;
}

/* Category Buttons */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background-color: transparent;
    color: #6d6d6d;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-btn:hover {
    color: #2d2d2d;
}

.category-btn.active {
    background-color: #a71e1e;
    color: #ffffff;
}

/* Menu Items */
.menu-items-wrapper {
    position: relative;
    min-height: 200px;
}

.menu-items {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-items.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    background-color: transparent;
    padding: 1.5rem 0;
    border-bottom: 1px solid #d4cec4;
    text-align: left;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.menu-item-name {
    font-size: 1.4rem;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-weight: bold;
    flex: 1;
}

.menu-item-price {
    font-size: 1.3rem;
    color: #a71e1e;
    font-family: 'Georgia', serif;
    font-weight: bold;
    white-space: nowrap;
}

.menu-item-description {
    font-size: 1rem;
    color: #6d6d6d;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Responsive Design für Menu Section */
@media screen and (max-width: 768px) {
    .menu-section {
        padding: 4rem 1.5rem;
    }
    
    .menu-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-item-name {
        font-size: 1.2rem;
    }
    
    .menu-item-price {
        font-size: 1.1rem;
    }
    
    .menu-item-description {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* Call to Action für vollständige Speisekarte */
.menu-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    /*border-top: 1px solid #d4cec4;*/
    text-align: center;
}

.menu-cta-text {
    font-size: 1.2rem;
    color: #6d6d6d;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.menu-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #a71e1e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 90, 44, 0.2);
}

.menu-cta-link:hover {
    background-color: #621212;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 90, 44, 0.3);
}

.menu-cta-link svg {
    transition: transform 0.3s ease;
}

.menu-cta-link:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .menu-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .menu-cta-text {
        font-size: 1.1rem;
    }
    
    .menu-cta-link {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .menu-cta-link {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .popup-btn-row {
        text-align: center !important;
    }
}

/* ========================================
   Info Panel Section
   ======================================== */

.info-panel-section {
    background-color: #ebe7e1;/*ebe7e1*/
    padding: 6rem 2rem;
}

.info-panel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-card-title.urgent {
    color: #c72c2c;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #a71e1e;
}

.info-card.urgent{
    border: 4px solid #c72c2c;
    box-shadow: 0 8px 25px rgba(199, 90, 44, 0.3);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.301);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(199, 90, 44, 0.1);
    border-radius: 50%;
    color: #a71e1e;
    transition: all 0.3s ease;
}

.info-card-icon.urgent {
    color: #c72c2c;
}

.info-card:hover .info-card-icon {
    background-color: #a71e1e;
    color: #ffffff;
    transform: scale(1.1);
}

.info-card.urgent:hover .info-card-icon {
    background-color: #c72c2c;
    color: #ffffff;
    transform: scale(1.1);
}

.info-card-icon svg {
    width: 40px;
    height: 40px;
}

.info-card-title {
    font-size: 1.4rem;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.info-card-text {
    font-size: 1rem;
    color: #6d6d6d;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

.info-card-link {
    color: #a71e1e;
    text-decoration: none;
}

.info-card-link:hover {
    color: #621212;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .info-panel-section {
        padding: 4rem 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-card-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .info-card-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   Über uns Section
   ======================================== */

.about-section {
    background-color: #f5f1ed;
    padding: 6rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-image-col {
    flex: 1;
    min-width: 0;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-text-col {
    flex: 1;
    min-width: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.about-text p {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #6d6d6d;
}

@media screen and (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
}

/* SIDE SCROLL EFFEKT */

.horizontal-section {
  position: relative;
  width: 100%;
  height: 100vh;      /* Höhe der Pin-Phase */
  overflow: hidden;
  display: flex;
  background-color: #f5f1ed;
}

.hl-indicator {
    position: absolute;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    z-index: 10;
    background: rgba(45, 45, 45, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.65rem 0.5rem;
    border-radius: 20px;
}

.hl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}

.hl-dot.active {
    background: #c9a96e;
    transform: scale(1.5);
}

.hl-scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 10;
}

.hl-scroll-hint.visible {
    opacity: 1;
}

.hl-scroll-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(45, 45, 45, 0.75);
}

.hl-scroll-arrow-wrap {
    display: block;
    animation: hl-bounce 1.3s ease-in-out infinite;
}

.hl-scroll-arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(45, 45, 45, 0.65);
    border-bottom: 2px solid rgba(45, 45, 45, 0.65);
    transform: rotate(45deg);
}

@keyframes hl-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

@media screen and (max-width: 968px) {
    .horizontal-section {
        display: none;
    }
}

.img1 {
    height: 100vh;
}

.img2 {
    position: absolute;
    z-index: 1;
    height: 100vh;
}

.img3 {
    position: absolute;
    z-index: 0;
    height: 100vh;
}

.side {
    flex: 0 0 50%;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.highlight-name.next1 {
    padding-top: 30px;
}

.highlight-name.next2 {
    padding-top: 30px;
}

.left {
    background-color: #ebe7e1;
    padding: 0%;
    margin: 0%;
}

/*.right {
    
}*/

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: #2d2d2d;
    color: #d4d4d4;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #c17a5f;
    font-style: italic;
    font-family: 'Georgia', serif;
}

.footer-info {
    flex: 2;
    text-align: center;
}

.footer-address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    text-align: left;
}

.footer-contact {
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    text-align: left;
}

.footer-links {
    flex: 1;
    text-align: right;
    font-family: Arial, sans-serif;
}

.footer-link {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c25252;
}

.footer-separator {
    margin: 0 0.8rem;
    color: #6d6d6d;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999999;
    font-family: Arial, sans-serif;
}

.footer-credit {
    font-size: 0.75rem;
    color: #bbbbbb;
    font-family: Arial, sans-serif;
    margin-top: 0.3rem;
}

.footer-credit-link {
    color: #bbbbbb;
    text-decoration: none;
}

.footer-credit-link:hover {
    color: #999999;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand,
    .footer-links {
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
    }
    
    .footer-info {
        text-align: center;
    }

    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-address {
        font-size: 0.85rem;
    }
    
    .footer-contact,
    .footer-link {
        font-size: 0.85rem;
    }
}






















/* ========================================
   Speisekarte - Spezifisches Styling
   ======================================== */

/* Menu Hero Section */
.menu-hero {
    background: linear-gradient(135deg, #a71e1e 0%, #3b0000 100%);
    padding: calc(8rem + 80px) 2rem 8rem;
    text-align: center;
    margin-top: 0;
}

.menu-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #b8936d;
    margin-bottom: 1rem;
    font-family: "Playwrite CA", serif;
    font-weight: 400;
}

.menu-hero-title {
    font-size: 4rem;
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.menu-hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    opacity: 0.95;
}

/* Full Menu Section */
.full-menu-section {
    background-color: #f5f1ed;
    padding: 4rem 2rem;
}

.full-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu Category */
.menu-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #a71e1e;
}

.category-title {
    font-size: 2.5rem;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #c17a5f;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.full-menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e4df;
}

.full-menu-item:last-child {
    border-bottom: none;
}

@media screen and (min-width: 969px) {
    .full-menu-item:nth-last-child(2) {
        border-bottom: none;
    }
}

.item-nr {
    color: #a71e1e;
    font-size: 0.8em;
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    margin-right: 0.4rem;
    opacity: 0.85;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.menu-item-name {
    font-size: 1.3rem;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-weight: bold;
    flex: 1;
}

.menu-item-price {
    font-size: 1.3rem;
    color: #a71e1e;
    font-family: 'Georgia', serif;
    font-weight: bold;
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.95rem;
    color: #6d6d6d;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

/* Menu Note Section */
.menu-note-section {
    text-align: center;
    padding: 2rem;
    background-color: #fff8f3;
    border-radius: 8px;
    margin-top: 1rem;
}

.menu-note {
    font-size: 0.9rem;
    color: #6d6d6d;
    font-style: italic;
    font-family: Arial, sans-serif;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .menu-hero {
        padding: calc(6rem + 80px) 2rem 6rem;
    }
    
    .menu-hero-title {
        font-size: 3rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-category {
        padding: 2rem 1.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .menu-hero {
        padding: calc(5rem + 80px) 1.5rem 5rem;
    }
    
    .menu-hero-title {
        font-size: 2.5rem;
    }
    
    .menu-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .menu-hero-description {
        font-size: 1rem;
    }
    
    .menu-category {
        padding: 1.5rem 1rem;
    }
    
    .category-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .menu-item-name {
        font-size: 1.15rem;
    }
    
    .menu-item-price {
        font-size: 1.15rem;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
    }
}


/* ========================================
   Floating Menu Navigation
   ======================================== */

.floating-menu-nav {
    position: fixed;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-menu-nav.float-hidden {
    opacity: 0;
    transform: translateY(calc(-50% + 14px));
}

.floating-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-menu-item {
    position: relative;
}

.floating-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
}

/* Senkrechte Linie */
.floating-menu-nav::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d4cec4;
    z-index: -1;
}

/* Dots */
.floating-menu-dot {
    width: 8px;
    height: 8px;
    background-color: #d4cec4;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid #f5f1ed;
}

/* Text */
.floating-menu-text {
    font-size: 0.85rem;
    color: #999999;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    opacity: 0.4; /* GEÄNDERT: leicht sichtbar */
    transform: translateX(0); /* GEÄNDERT: keine Verschiebung */
    transition: all 0.3s ease;
}

/* Hover State */
.floating-menu-link:hover .floating-menu-dot {
    background-color: #a71e1e;
    transform: scale(1.3);
}

.floating-menu-link:hover .floating-menu-text {
    opacity: 0.8; /* GEÄNDERT: mehr sichtbar beim Hover */
    color: #6d6d6d;
}

/* Active State */
.floating-menu-item.active .floating-menu-dot {
    width: 16px;
    height: 16px;
    background-color: #a71e1e;
    box-shadow: 0 0 0 4px rgba(199, 49, 44, 0.2);
}

.floating-menu-item.active .floating-menu-text {
    opacity: 1;
    transform: translateX(0);
    color: #2d2d2d;
    font-weight: 600;
}

/* Mobile: Ausblenden */
@media screen and (max-width: 1200px) {
    .floating-menu-nav {
        display: none;
    }
}

/* ========================================
   Page Transition Overlay
   ======================================== */

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #a71e1e;
    z-index: 99999999;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Wenn preload aktiv */
.page-transition-overlay.preload {
    display: flex;
    transform: translateX(0);
}

.transition-text {
    font-size: 5rem;
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: 3px;
    opacity: 0;
    transform: scale(0.8);
}

.page-transition-overlay.preload .transition-text {
    opacity: 1;
    transform: scale(1);
}

@media screen and (max-width: 768px) {
    .transition-text {
        font-size: 3rem;
    }
}

.page-transition-overlay {
    position: fixed;
    top: -10vh; /* Startet höher */
    left: 0;
    width: 100vw;
    height: 120vh; /* Extra hoch */
    background-color: #a71e1e;
    z-index: 99999999;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* ========================================
   Mobile Speisekarte Bottom Navigation
   ======================================== */

.mobile-menu-nav {
    display: none;
}

@media screen and (max-width: 968px) {
    .mobile-menu-nav {
        display: block;
        position: relative;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 0.55rem 0;
    }

    .mobile-menu-nav.stuck {
        position: fixed;
        top: 82px; /* overridden by JS with actual navbar height */
        left: 0;
    }

    .mobile-menu-nav-list {
        display: flex;
        gap: 0.4rem;
        overflow-x: auto;
        padding: 0 1rem;
        list-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-nav-list::-webkit-scrollbar {
        display: none;
    }

    .mobile-menu-nav-item {
        flex-shrink: 0;
        padding: 0.45rem 1.1rem;
        border-radius: 20px;
        font-family: 'Arial', sans-serif;
        font-size: 0.78rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #6d6d6d;
        background: rgba(0, 0, 0, 0.06);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
        white-space: nowrap;
        user-select: none;
    }

    .mobile-menu-nav-item.active {
        background: #8B1A1A;
        color: #ffffff;
    }
}

.menu-subcategory { margin-bottom: 3rem; }
.menu-subcategory:last-child { margin-bottom: 0; }
.menu-section-note + .menu-subcategory { margin-top: 3rem; }
.subcategory-title {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: #a71e1e;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8e4df;
}
.subcategory-note {
    font-size: 0.85rem;
    color: #a71e1e;
    font-style: italic;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1.2rem;
}
.menu-section-note {
    text-align: center;
    font-size: 0.9rem;
    color: #6d6d6d;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e4df;
}

.extra-beilagen-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    background: #fff8f3;
    border-left: 3px solid #a71e1e;
    border-radius: 0 4px 4px 0;
    margin-bottom: 0.5rem;
}

.extra-beilagen-item:last-child {
    margin-bottom: 0;
}

.extra-beilagen-toppings {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #6d6d6d;
    line-height: 1.5;
}

.extra-beilagen-price {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d2d2d;
    white-space: nowrap;
}

/* ========================================
   Speisekarte – Floating Order Button
   ======================================== */

.order-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #a71e1e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 4px 18px rgba(167, 30, 30, 0.45);
    transition: background 0.2s, box-shadow 0.2s, transform 0.5s ease, opacity 0.5s ease;
    font-family: 'Arial', sans-serif;
}

.order-fab.float-hidden {
    opacity: 0;
    transform: translateY(14px);
}

.order-fab:hover {
    background: #8a1818;
    box-shadow: 0 6px 24px rgba(167, 30, 30, 0.6);
    transform: translateY(-2px);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.order-fab svg {
    flex-shrink: 0;
    transform-origin: center;
    width: 17px;
    height: 17px;
}

@keyframes phone-buzz {
    0%   { transform: rotate(0deg)   translate(0, 0); }
    15%  { transform: rotate(-8deg)  translate(-1px, 1px); }
    30%  { transform: rotate(7deg)   translate(1px, -1px); }
    45%  { transform: rotate(-6deg)  translate(-1px, 0); }
    60%  { transform: rotate(5deg)   translate(1px, 0); }
    75%  { transform: rotate(-3deg)  translate(0, 0); }
    90%  { transform: rotate(2deg)   translate(0, 0); }
    100% { transform: rotate(0deg)   translate(0, 0); }
}

.order-fab:hover svg {
    animation: phone-buzz 0.5s ease-in-out;
}

body.nav-open .order-fab {
    display: none;
}

.order-fab-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.order-fab-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-fab-number {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 480px) {
    .order-fab {
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        right: 0.75rem;
        padding: 0.6rem;
        gap: 0;
        border-radius: 50%;
        box-shadow: none;
    }

    .order-fab svg {
        width: 18px;
        height: 18px;
    }

    .order-fab-text {
        display: none;
    }
}

/* ========================================
   Reservation Page
   ======================================== */

.reservation-hero {
    background: linear-gradient(135deg, #a71e1e 0%, #3b0000 100%);
    padding: calc(8rem + 80px) 2rem 8rem;
    text-align: center;
    margin-top: 0;
}

.reservation-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.reservation-hero-title {
    font-size: 4rem;
    color: #ffffff;
    font-family: 'Georgia', serif;
    font-weight: bold;
    margin: 0.5rem 0 1rem;
    letter-spacing: 2px;
}

.reservation-hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    opacity: 0.95;
}

.reservation-section {
    background-color: #f5f1ed;
    padding: 6rem 2rem;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-form {
    margin-top: 3rem;
    text-align: left;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group--people {
    grid-column: 1;
}

.form-label {
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a71e1e;
    font-weight: 600;
}

.required-star {
    color: #a71e1e;
    margin-left: 1px;
}

.form-input {
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d4c9be;
    border-radius: 4px;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: #b0a898;
    font-style: italic;
}

.form-input:focus {
    border-color: #a71e1e;
    box-shadow: 0 0 0 3px rgba(167, 30, 30, 0.08);
}

.form-input.error {
    border-color: #c25252;
}

.form-error {
    font-size: 0.78rem;
    color: #c25252;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.2px;
    margin-top: 0.1rem;
}

.form-input--date {
    color-scheme: light;
    cursor: pointer;
    width: 100%;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-input--date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.form-input--date::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}

.form-select {
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d4c9be;
    border-radius: 4px;
    color: #2d2d2d;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    padding: 0.85rem 2.2rem 0.85rem 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a71e1e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
}

.form-select:focus {
    border-color: #a71e1e;
    box-shadow: 0 0 0 3px rgba(167, 30, 30, 0.08);
}

.form-select option,
.form-select optgroup {
    background: #ffffff;
    color: #2d2d2d;
}

/* People counter */
.people-counter {
    display: flex;
    align-items: stretch;
}

.counter-btn {
    background: #8B1A1A;
    border: 1px solid #8B1A1A;
    color: #ffffff;
    font-size: 1.4rem;
    width: 46px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.counter-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.counter-btn:last-child {
    border-radius: 0 4px 4px 0;
}

.counter-btn:hover {
    background: #621212;
    border-color: #621212;
}

.counter-input {
    width: 80px;
    text-align: center;
    border-radius: 0;
    border-left: none;
    border-right: none;
    cursor: default;
    /*-moz-appearance: textfield;*/
}

.counter-input::-webkit-outer-spin-button,
.counter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Time */
.time-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-wrapper .form-select {
    flex: 1;
}

.time-colon {
    color: #a71e1e;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.time-uhr {
    color: #6d6d6d;
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'Georgia', serif;
}

/* Form footer */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e4df;
    gap: 1.5rem;
}

.pflichtfelder {
    font-size: 0.85rem;
    color: #6d6d6d;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.form-privacy-note {
    font-size: 0.78rem;
    color: #6d6d6d;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
    line-height: 1.6;
}

.form-privacy-note a,
.form-privacy-note a:visited {
    color: #6d6d6d !important;
    text-decoration: underline;
}

.btn-submit {
    background-color: #8B1A1A;
    color: #ffffff;
    border: none;
    padding: 0.9rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-submit:hover {
    background-color: #621212;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
}

/* Success message */
.form-success {
    text-align: center;
    padding: 4rem 2rem;
}

.form-success h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #a71e1e;
    font-weight: bold;
    margin-bottom: 1rem;
}

.form-success p {
    color: #6d6d6d;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
}

/* ========================================
   Legal Pages (Impressum / Datenschutz)
   ======================================== */

.legal-page {
    background-color: #f5f1ed;
    min-height: 100vh;
    padding: 140px 2rem 6rem;
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
}

.legal-page-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d2d2d;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.legal-divider {
    width: 60px;
    height: 3px;
    background-color: #a71e1e;
    margin: 1rem 0 3rem;
}

.legal-section-heading {
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: bold;
    color: #a71e1e;
    margin: 2.5rem 0 0.6rem;
    letter-spacing: 0.5px;
}

.legal-text {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #6d6d6d;
}

.legal-text a {
    color: #a71e1e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-text a:hover {
    color: #c25252;
}

.legal-text strong {
    color: #2d2d2d;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .legal-page {
        padding: 120px 1.5rem 4rem;
    }

    .legal-page-title {
        font-size: 1.9rem;
    }
}

/* Active nav button (current page) */
.btn-reserve-nav--active {
    background-color: #621212;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .reservation-hero-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group--people {
        grid-column: 1;
    }

    .reservation-form {
        padding: 2rem 1.5rem;
    }

    .form-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
    }
}
