/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/inter.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-700.woff') format('woff');
}

/* ===== VARIABLES ===== */
:root {
  --bg: #120e0a;
  --surface: #1a1510;
  --surface-2: #221c16;
  --text-primary: #e8d8c0;
  --text-secondary: #a08878;
  --text-muted: #9a8878;
  --accent-green: #7ab060;
  --accent-pink: #c04060;
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --section-padding: 64px 20px;
  --max-width: 480px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}
em { font-style: italic; color: var(--accent-green); }

/* ===== PAGE WRAPPER ===== */
body > section,
body > footer {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 14, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(18, 14, 10, 0.97); }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-secondary); }

.lang-toggle {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-green);
  border: 1px solid rgba(122, 176, 96, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  transition: background 0.2s;
}
.lang-toggle:hover { background: rgba(122, 176, 96, 0.1); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 20px 48px;
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob--green {
  width: 320px;
  height: 320px;
  background: rgba(80, 130, 50, 0.18);
  filter: blur(70px);
  top: -80px;
  right: -80px;
}
.hero-blob--pink {
  width: 220px;
  height: 220px;
  background: rgba(200, 80, 100, 0.14);
  filter: blur(60px);
  bottom: 40px;
  left: -60px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  min-height: 0;
}

.hero-text { flex: 1; position: relative; z-index: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(32px, 8vw, 46px);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 220px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid rgba(212, 184, 150, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-primary);
  letter-spacing: 1px;
  background: rgba(212, 184, 150, 0.06);
  transition: background 0.2s, border-color 0.2s;
}
.hero-cta:hover {
  background: rgba(212, 184, 150, 0.12);
  border-color: rgba(212, 184, 150, 0.5);
}

/* Cup */
.cup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* Mobile: absolut im Hintergrund */
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.cup {
  width: 320px;
  height: 475px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.cup-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
  color: transparent; /* hide broken-image alt text */
}

.cup-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #2a3e1a 0%, #162010 100%);
  border-radius: 10px 10px 20px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 176, 96, 0.12);
}
.cup-fallback-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 184, 150, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(212, 184, 150, 0.7);
}

.cup-hint {
  display: none; /* versteckt auf Mobile (Cup ist im Hintergrund) */
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-align: center;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.scroll-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===== SHARED SECTION ===== */
.section {
  padding: var(--section-padding);
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before { content: '✦'; font-size: 7px; }

.section-title {
  font-size: clamp(24px, 6vw, 32px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== ABOUT ===== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.about-stat:hover { border-color: var(--border-hover); }

.stat-icon { font-size: 22px; flex-shrink: 0; }
.stat-num { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== MENU ===== */
.menu-card {
  margin-top: 24px;
  border: 1px solid rgba(122, 176, 96, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(122, 176, 96, 0.04);
}

.menu-card-preview {
  height: 120px;
  background: linear-gradient(135deg, #1a2e10 0%, #2a1e14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.menu-page-thumb {
  width: 64px;
  height: 84px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

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

.menu-card-body {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.menu-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.menu-btn {
  padding: 10px 18px;
  background: var(--accent-green);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: #0a1a06;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.menu-btn:hover { opacity: 0.88; }

/* ===== SIGNATURE DRINKS ===== */
.drinks-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.drink-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.drink-item:hover { border-color: var(--border-hover); }

.drink-color {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.drink-color--matcha { background: linear-gradient(135deg, #4a8a3a, #7ab060); }
.drink-color--strawberry { background: linear-gradient(135deg, #c04060, #e07090); }
.drink-color--brown { background: linear-gradient(135deg, #8a5a2a, #c4944a); }
.drink-color--caramel { background: linear-gradient(135deg, #b06010, #e0a040); }

.drink-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.drink-size { display: inline-block; font-size: 10px; font-weight: 700; color: var(--bg); background: var(--text-muted); border-radius: 3px; padding: 1px 5px; margin-left: 4px; vertical-align: middle; letter-spacing: 0.05em; }
.drink-desc { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.drink-price { margin-left: auto; font-size: 14px; color: var(--text-primary); font-weight: 500; flex-shrink: 0; }

/* ===== HOURS & LOCATION ===== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hours-card {
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.hours-day {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hours-time {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.hours-card--closed {
  opacity: 1;
  grid-column: 1 / -1;
  text-align: center;
}
.hours-time--closed {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.map-container { margin-top: 20px; }
.map-iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius-md);
  filter: grayscale(0.7) invert(0.9) hue-rotate(180deg);
}
.map-address {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.google-badge {
  margin-top: 24px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.google-rating {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.google-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.google-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.testimonial-card {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-hover); }

.t-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--avatar-bg, #4a5a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.t-stars { font-size: 11px; color: #f0a030; margin-top: 2px; }
.t-source { margin-left: auto; font-size: 10px; color: var(--text-muted); }
.t-time { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }

.t-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}
.t-text::before { content: '"'; }
.t-text::after { content: '"'; }

/* ===== INSTAGRAM ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.insta-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.insta-handle {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.insta-handle:hover { color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer {
  padding: 36px 20px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.footer-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 540px+ */
@media (min-width: 540px) {
  :root { --max-width: 540px; }

  .hero-title { font-size: 52px; }
  .cup { width: 360px; height: 534px; }

  .about-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .about-stat:last-child { grid-column: 1 / -1; }

  .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: 1 / -1; }
}

/* Tablet groß: 700px+ */
@media (min-width: 700px) {
  :root {
    --max-width: 680px;
    --section-padding: 72px 32px;
  }

  .nav { padding: 18px 32px; }

  .hero { padding: 64px 32px 60px; }
  .hero-title { font-size: 48px; }
  .hero-inner { gap: 36px; }

  /* Ab 700px: Cup wieder im normalen Layout-Fluss */
  .cup-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-shrink: 0;
  }
  .cup { width: 260px; height: 385px; }
  .cup-hint { display: block; }

  /* Drinks: 2 columns at tablet */
  .drinks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop: 900px+ */
@media (min-width: 900px) {
  :root {
    --max-width: 820px;
    --section-padding: 88px 48px;
  }

  .nav { padding: 20px 48px; }

  .hero {
    padding: 80px 48px 72px;
    min-height: 100svh;
  }
  .hero-title { font-size: 72px; }
  .hero-sub { font-size: 15px; max-width: 340px; }
  .cup { width: 310px; height: 459px; }
  .hero-inner { gap: 56px; }

  /* About: 3 columns */
  .about-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-stat:last-child { grid-column: auto; }

  /* Drinks: 3 per row */
  .drinks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Testimonials: 3 columns */
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
  .testimonial-card:last-child { grid-column: auto; }

  /* Map taller */
  .map-iframe { height: 280px; }
}

/* Desktop groß: 1200px+ */
@media (min-width: 1200px) {
  :root {
    --max-width: 1000px;
    --section-padding: 100px 60px;
  }

  .nav { padding: 22px 60px; }

  .hero { padding: 88px 60px 80px; }
  .hero-title { font-size: 84px; }
  .cup { width: 420px; height: 622px; }
  .hero-inner { gap: 64px; }
}

/* Sehr kleines Gerät: max 360px */
@media (max-width: 360px) {
  .nav { padding: 14px; }
  .nav-right { gap: 12px; }
  .nav-link { display: none; }
  .hero { padding: 40px 14px 36px; }
  .hero-title { font-size: 28px; }
  .cup { width: 150px; height: 222px; }
}

/* Bewegungsreduktion */
@media (prefers-reduced-motion: reduce) {
  .cup-img { will-change: auto; }
  html { scroll-behavior: auto; }
}
