﻿/* ============================================
   GLOBAL – Variablen & Grundlayout
============================================ */

body {
  margin: 0;
  padding-top: 65px;
  background: #000;       /* Schwarzer Hintergrund */
  color: #d9b8a0;             /* Weiße Schrift */
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

/* ============================================
   Navigation Finalisiert (Schwarz-Rot + Orange)
============================================ */

.main-header {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  min-height: 60px;
  background: linear-gradient(90deg, #000000 70%, #220000 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid #ff0000;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(255,0,0,0.35);
  backdrop-filter: blur(6px);
}

.logo {
  color: #ff0000;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px #cc0000;
}

nav {
    position: relative;
    z-index: 99999;
}

/* NAV BASIS */
nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #ff0000;
  border-radius: 12px;
  text-decoration: none;
  padding: 12px 14px;
  padding-right: 32px; /* zusätzlicher Platz für den Pfeil rechts */
  display: block;
  transition: 0.25s ease;
  font-weight: bold;
}

/* Untermenü-Hintergrund leicht orange, sehr dezent */
nav ul li ul {
    background: rgba(255, 80, 0, 0.08); /* ganz leichter Orange-Hauch */
    backdrop-filter: blur(8px); /* edler Glas-Effekt */
    border: 1px solid rgba(255, 80, 0, 0.25); /* dezente orange Kante */
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45); /* tiefer Schatten */
    padding: 6px 0; /* etwas Luft oben/unten */
}

/* Pfeil für Menüpunkte mit Untermenü */
nav ul li:has(ul) > a::after {
    content: "►"; /* minimal dicker, aber nicht plump */
    font-size: 1.25rem; /* größer & sichtbar */
    position: absolute;
    right: 12px; /* weiter rechts */
    top: 50%;
    transform: translateY(-50%);
    color: #ffb43c; /* Gold */
    text-shadow: 0 0 8px rgba(255, 180, 60, 0.35); /* Gold-Glow */
    transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
    opacity: 1;
}

nav ul li.open > a::after {
    transform: translateY(-50%) rotate(90deg);
    color: #ffd28a; /* helleres Gold beim Öffnen */
    text-shadow: 0 0 12px rgba(255, 180, 60, 0.35);
}

/* DROPDOWN BASIS */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100000;
    background: rgba(13, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    flex-direction: column;
    min-width: 180px;
    padding: 10px 0;
    border: 1px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);

    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ============================
   BURGER BUTTON BASIS
============================ */
.burger {
    display: none;
    width: 36px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-line {
    width: 100%;
    height: 4px;
    background: #ff6600;
    border-radius: 2px;
    transition: 0.2s ease;
}

/* X-Transformation */
.burger.active .burger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ============================
   BURGER ACTIVE (X-Zustand)
============================ */
.burger.active {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 999999;
    animation: pulseX 1.2s infinite ease-in-out;
    pointer-events: auto;
}

.burger.active .burger-line {
    height: 5px;
    background: #ff3300;
    box-shadow: 0 0 12px #ff3300, 0 0 20px #ff0000;
    pointer-events: none;
}

/* Animation */
@keyframes pulseX {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* ============================
   DESKTOP
============================ */
@media (min-width: 801px) {

    .burger {
        display: none;
    }

    nav ul {
        display: flex;
    }

    /* Dropdown öffnen bei Hover */
    nav ul li:hover > ul {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Pfeil drehen bei Hover (Desktop) */
    nav ul li:hover > a::after {
        transform: translateY(-50%) rotate(90deg);
        color: #ffd28a; /* helleres Gold beim Öffnen */
        text-shadow: 0 0 12px rgba(255, 180, 60, 0.35);
   }
}

/* ============================
   MOBILE SLIDE-IN MENÜ
============================ */
@media (max-width: 800px) {

    /* Burger sichtbar */
    .burger {
        display: flex;
    }

    /* Menü-Panel */
    nav {
        position: fixed;
        top: 0;
        right: -260px; /* Start außerhalb */
        width: 260px;
        height: 100vh;
        background: rgba(0,0,0,0.92);
        backdrop-filter: blur(6px);
        padding-top: 70px;
        transition: right 0.35s ease;
        border-left: 1px solid #ff0000;
        z-index: 99990;
    }

    nav.open {
        right: 0; /* Rein fahren */
    }

    nav ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    /* ============================
       UNTERMENÜS (fix)
    ============================ */

    /* Untermenüs standardmäßig verstecken */
    nav ul li ul {
        display: none;
        opacity: 0;
        transform: translateY(5px);
        transition: 0.25s ease;
        pointer-events: none;
    }

    /* Wenn LI .open hat → Untermenü anzeigen */
    nav ul li.open > ul {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Optional: Untermenü-Links schöner */
    nav ul li ul li a {
        padding-left: 30px;
        font-size: 0.95em;
    }
}

/* Hover-Effekt */
nav ul li > a:hover {
    background: rgba(255, 30, 0, 0.25);
    color: #ff6600;
    transform: translateY(-1px);
}

/* ============================================
   BOXEN – Hauptcontainer & Schriften
============================================ */

.box1 {
	padding: 35px 45px;
	margin: 40px auto;
	max-width: 1200px;
	background: rgba(15, 0, 0, 0.45); /* dunkler, weniger rot */
	backdrop-filter: none !important;
	border-radius: 16px;
	border: 1px solid #ff0000;
	box-shadow: 0 12px 28px rgba(0,0,0,0.55);
	color: #d9b8a0; /* warm, aber nicht knallig */
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.box1.scrolled {
    transform: translateY(-40px);
    box-shadow: 0 0 18px rgba(255, 180, 60, 0.35);		/* Gold*/
    border-right: 2px solid rgba(255, 180, 60, 0.7);	/* Gelb*/
    border-bottom: 2px solid rgba(255, 180, 60, 0.7);	/* Gelb*/
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

a {
  font-size: 15px;
  color: gold;
}  

p {
  font-size: 15px;
}

.seitenfuss {
  text-align: center;
  padding: 20px 20;
  margin-top: 50px;
  font-size: 15px;
  color: #d9b8a0;
  background: linear-gradient(90deg, #000000 70%, #220000 100%);
  border: 1px solid #ff0000;
  border-radius: 12px;
  box-shadow: 0 0 18pxrgba(255, 143, 99, 0.64);
  backdrop-filter: blur(4px);
}

/* ============================================
   RAHMEN – Kategorien (Speisekarte / Getränke)
============================================ */

.rahmen {
  box-sizing: border-box; /* verhindert Überlaufen */
  width: 100%;
  padding: 28px 26px;
  margin: 22px 0;
  background: rgba(8, 0, 0, 0.65); /* dunkler als box1 */
  backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid #ff0000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
  color: #d9b8a0;
}

.rahmen h2,
.rahmen h3 {
  color: #ff8844; /* warmes Orange */
  margin-bottom: 14px;
  text-shadow: 0 0 6px rgba(255, 80, 0, 0.3);
}

/* ============================================
   Speisekarte
============================================ */

.speise {
    position: relative;
    box-sizing: border-box;
    margin-top: 18px;
    padding: 22px 26px;
    background: rgba(20, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(255, 80, 0, 0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.speise-btn {
    background: none;
    border: none;
    color: gold;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 6px 0;
    width: 100%;
    text-align: left;
    transition: 0.3s ease;
}

.speise-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,120,0,0.4);
}

.speise-info p {
    margin: 7px 0;
    padding: 7px 6px;
    font-size: 18px;
    color: #e6c7b0;
}

.speise-img {
    display: none;
    width: 100%;
    max-width: 260px;
    margin: 14px auto 0 auto;
    border: 1px solid red;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(255,80,0,0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.speise-img.visible {
    display: block !important;
    opacity: 1 !important;
}
  
/* ============================================
   GETRÄNKE – Liste
============================================ */

.drink-liste {
    box-sizing: border-box;
	margin-top: 18px;
	padding: 22px 26px;
    background: rgba(20, 0, 0, 0.35); /* dunkles Glas, wenig Rot */
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(255, 80, 0, 0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.drink-liste p {
    margin: 7px 0;
    padding: 7px 6px;
    font-size: 18px;
    color: #e6c7b0; /* warm, aber nicht orange */
    transition: 0.3s ease;
}

.drink-liste p:hover {
    background: rgba(255, 80, 0, 0.10); /* sehr leichtes Orange */
    backdrop-filter: blur(3px);
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(255, 120, 0, 0.20);
    color: #ffffff;
}

/* ============================================
   ALLERGENE – Box
============================================ */

.allergen-box {
    background: #0d0d0d;
    border: 1px solid rgba(128, 0, 0, 0.4);
    padding: 15px;
    border-radius: 12,px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(128,0,0,0.3);
}

.small-text {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}

/* ============================================
   EVENTS – Galerie
============================================ */

.events-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    padding: 30px 0;
}

.event-item img {
    width: 85%;
    max-width: 750px;
    border-radius: 14px;
    border: 2px solid rgba(255, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 18px rgba(255,0,0,0.25);
    transition: 0.35s ease;
}

.event-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 28px rgba(255,0,0,0.45);
    border-color: rgba(255, 0, 0, 0.55);
}

.event-item {
    opacity: 0;
    animation: fadeInEvent 0.8s ease forwards;
}

@keyframes fadeInEvent {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Laufschrift
============================================ */

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  background: rgba(40, 2, 2, 0.55);
  border-top: 2px solid rgba(255,0,0,0.72);
  border-bottom: 2px solid rgba(255,0,0,0.72);
  box-shadow: 0 0 20px rgba(255, 36, 0, 0.98);
  backdrop-filter: blur(4px);
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  font-family: Elephant, sans-serif;
  font-size: 28px;
  color: gold;
  line-height: 30px;
  animation: marquee 17s linear infinite;
}

  @keyframes marquee {
     0%   { transform: translateX(0%); }
     100% { transform: translateX(-100%); }
}

/* ============================================
   Event -Kalender & Flyer
============================================ */

.kalender-liste {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.kalender-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 15px;
  border: 1px solid red;
  border-radius: 12px;
  background: rgba(20, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(255,0,0,0.2);
}

.kalender-datum {
  width: 160px;
  min-width: 160px;
  font-weight: bold;
  color: orange;
  text-align: center;
}

.kalender-text {
  flex: 1;
  color: orange;
}

/* Hervorhebungen */
.highlight-red {
    background: rgba(255, 0, 0, 0.5);
}

.highlight-green {
    background: rgba(0, 255, 0, 0.5);
}

.highlight-yellow {
    background: rgba(255, 255, 0, 0.5);
}

.highlight-blue {
    background: rgba(0, 0, 255, 0.5);
}

/* ============================================
   UNIVERSAL BILDER-GALERIE – Schwarz-Rot Glow
============================================ */

.bilder-banner h1 {
    color: #ff0000;
    font-size: 26px;
    text-align: center;
    text-shadow: 0 0 30px #ff0000, 0 0 15px #aa0000;
    animation: pulseGlow 3s infinite;
}

.gallery-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px #660000;
    transition: 0.3s;
    filter: saturate(1.2);
}

.gallery-grid img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px #ff0000;
    filter: brightness(1.3) contrast(1.6) saturate(1.4);
}

/* ============================================
   MOBILE - Seiteninhalte (optimiert)
============================================ */

@media (max-width: 800px) {

    h1, h2, h3 {
        font-size: 20px;
        text-align: center;
    }

    .box1, .rahmen {
        padding: 8px;
        margin: 8px;
        font-size: 15px;
    }

    .drink-liste p {
        font-size: 15px;
        text-align: center;
    }

    .event-item img {
        width: 90%;
    }

    .gericht,
    .kalender-item {
        flex-direction: column;
        text-align: center;
    }

    .kalender-datum {
        width: 100%;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}












