@import url('https://fonts.cdnfonts.com/css/fette-fraktur');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap');
:root {
  /* Zuid-Duitse / Beierse Kleurenpalet */
  --primary: #2c4c3b; /* Jagersgroen (Trachten groen) */
  --primary-light: #3e6852;
  --wood-dark: #3a2618; /* Donker eikenhout */
  --wood-light: #a47551; /* Licht hout */
  --accent-red: #9e1a1a; /* Traditioneel Beiers Rood */
  --bg-color: #e3f2fd; /* Lichtblauwe frisse kleur */
  --surface: #e3f2fd; /* Lichtblauwe frisse kleur voor leesbaarheid kaders */
  --text-main: #2b2b2b;
  --text-muted: #5c5c5c;
  --border: #d4c4b7;
  --radius: 4px; /* Minder ronde hoeken voor een robuuster, rustieker gevoel */
  --shadow: 0 4px 15px rgba(58, 38, 24, 0.15);
  --shadow-hover: 0 8px 25px rgba(58, 38, 24, 0.25);
  --transition: all 0.3s ease;
  --bavarian-blue: #0066b2;
}

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

html {
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  color: var(--text-main);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  line-height: 1.6;
  background-color: var(--bg-color);
  /* Het originele Steirer Stub'n background .gif bestand */
  background-image: url("background.gif");
  background-repeat: repeat;
  background-blend-mode: multiply;
}


/* Typografie */
h1, h2, h3, h4, .serif, .logo, .nav-links a {
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  color: var(--wood-dark);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  color: var(--wood-dark);
}

/* Traditionele separator onder koppen */
h2::after {
  content: '❧';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-red);
  font-size: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* Header & Navigation (Donker Hout / Jagersgroen stijl) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--wood-dark);
  color: #fff;
  z-index: 1000;
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Beierse Ruiten (Rauten) randje bovenaan */
header::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  background: 
    repeating-linear-gradient(
      135deg,
      var(--bavarian-blue),
      var(--bavarian-blue) 10px,
      #ffffff 10px,
      #ffffff 20px
    );
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Fette Fraktur / Oud-Duits voor Stub'n */
.logo span {
  font-family: 'Fette Fraktur', 'UnifrakturMaguntia', cursive !important;
  font-style: normal !important;
  font-weight: normal !important; /* Fraktur is al heel vet van zichzelf */
  font-size: 2.8rem !important; /* Wat groter voor betere leesbaarheid */
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #e8c37d; /* Goud-accent uit het logo */
  cursor: pointer;
  z-index: 1001;
}

.nav-links a {
  text-decoration: none;
  color: #e5e5e5;
  font-size: 1.3rem; /* Iets groter omdat cursief kleiner toont */
  position: relative;
  transition: var(--transition);
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #e8c37d;
}

.btn-reserve {
  background-color: var(--accent-red);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.3rem;
  border: 2px solid #7a1212;
  transition: var(--transition);
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  white-space: nowrap;
}

.btn-reserve:hover {
  background-color: #7a1212;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: 80px;
  /* Frisse blauwe overlay voor de foto zodat witte tekst met schaduw perfect leesbaar is */
  background: linear-gradient(rgba(0, 102, 178, 0.6), rgba(90, 160, 210, 0.5)), url('fotos/fotos%20website/willkommen/historie1.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  border-bottom: 8px solid var(--wood-dark);
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
  padding: 2rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  font-style: italic;
  color: #e8c37d;
}

.hero h1 span {
  color: #e8c37d;
}

/* Top Banner Section */
.top-banner-section {
  padding-top: 120px;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.top-banner-img-edge {
  height: 140px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid var(--surface);
  outline: 1px solid var(--border);
}

.top-banner-img-center {
  height: 120px;
  width: auto;
  mix-blend-mode: multiply;
}

/* Container & Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

section {
  padding: 5rem 0;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding: 2rem 0;
}

.about-text p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--wood-dark);
  font-weight: bold;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
  position: relative;
}

.about-images .img-card {
  width: 100%;
  max-width: 175px;
}

.img-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--surface);
  outline: 1px solid var(--wood-light);
  transition: var(--transition);
}

.img-card:hover {
  transform: scale(1.02);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Menu Section (Speisekarte) */
#speisekarte {
  background: #eceae6; /* Lichtgrijs gebroken wit */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

/* Speisekarte versiering */
#speisekarte::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--wood-light);
  pointer-events: none;
  z-index: 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.menu-tab-btn {
  flex: 1;
  background: var(--bg-color);
  border: 2px solid var(--wood-dark);
  padding: 0.5rem 0.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--wood-dark);
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  line-height: 1.1;
}

.menu-tab-btn:hover, .menu-tab-btn.active {
  background-color: var(--wood-dark);
  border-color: var(--wood-dark);
  color: white;
}

.menu-content {
  display: none;
  animation: fadeIn 0.4s ease-out;
  position: relative;
  z-index: 1;
}

.menu-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}

.menu-content h3 {
  margin-bottom: 2rem;
  color: var(--wood-dark);
  font-size: 2rem;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 10px;
  text-align: center;
}

.menu-item {
  padding: 0;
  border-bottom: 1px dotted var(--wood-dark) !important;
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  position: relative;
  text-align: center;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h4 {
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 0.3rem;
}

.menu-item p {
  color: var(--text-main);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: bold;
}

/* Info Section (Hours & Contact) */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.info-card {
  background: #eceae6; /* Lichtgrijs gebroken wit */
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

/* Decoratief randje per kaart */
.info-card::after {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px dashed var(--wood-light);
  pointer-events: none;
  z-index: 0;
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hours-list {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px dotted var(--border);
  font-weight: 600;
  color: var(--wood-dark);
}

.hours-list li.closed {
  color: var(--accent-red);
}

/* Map */
.map-container {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  border: 4px solid var(--surface);
  outline: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer (Donker Hout) */
footer {
  background-color: var(--wood-dark);
  color: #e5e5e5;
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 6px solid var(--primary);
  position: relative;
}

/* Footer Beierse Ruiten */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: 
    repeating-linear-gradient(
      135deg,
      var(--bavarian-blue),
      var(--bavarian-blue) 10px,
      #ffffff 10px,
      #ffffff 20px
    );
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo {
  margin-bottom: 0.2rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo > img:first-child {
  transform: translateY(-0.15em);
}

.footer-logo span {
  font-family: 'Fette Fraktur', 'UnifrakturMaguntia', cursive !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 2.8rem !important;
  display: inline-flex;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #c9af98;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Monotype Corsiva', 'Apple Chancery', cursive;
  font-size: 1.4rem;
}

.footer-links a:hover {
  color: #e8c37d;
}

.webdesign {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.webdesign img {
  height: 28px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.webdesign img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.5));
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  /* Forceer een uiterst strak, goed leesbaar schreefloos lettertype op mobiel en verwijder alle cursieve (schuingedrukte) stijlen */
  html, body, p, h1, h2, h3, h4, span, a, div, li, button,
  [style*="Monotype Corsiva"], [style*="cursive"], [style*="italic"] {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-style: normal !important;
  }
  
  /* Specifieke uitzondering om het logo nog wel een béétje klassiek te houden zonder cursief te zijn */
  .logo, .logo span {
    font-family: 'Playfair Display', serif !important;
    font-style: normal !important;
  }

  .about-grid, .info-section {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  h1 { font-size: 2.5rem; }
}

@media (max-width: 1150px) {
  .nav-links a, .btn-reserve {
    font-family: 'Playfair Display', serif !important;
    font-style: normal !important;
    font-size: 1.6rem !important;
    letter-spacing: 1px;
  }

  .logo span {
    font-size: 1.6rem !important;
  }
  .logo img {
    height: 25px !important;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--wood-dark);
    flex-direction: column;
    padding: 0;
    gap: 1.5rem;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
  }
  
  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 2rem 0;
  }
  
  .top-banner-section {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 130px;
  }
  
  .top-banner-img-edge {
    height: 100px;
  }
  
  .top-banner-img-center {
    height: 90px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo span {
    font-size: 1.3rem !important;
  }
  .top-banner-section {
    padding-top: 110px;
  }
  .top-banner-img-edge, .top-banner-img-center {
    max-width: 45%;
    height: auto;
  }
}
