/* ============================================================
   WEINHAUS MARCEL – weinbar.css
   Palette: Nacht #0D0A08 · Eiche #1C1410 · Burgund #8B1A1A
            Gold #C9A84C · Pergament #F5F0E8 · Kork #8C7B6B
   ============================================================ */

/* FONTS */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

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

:root {
  --nacht:     #0D0A08;
  --eiche:     #1C1410;
  --burgund:   #8B1A1A;
  --gold:      #C9A84C;
  --gold-dark: #A8872E;
  --pergament: #F5F0E8;
  --kork:      #8C7B6B;
  --border:    rgba(201,168,76,0.2);
  --radius:    4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--pergament);
  color: var(--nacht);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { color: var(--kork); }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kork);
  margin-bottom: 0.8rem;
  display: block;
}
.eyebrow-gold { color: var(--gold); }

/* ── DEMO BANNER ── */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--burgund);
  color: rgba(245,240,232,0.9);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
}
.demo-banner a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 2rem; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,10,8,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--pergament);
  letter-spacing: 0.04em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--kork);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--nacht) !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--pergament);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url("https://images.unsplash.com/photo-1474722883778-792e7990302f?auto=format&fit=crop&w=1600&q=80")
    center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,10,8,0.88) 0%, rgba(28,20,16,0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 7rem;
}
.hero-inner .eyebrow { color: var(--gold); }
.hero-inner h1 { color: var(--pergament); margin-bottom: 1.2rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--nacht);
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost {
  background: transparent;
  color: var(--pergament);
  border: 1px solid rgba(245,240,232,0.4);
}
.btn-ghost:hover {
  border-color: var(--pergament);
  background: rgba(245,240,232,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--burgund);
  border: 1px solid var(--burgund);
  margin-top: 1.5rem;
}
.btn-outline:hover { background: var(--burgund); color: var(--pergament); }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-dark {
  background: var(--eiche);
}
.section-dark h2 { color: var(--pergament); }
.section-dark p { color: var(--kork); }
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head h2 { color: var(--pergament); }

/* ── ÜBER UNS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { color: var(--nacht); margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; }
.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.badges li {
  font-size: 12px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(139,26,26,0.3);
  border-radius: 2px;
  color: var(--burgund);
  letter-spacing: 0.06em;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ── WEINKARTE ── */
.wine-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.wine-list { display: flex; flex-direction: column; gap: 0; }
.wine-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.wine-item:last-child { border-bottom: none; }
.wine-info { display: flex; flex-direction: column; gap: 0.2rem; }
.wine-region {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kork);
}
.wine-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--pergament);
}
.wine-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}
.wine-year {
  font-size: 11px;
  color: var(--kork);
  letter-spacing: 0.06em;
}
.wine-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold);
}

/* ── ÖFFNUNGSZEITEN ── */
.hours-container { max-width: 680px; margin: 0 auto; }
.hours-container .section-head h2 { color: var(--nacht); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(140,123,107,0.2);
  font-size: 14px;
  color: var(--nacht);
}
.hours-list li:last-child { border-bottom: none; }
.closed { color: var(--kork); font-style: italic; }
.hours-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--kork);
}

/* ── KONTAKT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--pergament); margin-bottom: 1.5rem; }
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.4rem;
  font-size: 15px;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a { color: var(--pergament); }
.contact-list a:hover { color: var(--gold); }
.contact-list span:not(.contact-label) { color: rgba(245,240,232,0.8); }

.contact-form {
  background: rgba(245,240,232,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kork);
}
.form-group input,
.form-group textarea {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(140,123,107,0.4);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--pergament);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(140,123,107,0.6); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }
.error-msg { font-size: 11px; color: #e74c3c; min-height: 14px; }

.contact-form button {
  align-self: flex-start;
  padding: 0.75rem 1.8rem;
  background: var(--gold);
  color: var(--nacht);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--gold-dark); }
.contact-form button:disabled { background: var(--kork); cursor: not-allowed; }
.form-status { font-size: 13px; color: var(--gold); min-height: 1em; }

/* ── FOOTER ── */
.footer {
  background: var(--nacht);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--pergament);
  margin-bottom: 0.3rem;
}
.footer p { font-size: 13px; color: var(--kork); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 780px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nacht);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 90vh; }
  .about-grid,
  .contact-grid,
  .hours-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 260px; }
  .section { padding: 4rem 0; }
  .wine-categories { grid-template-columns: 1fr; }
}