:root{
  --bg:#2a1f1a;
  --text:#3d2f26;
  --muted:#6b5b52;
  --brand:#7a5c4f;
  --brand-2:#8d6b5a;
  --accent:#a47864;
  --surface:#ffffff;
  --surface-alt:#f7f5f3;
  --shadow:0 10px 30px rgba(42,31,26,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Play", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--surface);
  line-height:1.6;
}

.container{width:min(1100px, 100% - 2rem); margin-inline:auto}
.grid-2{display:grid; grid-template-columns:1.1fr .9fr; gap:2rem}
@media (max-width: 900px){.grid-2{grid-template-columns:1fr}}

/* Header */
.site-header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.9); backdrop-filter:saturate(1.2) blur(6px); border-bottom:1px solid #eaeceb}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:.6rem 0}
.brand{display:flex; align-items:center; gap:.6rem; font-weight:700; color:var(--text); text-decoration:none}
.brand-logo{border-radius:8px}
.brand-name{letter-spacing:.2px}
.nav{display:flex; gap:1rem; align-items:center}
.nav a{color:var(--text); text-decoration:none; padding:.5rem .6rem; border-radius:8px}
.nav a:hover{background:var(--surface-alt)}

/* Status Indicator */
.status-indicator{
  display:flex; 
  align-items:center; 
  gap:.4rem; 
  padding:.4rem .8rem; 
  background:var(--surface-alt); 
  border-radius:20px; 
  border:1px solid var(--accent);
  font-size:.85rem;
  font-weight:600;
  margin-left:1rem;
  transition:all .3s ease;
}
.status-indicator:hover{
  background:var(--accent);
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(164,120,100,.3);
}
.status-icon{
  font-size:1rem;
  line-height:1;
}
.status-text{
  white-space:nowrap;
}
.nav-toggle{display:none; background:none; border:0; cursor:pointer}
.nav-toggle .bar{display:block; width:24px; height:2px; background:var(--text); margin:5px 0; transition:.3s}

@media (max-width: 760px){
  .nav{position:fixed; inset:64px 0 auto 0; background:#fff; border-bottom:1px solid #eaeceb; padding:1rem; display:none; flex-direction:column}
  .nav[aria-expanded="true"]{display:flex}
  .nav-toggle{display:block}
  .status-indicator{
    margin-left:0; 
    margin-top:.5rem; 
    align-self:center;
    font-size:.8rem;
    padding:.3rem .6rem;
  }
}

/* Hero */
.hero{position:relative; min-height:68svh; display:grid; place-items:center; overflow:hidden}
.hero-bg{position:absolute; inset:0; background:url('hero-bg.webp') center/cover no-repeat; transform:scale(1.02)}
.hero-video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(255,255,255,0) 100%); z-index:2}
.hero-content{position:relative; text-align:center; color:#fff; padding:2rem 0; z-index:3; display:flex; justify-content:center; align-items:flex-start; min-height:100vh; padding-top:4rem}
.hero-glass{background:rgba(255,255,255,0.1); backdrop-filter:blur(10px); border-radius:20px; padding:2.5rem; box-shadow:0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 20px rgba(164,120,100,0.3); max-width:800px}
.hero h1{font-size:clamp(1.8rem, 3.2vw + 1rem, 3rem); line-height:1.15; margin:0 0 .6rem; text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.tagline{font-size:clamp(1rem, 1vw + .6rem, 1.25rem); opacity:.95; margin:0 auto 1.2rem; max-width:40ch; text-shadow:0 1px 2px rgba(0,0,0,0.3)}
.cta{display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap}

/* Sections */
.section{padding:clamp(2rem, 3.2vw + 1rem, 4rem) 0}
.section-alt{background:var(--surface-alt)}
h2{font-size:clamp(1.5rem, 1.4vw + 1rem, 2rem); margin:.2rem 0 1rem; color:var(--brand)}
p{margin:.3rem 0 1rem}
.note{color:var(--muted)}

/* Cards / Menu */
.menu-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:1rem; margin-top:1rem}
@media (max-width: 1100px){.menu-grid{grid-template-columns:repeat(3, 1fr)}}
@media (max-width: 820px){.menu-grid{grid-template-columns:repeat(2, 1fr)}}
@media (max-width: 520px){.menu-grid{grid-template-columns:1fr}}
.card{background:#fff; border:1px solid #eaeceb; border-radius:14px; padding:1rem; box-shadow:var(--shadow); transition:border-color 0.3s ease}
.card:hover{border-color:var(--accent)}
.card h3{margin:.2rem 0 .2rem}
.price{font-weight:700; color:var(--brand)}

details.menu-details{margin-top:1rem}
details.menu-details summary{cursor:pointer; user-select:none; font-weight:700}
.menu-extra{padding-top:.6rem}
.menu-list{columns:2; gap:2rem; padding-left:1.2rem}
@media (max-width: 700px){.menu-list{columns:1}}
.fine-print{color:var(--muted); font-size:.9rem}

/* Hours */
.hours{list-style:none; padding:0; margin:.5rem 0 0; border:1px solid var(--accent); border-radius:14px; overflow:hidden}
.hours li{display:flex; justify-content:space-between; gap:1rem; padding:.75rem 1rem; background:#fff}
.hours li:nth-child(2n){background:#fafbfa}
.hours span:first-child{font-weight:600}

/* Media */
.feature-image, .map-preview{margin:0}
.feature-image img, .map-preview img{width:100%; height:auto; display:block; border-radius:14px; box-shadow:var(--shadow)}
.feature-image{position:relative}

/* Familien-Mini-Galerie */
.family-gallery img{display:none}
.family-gallery img.active{display:block}

/* Pfeil-Buttons in Familien-Galerie */
.family-gallery .family-prev, .family-gallery .family-next{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,.6); color:#fff; border:none; 
  width:42px; height:42px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center; 
  box-shadow:0 6px 20px rgba(0,0,0,.25); z-index:2; 
  transition:background .2s ease, transform .2s ease;
}
.family-gallery .family-prev{left:10px}
.family-gallery .family-next{right:10px}
.family-gallery .family-prev:hover, .family-gallery .family-next:hover{
  background:rgba(0,0,0,.8); transform:translateY(-50%) scale(1.05)
}
@media (max-width: 600px){
  .family-gallery .family-prev, .family-gallery .family-next{width:38px; height:38px}
}

/* Gallery */
.gallery-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:1rem; margin-top:1.5rem}
@media (max-width: 600px){.gallery-grid{grid-template-columns:1fr}}
.gallery-item{position:relative; overflow:hidden; border-radius:14px; box-shadow:var(--shadow)}
.gallery-item img{width:100%; height:250px; object-fit:cover; object-position:center; transition:transform .3s ease}
.gallery-item:hover img{transform:scale(1.05)}

/* Spezifische Bildzentrierung */
.gallery-img-2{object-position:center 80%}
.gallery-img-3{object-position:center 30%}

/* Buttons */
.btn{display:inline-block; padding:.7rem 1rem; border-radius:12px; text-decoration:none; font-weight:700; transition:.25s; border:2px solid transparent}
.btn.primary{background:var(--brand); color:#fff}
.btn.primary:hover{background:var(--brand-2)}
.btn.ghost{background:transparent; color:#fff; border-color:rgba(255,255,255,.7)}
.btn.accent{background:var(--accent); color:#fff; border-color:var(--accent)}
.btn.accent:hover{background:#8d6b5a; border-color:#8d6b5a}
.links .btn.ghost{color:var(--text); border-color:#cfd6d1}
.btn.ghost:hover{background:rgba(255,255,255,.1)}

/* Contact Form */
.contact-form{margin:2rem 0; padding:1.5rem; background:#fff; border:1px solid #eaeceb; border-radius:14px; box-shadow:var(--shadow)}
.contact-form h3{margin:0 0 1rem; color:var(--brand); font-size:1.2rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block; margin-bottom:.4rem; font-weight:600; color:var(--text)}
.form-group input, .form-group textarea{width:100%; padding:.6rem .8rem; border:1px solid #cfd6d1; border-radius:8px; font-family:inherit; font-size:1rem; transition:border-color .3s ease}
.form-group input:focus, .form-group textarea:focus{outline:none; border-color:var(--brand)}
.form-group textarea{resize:vertical; min-height:100px}
.form-status{margin-top:1rem; padding:.6rem; border-radius:8px; text-align:center; font-weight:600}
.form-status.success{background:#d4edda; color:#155724; border:1px solid #c3e6cb}
.form-status.error{background:#f8d7da; color:#721c24; border:1px solid #f5c6cb}
.form-status.sending{background:#d1ecf1; color:#0c5460; border:1px solid #bee5eb}

/* Kompakte Speisekarten-Ansicht */
.menu-compact{margin:2rem 0; padding:0 1rem}
.menu-preview{position:relative; border-radius:20px; overflow:hidden; box-shadow:var(--shadow); cursor:pointer; transition:all .3s ease; background:#fff; max-width:600px; margin:0 auto}
.menu-preview:hover{transform:translateY(-5px); box-shadow:0 20px 50px rgba(42,31,26,.3)}
.preview-image{width:100%; height:300px; object-fit:cover; object-position:center; display:block; transition:transform .3s ease}
.menu-preview:hover .preview-image{transform:scale(1.02)}
.preview-overlay{position:absolute; inset:0; background:linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.4) 100%); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:2rem; transition:opacity .3s ease}
.preview-text{font-size:1.1rem; font-weight:600; margin-bottom:1.5rem; text-shadow:0 2px 4px rgba(0,0,0,.5)}
.expand-btn{background:var(--brand); color:#fff; border:none; padding:1rem 2rem; border-radius:50px; cursor:pointer; font-weight:700; font-size:1rem; display:flex; align-items:center; gap:.5rem; transition:all .3s ease; box-shadow:0 4px 15px rgba(122,92,79,.3)}
.expand-btn:hover{background:var(--brand-2); transform:translateY(-2px); box-shadow:0 6px 20px rgba(122,92,79,.4)}
.expand-btn svg{transition:transform .3s ease}
.expand-btn:hover svg{transform:translateX(3px)}

/* Erweiterte Speisekarten-Galerie */
.menu-gallery{display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:1.5rem; margin:2rem 0; padding:0 1rem; transition:all .5s ease}
.menu-gallery.expanded{display:grid}
.gallery-header{grid-column:1/-1; display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; padding:0 1rem}
.gallery-header h3{color:var(--brand); font-size:1.5rem; margin:0}
.back-btn{background:var(--surface-alt); color:var(--text); border:2px solid var(--accent); padding:.6rem 1rem; border-radius:25px; cursor:pointer; font-weight:600; font-size:.9rem; display:flex; align-items:center; gap:.4rem; transition:all .3s ease}
.back-btn:hover{background:var(--accent); color:#fff; transform:translateY(-2px); box-shadow:0 4px 12px rgba(164,120,100,.3)}
.back-btn svg{transition:transform .3s ease}
.back-btn:hover svg{transform:translateX(-3px)}
.gallery-item{position:relative; border-radius:15px; overflow:hidden; box-shadow:var(--shadow); cursor:pointer; transition:all .3s ease; background:#fff}
.gallery-item:hover{transform:translateY(-5px); box-shadow:0 15px 40px rgba(42,31,26,.25)}
.gallery-thumbnail{width:100%; height:200px; object-fit:cover; object-position:center; display:block; transition:transform .3s ease}
.gallery-item:hover .gallery-thumbnail{transform:scale(1.05)}
.gallery-overlay{position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent, rgba(0,0,0,.8)); color:#fff; padding:1rem; transform:translateY(100%); transition:transform .3s ease}
.gallery-item:hover .gallery-overlay{transform:translateY(0)}
.gallery-title{font-weight:700; font-size:1rem; text-shadow:0 1px 2px rgba(0,0,0,.5)}

/* Lightbox */
.lightbox{position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.95); z-index:1000; display:none; align-items:center; justify-content:center; padding:1rem}
.lightbox.active{display:flex}
.lightbox-content{position:relative; max-width:85vw; max-height:85vh; display:flex; align-items:center; justify-content:center; background:#fff; border-radius:15px; overflow:hidden; box-shadow:0 25px 80px rgba(0,0,0,.6)}
.lightbox-image{max-width:100%; max-height:100%; object-fit:contain; display:block}
.lightbox-close{position:absolute; top:15px; right:15px; background:rgba(0,0,0,.7); color:#fff; border:none; width:45px; height:45px; border-radius:50%; cursor:pointer; font-size:1.8rem; display:flex; align-items:center; justify-content:center; transition:all .3s ease; z-index:1001; font-weight:bold}
.lightbox-close:hover{background:rgba(0,0,0,.9); transform:scale(1.1)}
.lightbox-nav{position:absolute; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; pointer-events:none; padding:0 20px; transition:opacity .5s ease, visibility .5s ease}
.lightbox-nav.hidden{opacity:0; visibility:hidden}
.lightbox-prev, .lightbox-next{background:rgba(0,0,0,.7); color:#fff; border:none; width:50px; height:50px; border-radius:50%; cursor:pointer; font-size:1.5rem; display:flex; align-items:center; justify-content:center; transition:all .3s ease; pointer-events:auto; font-weight:bold}
.lightbox-prev:hover, .lightbox-next:hover{background:rgba(0,0,0,.9); transform:scale(1.1)}
.lightbox-prev{left:20px}
.lightbox-next{right:20px}

/* Mobile Optimierungen */
@media (max-width: 768px){
  .menu-compact{padding:0 .5rem}
  .menu-preview{max-width:100%; border-radius:15px}
  .preview-image{height:250px}
  .preview-overlay{padding:1.5rem}
  .preview-text{font-size:1rem; margin-bottom:1rem}
  .expand-btn{padding:.8rem 1.5rem; font-size:.9rem}
  .gallery-header{flex-direction:column; gap:.8rem; text-align:center; margin-bottom:1.5rem}
  .gallery-header h3{font-size:1.3rem}
  .back-btn{padding:.5rem .8rem; font-size:.85rem}
  .menu-gallery{grid-template-columns:repeat(auto-fit, minmax(150px, 1fr)); gap:1rem; margin:1.5rem 0; padding:0 .5rem}
  .gallery-thumbnail{height:150px}
  .gallery-overlay{padding:.8rem}
  .gallery-title{font-size:.9rem}
  .lightbox{padding:.5rem}
  .lightbox-content{max-width:95vw; max-height:95vh; border-radius:10px}
  .lightbox-close{top:10px; right:10px; width:40px; height:40px; font-size:1.5rem}
  .lightbox-prev, .lightbox-next{width:45px; height:45px; font-size:1.3rem}
  .lightbox-prev{left:10px}
  .lightbox-next{right:10px}
  .lightbox-nav{padding:0 10px}
}

@media (max-width: 480px){
  .menu-compact{padding:0 .3rem}
  .menu-preview{border-radius:12px}
  .preview-image{height:200px}
  .preview-overlay{padding:1rem}
  .preview-text{font-size:.9rem; margin-bottom:.8rem}
  .expand-btn{padding:.7rem 1.2rem; font-size:.85rem}
  .menu-gallery{grid-template-columns:repeat(2, 1fr); gap:.8rem; margin:1rem 0; padding:0 .3rem}
  .gallery-thumbnail{height:120px}
  .gallery-overlay{padding:.6rem}
  .gallery-title{font-size:.8rem}
  .lightbox{padding:.3rem}
  .lightbox-content{max-width:98vw; max-height:98vh; border-radius:8px}
  .lightbox-close{top:8px; right:8px; width:35px; height:35px; font-size:1.3rem}
  .lightbox-prev, .lightbox-next{width:40px; height:40px; font-size:1.2rem}
  .lightbox-prev{left:8px}
  .lightbox-next{right:8px}
  .lightbox-nav{padding:0 8px}
}

/* Contact Links */
.contact a{color:var(--text); text-decoration:none; transition:color .3s ease}
.contact a:hover{color:var(--brand); text-decoration:underline}

/* Holiday Button & Modal */
.holiday-btn{
  margin-top:1rem; 
  width:100%; 
  max-width:280px; 
  cursor:pointer; 
  font-size:1rem;
  transition:all .3s ease;
  box-shadow:0 4px 15px rgba(164,120,100,.2);
}
.holiday-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(164,120,100,.3);
}

.holiday-modal{
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  background:rgba(0,0,0,.85); 
  z-index:1000; 
  display:none; 
  align-items:center; 
  justify-content:center; 
  padding:1rem;
  overflow-y:auto;
}
.holiday-modal.active{display:flex}

.holiday-modal-content{
  position:relative; 
  background:#fff; 
  border-radius:20px; 
  padding:2.5rem 2rem; 
  max-width:700px; 
  width:100%; 
  max-height:90vh; 
  overflow-y:auto; 
  box-shadow:0 25px 80px rgba(0,0,0,.6);
  animation:modalSlideIn .3s ease;
}

@keyframes modalSlideIn{
  from{
    opacity:0;
    transform:translateY(-30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.holiday-modal-close{
  position:absolute; 
  top:15px; 
  right:15px; 
  background:var(--surface-alt); 
  color:var(--text); 
  border:none; 
  width:40px; 
  height:40px; 
  border-radius:50%; 
  cursor:pointer; 
  font-size:1.8rem; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  transition:all .3s ease; 
  font-weight:bold;
  line-height:1;
}
.holiday-modal-close:hover{
  background:var(--accent); 
  color:#fff; 
  transform:rotate(90deg);
}

.holiday-modal-title{
  font-size:1.8rem; 
  margin:0 0 1.5rem; 
  color:var(--brand); 
  text-align:center; 
  padding-right:2rem;
}

.holiday-section{
  margin-bottom:2rem; 
  padding:1.5rem; 
  background:var(--surface-alt); 
  border-radius:14px;
}

.holiday-subtitle{
  font-size:1.3rem; 
  margin:0 0 1rem; 
  display:flex; 
  align-items:center; 
  gap:.5rem;
}
.holiday-subtitle.open{color:#28a745}
.holiday-subtitle.closed{color:#dc3545}

.holiday-list{
  list-style:none; 
  padding:0; 
  margin:0; 
  display:grid; 
  gap:.6rem;
}
.holiday-list li{
  padding:.8rem 1rem; 
  background:#fff; 
  border-radius:10px; 
  border-left:4px solid var(--accent); 
  transition:all .2s ease;
  font-size:.95rem;
}
.holiday-list li:hover{
  transform:translateX(5px);
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.holiday-info{
  display:grid; 
  gap:1rem; 
  margin-top:1.5rem;
}

.holiday-info-box{
  display:flex; 
  gap:1rem; 
  padding:1.2rem; 
  background:linear-gradient(135deg, var(--surface-alt) 0%, #fff 100%); 
  border-radius:14px; 
  border:2px solid var(--accent); 
  align-items:flex-start;
}

.info-icon{
  font-size:2rem; 
  line-height:1; 
  flex-shrink:0;
}

.info-content h4{
  margin:0 0 .5rem; 
  color:var(--brand); 
  font-size:1.1rem;
}
.info-content p{
  margin:.3rem 0;
}
.info-note{
  color:var(--muted); 
  font-size:.9rem; 
  font-style:italic;
}

/* Mobile Optimierungen für Holiday Modal */
@media (max-width: 768px){
  .holiday-modal-content{
    padding:2rem 1.5rem; 
    max-height:95vh;
  }
  .holiday-modal-title{
    font-size:1.5rem; 
    padding-right:2.5rem;
  }
  .holiday-section{
    padding:1.2rem;
  }
  .holiday-subtitle{
    font-size:1.1rem;
  }
  .holiday-list li{
    padding:.7rem .8rem; 
    font-size:.9rem;
  }
  .holiday-info-box{
    flex-direction:column; 
    padding:1rem; 
    gap:.8rem;
  }
  .info-icon{
    font-size:1.8rem;
  }
  .info-content h4{
    font-size:1rem;
  }
}

@media (max-width: 480px){
  .holiday-btn{
    font-size:.9rem; 
    max-width:100%;
  }
  .holiday-modal{padding:.5rem}
  .holiday-modal-content{
    padding:1.5rem 1rem; 
    border-radius:15px;
  }
  .holiday-modal-title{
    font-size:1.3rem;
  }
  .holiday-section{
    padding:1rem; 
    margin-bottom:1.5rem;
  }
  .holiday-subtitle{
    font-size:1rem;
  }
  .holiday-list li{
    padding:.6rem .7rem; 
    font-size:.85rem;
  }
  .holiday-info-box{
    padding:.8rem;
  }
  .info-icon{
    font-size:1.5rem;
  }
  .info-content h4{
    font-size:.95rem;
  }
  .info-content p{
    font-size:.9rem;
  }
  .info-note{
    font-size:.85rem;
  }
}

/* Footer */
.site-footer{padding:1.2rem 0; border-top:1px solid var(--accent); background:#fff; color:var(--muted)}
.site-footer p{margin:0}
.footer-content{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem}
.social-links{display:flex; gap:.8rem; align-items:center}
.social-icon{width:32px; height:32px; object-fit:contain; transition:transform .3s ease, opacity .3s ease; opacity:.8}
.social-icon:hover{transform:scale(1.1); opacity:1}
@media (max-width: 600px){
  .footer-content{justify-content:center; text-align:center}
  .social-icon{width:28px; height:28px}
}


/* Info Modal (temp.jpg Hinweis) */
.info-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.85);
  z-index:1100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:1rem;
  overflow:auto;
}
.info-modal.active{display:flex}
.info-modal-content{
  position:relative;
  background:#fff;
  border-radius:16px;
  max-width:90vw;
  max-height:90vh;
  overflow:hidden;
  box-shadow:0 25px 80px rgba(0,0,0,.6);
  animation:modalSlideIn .25s ease;
}
.info-modal-image{
  display:block;
  width:100%;
  height:auto;
  max-height:90vh;
  object-fit:contain;
  background:#000;
}
.info-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  background:rgba(0,0,0,.7);
  color:#fff;
  border:none;
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;
  font-size:1.6rem;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
  z-index:1;
  line-height:1;
  font-weight:bold;
}
.info-modal-close:hover{
  background:rgba(0,0,0,.9);
  transform:scale(1.08);
}

