/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C8291A;
  --red-dark: #a01f13;
  --cream: #FDF8F2;
  --warm: #F5EDE0;
  --dark: #1C1C1C;
  --gray: #6b6b6b;
  --gold: #C9A84C;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.01em;
}

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

.nav-links a {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--dark); background: var(--warm); }

.nav-call a {
  background: var(--red) !important;
  color: white !important;
  font-weight: 600;
  padding: 0.45rem 1.1rem !important;
}

.nav-call a:hover { background: var(--red-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-inner {
  position: relative;
  padding: 0 1.5rem;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-call {
  background: var(--red);
  color: white;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,41,26,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--warm); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--red);
  color: white;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.92rem;
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.info-item {
  font-weight: 500;
}

.info-sep {
  opacity: 0.4;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img img { width: 100%; height: 100%; }

.about-content p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.fact {
  display: flex;
  flex-direction: column;
}

.fact-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
}

/* ===== MENU / SPEISEKARTE ===== */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 2px solid rgba(0,0,0,0.1);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray);
}

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

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-item {
  background: white;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.2s;
}

.menu-item:hover { background: var(--cream); }

.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  white-space: nowrap;
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ===== CALL SECTION ===== */
.call-section {
  background: linear-gradient(135deg, var(--red) 0%, #8B1A0F 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  color: white;
}

.call-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.call-section p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--red);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.phone-display:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===== MAP ===== */
.map-section { padding: 0; }

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.map-info {
  background: var(--dark);
  color: white;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.map-info-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.map-info-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.map-info-item a {
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
}

.map-embed { min-height: 400px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-info { padding: 2.5rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1rem 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .info-strip-inner { gap: 1rem; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}
