/* ============================================================
   THONG THAI – Stylesheet
   Display: Great Vibes (Logo-Schrift-Näherung)
   Headings: Sarabun
   Labels/Nav: Open Sans Condensed
   Body: Open Sans
   ============================================================ */

:root {
  --gold:        #c9a84c;
  --gold-light:  #e4c472;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.20);
  --bg-dark:     #17110d;
  --bg-medium:   #1e1610;
  --bg-warm:     #241a12;
  --text-main:   #d4c9b0;
  --text-muted:  #a89c88;
  --header-h:    88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
  background:
    linear-gradient(rgba(23,17,13,.95), rgba(23,17,13,.95)),
    url('../assets/hintergrund-flyer.png') center top / 940px auto repeat;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Sarabun', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 30px; }
.center     { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .3s, color .3s;
  cursor: pointer;
}
.btn:hover          { background: var(--gold); color: #17110d; }
.btn-filled         { background: var(--gold); color: #17110d; }
.btn-filled:hover   { background: transparent; color: var(--gold); }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background:
    linear-gradient(rgba(20,13,8,.92), rgba(20,13,8,.92)),
    url('../assets/hintergrund-flyer.png') center top / 720px auto repeat;
  border-bottom: 1px solid var(--gold-border);
  transition: background .4s;
}
#site-header.scrolled {
  background:
    linear-gradient(rgba(14,9,5,.98), rgba(14,9,5,.98)),
    url('../assets/hintergrund-flyer.png') center top / 720px auto repeat;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.site-logo img { width: min(240px, 38vw); height: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.main-nav ul li a {
  display: block;
  padding: 8px 11px;
  color: var(--text-muted);
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .2s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--gold); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-main);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO (Startseite) ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark) center / cover no-repeat;
  padding-top: var(--header-h);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,8,4,.40) 0%,
    rgba(13,8,4,.35) 45%,
    rgba(13,8,4,.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 860px;
}

/* Thai-Schrift-Grußzeile */
.hero-thai {
  font-family: 'Sarabun', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 7px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: .75;
}

/* Subtitle über dem Haupttitel */
.hero-welcome {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: .8;
}

/* Haupttitel in Display-Schrift */
.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(58px, 9.5vw, 108px);
  font-weight: 400;
  color: #ede4ce;
  line-height: 1.05;
  margin-bottom: 0;
}

/* Thai-Flaggenlinie */
.hero-flagline {
  display: flex;
  width: 150px;
  height: 3px;
  margin: 20px auto 24px;
  overflow: hidden;
  border-radius: 2px;
  opacity: .85;
}
.hero-flagline span       { flex: 1; display: block; }
.hero-flagline span:nth-child(1) { background: #c41c25; }
.hero-flagline span:nth-child(2) { background: #cfcbca; }
.hero-flagline span:nth-child(3) { background: #1d1b4a; }

.hero-subtitle {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE-HERO (Unterseiten) ===== */
#page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-dark) center / cover no-repeat;
  margin-top: var(--header-h);
}
#page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,7,3,.88) 0%, rgba(12,7,3,.28) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.page-hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 400;
  color: #ede4ce;
}
.page-hero-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.page-hero-ornament::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: .45;
}

/* ===== SECTIONS ===== */
.section       { padding: 96px 0; }
.section-dark  { background: rgba(23,17,13,.96); }
.section-medium{ background: rgba(28,20,13,.96); }
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,9,5,.72), rgba(14,9,5,.80));
}
.section-bg > .container { position: relative; z-index: 1; }

/* Section-Heading-System */
.section-label {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Sarabun', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  color: #e8dfc8;
  margin-bottom: 28px;
}

/* Ornament-Divider (ersetzt .section-divider) */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  background: var(--gold);
  opacity: .28;
  flex: 1 0 30px;
}
.ornament-icon {
  color: var(--gold);
  flex-shrink: 0;
  line-height: 0;
  opacity: .85;
}
.center .ornament               { justify-content: center; }
.center .ornament::before,
.center .ornament::after        { max-width: 56px; }

/* ===== ZWEI-SPALTEN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-text p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}
.content-text p:last-child { margin-bottom: 0; }

.content-image {
  position: relative;
}
.content-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--gold-border);
  pointer-events: none;
  z-index: 0;
}
.content-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

/* ===== GALERIE (redaktionelles Raster) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 228px;
  gap: 8px;
}
.gallery-item            { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,0,.1,1);
}
.gallery-item:hover img  { transform: scale(1.06); }

/* Redaktionelle Span-Regeln */
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

/* ===== GERICHTE ===== */
.gerichte-intro {
  max-width: 620px;
  margin: -22px auto 44px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}
.gerichte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gericht-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--gold-border);
  background: rgba(16,10,6,.35);
}
.gericht-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,0,.1,1);
}
.gericht-card:hover img { transform: scale(1.05); }

/* ===== GOOGLE-BEWERTUNGEN ===== */
.reviews-intro {
  max-width: 680px;
  margin: -22px auto 44px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}
.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(255,255,255,.06);
}
.review-card {
  min-height: 270px;
  padding: 34px 30px;
  border: 1px solid var(--gold-border);
  background: rgba(28,19,12,.45);
  scroll-snap-align: start;
}
.review-stars {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
}
.review-card h3 {
  margin-bottom: 14px;
  color: #e8dfc8;
  font-size: 22px;
}
.review-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}
.review-card span {
  display: block;
  margin-top: 24px;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.reviews-actions { margin-top: 30px; }

/* ===== KARTEN-GRID ===== */
.karten-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.karte-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 20px 38px;
  border: 1px solid var(--gold-border);
  background: rgba(28,19,12,.45);
  transition: border-color .35s, transform .35s, background .35s;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.karte-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s cubic-bezier(.25,0,.1,1);
  transform-origin: center;
}
.karte-card:hover {
  border-color: rgba(201,168,76,.48);
  background: rgba(36,26,18,.6);
  transform: translateY(-4px);
}
.karte-card:hover::after { transform: scaleX(1); }

.karte-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
  opacity: .82;
  transition: opacity .3s;
  flex-shrink: 0;
}
.karte-card:hover .karte-icon { opacity: 1; }

.karte-card h3 {
  font-family: 'Sarabun', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ddd5bc;
  margin-bottom: 6px;
}
.karte-card p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* ===== ZITAT-SECTION ===== */
.quote-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}
.quote-mark {
  font-family: 'Great Vibes', cursive;
  font-size: 110px;
  line-height: .5;
  color: var(--gold);
  opacity: .15;
  display: block;
  height: 52px;
  margin-bottom: 12px;
  user-select: none;
}
.quote-text {
  font-family: 'Sarabun', sans-serif;
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: #e0d5bc;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== RESERVIERUNG ===== */
.reservierung-wrapper {
  max-width: 860px;
  min-height: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(16,10,6,.52);
  border: 1px solid var(--gold-border);
}
.reservierung-wrapper > div {
  min-height: 1100px;
}
.reservierung-wrapper iframe {
  min-height: 1100px !important;
}

/* ===== INFO-BOXEN ===== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info-box {
  text-align: center;
  padding: 44px 28px 40px;
  border: 1px solid var(--gold-border);
}
.info-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 20px;
  color: var(--gold);
  opacity: .8;
}
.info-box h3 {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
}
.info-box p,
.info-box address { font-style: normal; color: var(--text-muted); font-size: 14px; line-height: 2; }
.info-box a       { color: var(--gold); }
.info-box a:hover { color: var(--gold-light); }

/* Öffnungszeiten-Tabelle (Widget) */
.hours-table            { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table tr         { border-bottom: 1px solid rgba(255,255,255,.05); }
.hours-table td         { padding: 8px 4px; color: var(--text-muted); }
.hours-table td:first-child { color: var(--text-main); font-weight: 600; width: 90px; }

/* ===== PDF-KARTEN ===== */
.pdf-menu-block {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--gold-border);
}
.pdf-menu-block h3 {
  margin-bottom: 24px;
  color: #e8dfc8;
  font-size: clamp(22px, 3vw, 32px);
  text-align: center;
}
.pdf-viewer {
  display: block;
  width: 100%;
  height: min(82vh, 920px);
  margin-bottom: 28px;
  border: 1px solid var(--gold-border);
  background: rgba(16,10,6,.45);
}
.pdf-viewer p {
  padding: 28px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== KONTAKTSEITE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.contact-card {
  padding: 44px 34px 40px;
  border: 1px solid var(--gold-border);
  background: rgba(28,19,12,.45);
}
.contact-card h3 {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
}
.contact-card address,
.contact-card p {
  font-style: normal;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 18px;
}
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-light); }
.contact-note { margin-top: 24px; }
.contact-two-col { align-items: start; }
.contact-form {
  padding: 38px;
  border: 1px solid var(--gold-border);
  background: rgba(16,10,6,.35);
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px 14px;
  border: 1px solid rgba(201,168,76,.25);
  background: rgba(8,5,3,.46);
  color: var(--text-main);
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.map-intro {
  max-width: 720px;
  margin: -22px auto 38px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}
.map-card {
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: rgba(16,10,6,.45);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: sepia(.18) saturate(.82) brightness(.82);
}
.map-actions { margin-top: 28px; }

/* ===== FOOTER ===== */
#site-footer {
  background:
    linear-gradient(rgba(11,7,4,.97), rgba(11,7,4,.97)),
    url('../assets/hintergrund-flyer.png') center bottom / 900px auto repeat;
  border-top: 1px solid var(--gold-border);
  padding-top: 0;
}

/* Flaggenlinie oben im Footer */
.footer-flagline {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent       0%,
    #c41c25          15%,
    #c41c25          38%,
    #cfcbca          38%,
    #cfcbca          62%,
    #1d1b4a          62%,
    #1d1b4a          85%,
    transparent     100%
  );
  opacity: .5;
  margin-bottom: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 52px;
}
.footer-col h3 {
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}
.footer-col address,
.footer-col p   { font-style: normal; color: #888; font-size: 14px; line-height: 2; }
.footer-col a   { color: var(--gold); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-logo-img { height: 70px; width: auto; opacity: .82; }

/* Mittagszeiten-Hinweis */
.mittag-hinweis {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}

/* Socket */
#socket {
  background: rgba(7,4,2,1);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.socket-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
}
.socket-inner a       { color: #555; transition: color .2s; }
.socket-inner a:hover { color: var(--gold); }
.socket-nav           { display: flex; gap: 20px; list-style: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .karten-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .two-col    { grid-template-columns: 1fr; gap: 40px; }
  .two-col .content-image { order: -1; }
  .content-image::before  { display: none; }
  .content-image img      { height: 300px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 195px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(8) { grid-column: span 1; }
  .gerichte-grid { grid-template-columns: repeat(2, 1fr); }
  .gericht-card  { min-height: 260px; }
  .info-boxes  { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .main-nav ul   { display: none; }
  .menu-toggle   { display: flex; }
  .main-nav.open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background:
      linear-gradient(rgba(16,10,6,.98), rgba(16,10,6,.98)),
      url('../assets/hintergrund-flyer.png') center / 600px auto repeat;
    padding: 44px 30px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open ul li a {
    font-size: 19px;
    letter-spacing: 3px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: var(--text-main);
  }
  .main-nav.open ul li a:hover { color: var(--gold); }
  .hero-buttons            { flex-direction: column; align-items: center; }
  .header-inner            { padding: 0 20px; }
  .section                 { padding: 64px 0; }
  .container               { padding: 0 20px; }
  .reservierung-wrapper    { min-height: 1160px; padding: 20px; }
  .reservierung-wrapper > div,
  .reservierung-wrapper iframe { min-height: 1100px !important; }
  .karten-grid             { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid            { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gerichte-grid           { grid-template-columns: 1fr; }
  .gericht-card            { min-height: 260px; }
  .contact-form            { padding: 28px 22px; }
  .map-card iframe         { height: 360px; }
  .socket-inner            { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero-content       { padding-bottom: 32px; }
}
@media (max-width: 480px) {
  .karten-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .karte-card  { padding: 32px 14px 28px; }
}
