@font-face {
    font-family: 'Roboto-Regular';
    src: url('/design/css/fonts/Roboto-Regular.ttf'); format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/design/css/fonts/Roboto-Bold.ttf'); format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
  --accent: #005B26;
  --text: #1d1f21;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Roboto-Regular', Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

strong{
    font-family: 'Roboto-Bold';
}

.display_none{
  display: none;
}

/*Event teaser*/

.event-teaser {
    min-width: 100px;
    height: 50px;
    position: fixed;
    top: 12%;
    left: 20px;
    cursor:pointer;
    z-index: 10;
}

.event-teaser svg{
 transition: transform 0.3s ease-in-out;
 opacity: 0;
}

.event-teaser svg:first-child{
 transform: translateX(-50%); 
}

.event-teaser svg:last-child{
 transform: translateX(50%); 
}

.event-teaser:hover svg:first-child{
 transform: translateX(50%); 
 opacity: 1;
}

.event-teaser:hover svg:last-child{
 transform: translateX(-50%);
 opacity: 1; 
}

.event-content{
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  min-height: 100px;
  z-index: 10;
}

.event-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); 
  z-index: 9;
}

.event-btn{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  
}

.event-btn:hover{
  background-color: #0056b3;
  color: white;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: 2rem;
  line-height: 1;
  padding: .28rem .5rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: #fff;
  color: #374151;
  transform: translateY(-50%);
  vertical-align: top;
  top: 50%;
  position: relative;
}

.event-teaser .badge--veggie{
  transition: all 0.3s ease-in-out;
}

.event-teaser:hover .badge--veggie{
  color: #fff;
  background: linear-gradient(to bottom, #005B26, #0b2a18);

}


img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.25rem; }
h1, h2, h3, h4 {
  font-family: "Roboto-Bold", Georgia, serif;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
p { margin: 0 0 1rem; color: var(--text); }

h1{font-size: 2rem; color:var(--accent);}
h2{font-size: 1.5rem; color:var(--accent);}
h3{font-size: 1.25rem;}
h4{font-size: 1rem;}

.kasten_green{

  background: linear-gradient(to bottom, #005B26, #0b2a18);
  color: #fff ;
  padding: 1.5rem;
  border-radius: 5px;
}

 /* Reserve form */
  .reserve-form {
    display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1rem; max-width: 720px;
  }
  @media (min-width: 700px) {
    .reserve-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  .form-row { display: grid; gap: .35rem; }
  label { font-weight: 600; font-size: .95rem; }
  input, select, textarea {
    padding: .6rem .75rem; border-radius: .5rem; border: 1px solid #e1e5ea; background: #fff;
    font: inherit; color: inherit;
  }
  input:focus, select:focus, textarea:focus { outline: 2px solid rgba(8,123,8,.25); border-color: var(--accent); }
  .reserve-form .btn { grid-column: 1 / -1; }
  .form-hint { color: var(--muted); margin-top: .25rem; }

.kasten_green p,.kasten_green h2,.kasten_green h3,.kasten_green h4,.kasten_green h5,.kasten_green h6,.kasten_green a,.kasten_green a:hover,.kasten_green strong,.kasten_green em,.kasten_green i,.kasten_green span,.kasten_green b,.kasten_green u,.kasten_green li,.kasten_green td,.kasten_green th,.kasten_green .btn,.kasten_green .btn-accent,.kasten_green .btn-accent:hover,.kasten_green .btn:hover,.kasten_green .btn-accent:hover{
    color: #fff ;
}

.sp_price, .sp_price_o ,.sp_price_o span { 
  display:flex; 
  position: relative; 
  justify-content: space-between; 
}
.sp_price_o span{
  flex-grow: 1;
}

.sp_price::before { 
  content:""; 
  flex-grow: 1; 
  border-bottom: 2px dotted var(--text); 
}

.sp_price_o span::after { 
  content:""; 
  flex-grow: 1; 
  border-bottom: 2px dotted var(--text); 
}
.sp_price_o span::after, .sp_price::before{
  transform:translateY(-25%);    
}

.text a{
    color: var(--accent);
}


.sp_options p{
    margin-bottom: 0;
}

.speisekarte h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.speisekarte h1 {
  margin-top:2rem;
  font-size: 2rem;
  
}

.speisekarte li {
    list-style-type: disc !important;
}

/* Utilities */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.center { text-align: center; }

.margin_b { margin-bottom: 2rem; }
.margin_t { margin-top: 2rem; }

.systemNewElement .systemElementIcon{
  width: 110px;
}

.systemNewElement{
  max-height: 65px !important;
  min-height: 65px !important;

}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 1rem; top: 1rem; background: #fff; color: #000; padding: .5rem .75rem; border-radius: .375rem; box-shadow: var(--shadow);
}

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #eaeaea;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 90px;
}
.brand {
  font-family: "Roboto-Bold", Georgia, serif;
  font-weight: 700; font-size: 1.25rem; letter-spacing: .3px;
  color: var(--text);
  width: 40%;
}

.nav-toggle { display: none; }
.hamburger {
  width: 42px; height: 42px; display: grid; place-items: center; cursor: pointer;
  border-radius: 8px; border: 1px solid #eaeaea;
  padding: 10px 0;
}
.hamburger span {
  width: 22px; height: 2px; background: #111; display: block; position: relative;
}
/* .hamburger span + span { margin-top: 5px; } */

/* Navigation default (mobile) */
.nav {
  position: absolute; left: 0; right: 0; top: 64px;
  background: #fff; display: none; border-bottom: 1px solid #eaeaea;
}
.nav ul {
  list-style: none; margin: 0; padding: .75rem 1rem; display: grid; gap: .25rem; position: relative;
}
.nav a { padding: .5rem .75rem; border-radius: .375rem; display: block; }
.nav a:hover{ background: var(--bg-soft); }
.nav li.current > a{ background: var(--accent); color: #fff; }
.nav a:visited { color: var(--text); }
.nav a:visited:hover{color: var(--accent);}
.nav .btn { margin: .5rem 1rem 1rem; }
a:hover{color: var(--accent);}
.nav li.current > a:hover{background: var(--accent); color: #fff;}

.nav-toggle:checked ~ .nav { display: block; }

.nav ul li ul{
    display: block;
}

/* Desktop nav */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav { position: static; display: flex; align-items: center; border: 0; }
  .nav ul { display: flex; gap: .5rem; padding: 0; }
  .nav a { padding: .5rem .75rem; }
  .nav .btn { margin: 0 0 0 .75rem; }
  .nav ul li ul{
    display: none;
    position: absolute;
    background-color: rgba(255,255,255,.75);
  }

  .brand{
    width: 20%;
  }

  .nav ul li ul li:first-child{
    margin-top: 2rem;
  }

  .nav ul li ul li:last-child{
    margin-bottom: 0.5rem;
  }

  .nav ul li:hover ul{
    display: block;
    padding: 0 0.5rem;
    min-width: 250px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: .5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: .2s ease;
  font-weight: 600;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-accent:hover { filter: brightness(0.95); color:#fff;}

/* Hero */
.hero {
  position: relative; min-height: 72vh; display: grid; place-items: stretch;
  overflow: hidden; background: #000;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-media video {
  position: absolute; inset: 0;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  
}
.hero-overlay {
  position: absolute; inset: 0;
  /*background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,0) 70%);*/
}
.hero-inner {
  position: relative; z-index: 1;
  min-height: 72vh; display: flex; align-items: center; justify-content: flex-end;
  padding: 5rem 0;
}
.info-card {
  width: 400px; max-width: 100%;
  background: rgba(255,255,255,.75); color: #111;
  border-radius: 5px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.25rem;
  border-left: 6px solid var(--accent);
}
.info-card h2 { margin-bottom: .25rem; }
.info-card p { color: #333; margin-bottom: .75rem; }
.info-card .opening { color: var(--muted); margin-bottom: 1rem; }

@media (max-width: 899px) {
  .hero-inner { justify-content: center; padding: 3.5rem 0; }
  .info-card { width: 92%; }
}

/* Sections */
.section { padding: 4rem 0; }
.section-about { background: var(--bg); }
.section-menu { background: var(--bg-soft); }
.section-reserve { background: var(--bg); }
.section-contact { background: var(--bg-soft); }
.section-features { background: var(--bg); padding-top: 2.5rem; padding-bottom: 2.5rem; }

/* Modern Tageskarte Panel */
.section-menu .container {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.section-menu h3 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.section-menu h3::after {
  content: "";
  display: inline-block;
  width: 56px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-left: .25rem;
}

.grid {
  display: grid; gap: 1.25rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1.2fr .8fr; }
}

/* Features grid (3 Icons) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1rem 1rem;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(8,123,8,.35);
}
.feature-card h4 {
  margin: 0;
  font-size: 1.05rem;
}
.feature-card p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .975rem;
}
.feature-card .icon {
  width: 120px; height: 120px;
  display: grid; place-items: center;
  background: rgba(8,123,8,.08);
  color: var(--accent);
  border-radius: 12px;
  border: 1px solid rgba(8,123,8,.15);
}
.feature-card .icon img { width: 100px; height: 100px; }
.card {
  background: #fff; border: 1px solid #eaeaea; border-radius: 5px; padding: 1rem 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.accent-border { border-left: 4px solid var(--accent); }
.checklist ul { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.5rem; margin: .35rem 0; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
}
.menu-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 1rem 1rem 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: .35rem .75rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.menu-item:hover {
  border-color: rgba(8,123,8,.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.menu-item h4 { margin: 0; }
.menu-item p { grid-column: 1 / -1; color: #444; margin: .25rem 0 .5rem; }

/* Badges unter Titel */
.menu-item .badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .1rem 0 .35rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  line-height: 1;
  padding: .28rem .5rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: #fff;
  color: #374151;
}
.badge::before {
  content: '';
  width: .5rem; height: .5rem;
  border-radius: 999px;
  background: currentColor;
}
.badge--fish { color: #2563EB; background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.35); }
.badge--veggie { color: #087B08; background: #ECF5EC; border-color: rgba(8,123,8,.35); }
.badge--meat { color: #DC2626; background: rgba(220,38,38,.08); border-color: rgba(220,38,38,.35); }
.badge--dessert { color: #7C3AED; background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.3); }
.badge--glutenfree { color: #059669; background: rgba(5,150,105,.08); border-color: rgba(5,150,105,.3); }
.badge--chef { color: #B45309; background: rgba(180,83,9,.08); border-color: rgba(180,83,9,.3); }
.menu-item .price {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 999px;
  align-self: start;
}

/* Reserve form */
.reserve-form {
  display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1rem; max-width: 720px;
}
@media (min-width: 700px) {
  .reserve-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.form-row { display: grid; gap: .35rem; }
label { font-weight: 600; font-size: .95rem; }
input, select, textarea {
  padding: .6rem .75rem; border-radius: .5rem; border: 1px solid #e1e5ea; background: #fff;
  font: inherit; color: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(8,123,8,.25); border-color: var(--accent); }
.reserve-form .btn { grid-column: 1 / -1; }
.form-hint { color: var(--muted); margin-top: .25rem; }

/* Footer */
.footer {
  background: #0b0c0d; color: #cbd5e1; padding: 1.25rem 0; font-size: .95rem;
}
.footer a { color: #e2e8f0; text-decoration: underline; }


@media (max-width: 500px) {
  .menu-item { grid-template-columns: auto; }
  .event-badge{font-size: 1rem}
  .event-teaser{
    left: 0;
    min-width: 230px;
    top: 15%;
  }
  .event-content{
    width: 90%;
  }
}