/* ============================================
   TISCHLEREI 71 – Stylesheet
   Farben: Tannengrün #2d4a35 | Creme #f5f0e8 | Terracotta #b5624a
   Fonts: Playfair Display (Headlines) | Inter (Body)
   ============================================ */

/* ---- Logo ---- */
.nav-logo-img    { height: 36px; width: auto; display: block; background: #fff; padding: 6px 12px; border-radius: 8px; }
.footer-logo-img { height: 34px; width: auto; display: block; background: #fff; padding: 6px 12px; border-radius: 8px; }

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gruen:       #2d4a35;
  --gruen-dark:  #1e3324;
  --gruen-light: #3d6347;
  --creme:       #f5f0e8;
  --creme-dark:  #ede6d8;
  --terra:       #b5624a;
  --text:        #2a2a2a;
  --text-light:  #5a5a5a;
  --white:       #ffffff;
  --radius:      4px;
  --shadow:      0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- Layout Helpers ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gruen);
  color: var(--white);
  border-color: var(--gruen);
}
.btn-primary:hover { background: var(--gruen-dark); border-color: var(--gruen-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--gruen); }

.btn-terra {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-terra:hover { background: #9e5340; border-color: #9e5340; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--gruen);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo .logo-main span {
  color: #a8c8a0;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--creme);
  opacity: 0;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { opacity: 1; }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: #9e5340 !important; }
.nav-cta::after { display: none !important; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--gruen-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 28px;
    width: 100%;
  }
  .nav-links a::after { display: none; }
  /* CTA nicht vollflächig, sondern kompakter, zentrierter Button */
  .nav-links .nav-cta {
    width: auto;
    align-self: center;
    margin: 12px auto 6px;
    padding: 11px 26px;
    border-radius: var(--radius);
  }
}

/* ============================================
   HERO
   ============================================ */
/* ============================================
   HERO – Vollbild mit Gradient-Overlay
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  overflow: hidden;
}

/* Hintergrundfoto */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Gradient: dunkel links → transparent rechts */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(18, 32, 22, 0.90) 0%,
    rgba(18, 32, 22, 0.72) 38%,
    rgba(18, 32, 22, 0.20) 65%,
    transparent 100%
  );
}

/* Text-Bereich */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: none;
}

.hero-content > .container { width: 100%; }

.hero-text {
  max-width: 520px;
}

.hero-content .eyebrow {
  color: #a8c8a0;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
.hero-buttons .btn-primary:hover {
  background: #9e5240;
  border-color: #9e5240;
}

.hero-buttons .btn-outline-dark {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
  letter-spacing: 0.02em;
}
.hero-buttons .btn-outline-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Trust-Bar – elegant, ohne Icons */
.trust-bar {
  position: relative;
  z-index: 2;
  background: rgba(12, 24, 16, 0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }

.trust-icon { display: none; } /* Emojis ausgeblendet */

.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1.5;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 60px 0 48px; }
  .hero-content h1 { font-size: clamp(1.75rem, 7.2vw, 2.4rem); line-height: 1.18; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(18,32,22,0.80) 0%,
      rgba(18,32,22,0.55) 60%,
      rgba(18,32,22,0.70) 100%
    );
  }
  .hero-text { max-width: 100%; }
  .trust-item { min-width: 45%; padding: 16px 12px; }
  .trust-number { font-size: 1.2rem; }
  .trust-label { font-size: 0.7rem; }
}

/* ============================================
   KÜCHEN-STILE SEKTION
   ============================================ */
.kuechen-section { background: var(--white); }

.kuechen-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}

.kuechen-intro-text h2 { margin-bottom: 20px; }
.kuechen-intro-text p { color: var(--text-light); margin-bottom: 28px; }

.kuechen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kuechen-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.kuechen-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.kuechen-card-img {
  height: 240px;
  overflow: hidden;
}

.kuechen-card-img img {
  height: 100%;
}

.kuechen-card-body {
  padding: 20px;
}

.kuechen-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.kuechen-card-body p { font-size: 0.9rem; color: var(--text-light); }

.kuechen-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gruen);
}

@media (max-width: 900px) {
  .kuechen-intro { grid-template-columns: 1fr; gap: 32px; }
  .kuechen-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .kuechen-grid { grid-template-columns: 1fr; }
}

/* ============================================
   QUALITÄT SEKTION (dunkler Hintergrund)
   ============================================ */
.qualitaet-section {
  background: var(--gruen);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.qualitaet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1400&q=60') center/cover no-repeat;
  opacity: 0.12;
}

.qualitaet-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.qualitaet-text .eyebrow { color: #a8c8a0; }
.qualitaet-text h2 { color: var(--white); margin-bottom: 20px; }
.qualitaet-text p { color: rgba(255,255,255,0.8); line-height: 1.75; }

.qualitaet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 28px 16px; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .qualitaet-inner { grid-template-columns: 1fr; gap: 40px; }
  .qualitaet-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   LEISTUNGEN SEKTION
   ============================================ */
.leistungen-section { background: var(--creme); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.leistung-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gruen);
  text-align: center;
}

.leistung-icon {
  width: 60px;
  height: 60px;
  background: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.leistung-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gruen);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistung-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.leistung-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 768px) {
  .leistungen-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ÜBER UNS SEKTION
   ============================================ */
.ueber-section { background: var(--white); }

.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ueber-image-wrapper img { height: 480px; }

.ueber-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gruen);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  text-align: center;
}

.ueber-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.ueber-badge .badge-text { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; }

.ueber-content h2 { margin-bottom: 20px; }
.ueber-content .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
}

.ueber-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gruen);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.pillar-body p { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 768px) {
  .ueber-inner { grid-template-columns: 1fr; gap: 40px; }
  .ueber-image-wrapper img { height: 300px; }
}

/* ============================================
   KONTAKT SEKTION
   ============================================ */
.kontakt-section { background: var(--creme); }

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.kontakt-info h2 { margin-bottom: 24px; }

.kontakt-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.kontakt-item-icon {
  width: 38px;
  height: 38px;
  background: var(--gruen);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.kontakt-item-body { line-height: 1.5; }
.kontakt-item-body strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--terra); margin-bottom: 2px; }
.kontakt-item-body a:hover { color: var(--gruen); }

.map-placeholder {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 20px;
}

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

/* Formular */
.kontakt-form h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d0c9bc;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gruen);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}
.whatsapp-btn:hover { background: #1dae57; }

@media (max-width: 768px) {
  .kontakt-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ SEKTION (GEO)
   ============================================ */
.faq-section { background: var(--white); padding: 72px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  background: var(--creme);
  border-radius: 8px;
  padding: 28px;
}

.faq-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gruen);
}

.faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gruen-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-main span { color: #a8c8a0; }
.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.social-link:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { margin-top: 2px; flex-shrink: 0; }

/* Bewertungs-Platzhalter */
.rating-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   SCROLL-TO-TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gruen);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gruen-dark); }
