/* ═══════════════════════════════════════════════════
   CAVOS Stuttgart — Griechische Küche
   Premium Dark Mediterranean Theme
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #4a9bac;
  --gold-light: #6bb8c9;
  --gold-bright: #2a7d8e;
  --gold-glow: rgba(74, 155, 172, 0.25);
  --bg-deep: #0b0f19;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --bg-glass: rgba(17, 24, 39, 0.75);
  --text: #e8dcc8;
  --text-muted: #8b95a5;
  --text-heading: #fff;
  --border: rgba(74, 155, 172, 0.12);
  --border-strong: rgba(74, 155, 172, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { max-width: 65ch; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }
.section { padding: clamp(5rem, 12vw, 9rem) 0; }
.text-center { text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.35s var(--ease);
  text-decoration: none; letter-spacing: 0.02em;
}
.btn-gold {
  background: linear-gradient(135deg, #2a7d8e, #1a5c6b);
  color: #fff;
  box-shadow: 0 8px 30px rgba(42, 125, 142, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(42, 125, 142, 0.35);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* ─── Greek Divider ─── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 0 auto 2.5rem; max-width: 400px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--gold), transparent);
}
.divider::before { --dir: right; }
.divider::after { --dir: left; }
.divider-icon {
  color: var(--gold); font-size: 1.6rem; flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--font-heading); color: #2a7d8e;
  font-size: 1.8rem; font-weight: 700;
  line-height: 1; text-decoration: none;
}
.nav-logo span {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: #2a7d8e;
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff;
  transition: all 0.3s var(--ease); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: #fff; font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://firebasestorage.googleapis.com/v0/b/cavos-4a963.firebasestorage.app/o/website-images%2F-OhOnUzgr9sZAecd34DB%2Fhighlights_1_1775291919439?alt=media&token=a1f16f9c-8d8d-450c-a7a6-fc7a7e77765b') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.55) 0%,
    rgba(11, 15, 25, 0.35) 40%,
    rgba(11, 15, 25, 0.7) 80%,
    rgba(11, 15, 25, 1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(1rem, 5vw, 3rem);
}
.hero-badge {
  display: inline-block;
  padding: 8px 24px; border-radius: 50px;
  background: rgba(74, 155, 172, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s var(--ease) both;
}
.hero-logo {
  display: block;
  max-width: 120px; height: auto;
  margin: 0 auto 1.5rem;
  mix-blend-mode: multiply;
  filter: brightness(3) contrast(1.3);
  animation: fadeInDown 0.8s var(--ease) 0.1s both;
}
.hero-title {
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.hero-title strong {
  font-weight: 800; color: #6bb8c9;
  position: relative;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.7); font-weight: 400;
  font-style: italic; margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-hint svg { width: 28px; height: 28px; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   WELCOME
   ═══════════════════════════════════════════ */
.welcome { text-align: center; }
.welcome h2 { margin-bottom: 1.5rem; }
.welcome-text {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 700px; margin: 0 auto 3rem;
  line-height: 1.9;
}
.welcome-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease);
}
.highlight-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold, 0 15px 40px rgba(74,155,172,0.1));
}
.highlight-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(74, 155, 172, 0.25));
}
.highlight-card h3 {
  margin-bottom: 0.5rem; font-size: 1.1rem;
}
.highlight-card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.6;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ATMOSPHERE
   ═══════════════════════════════════════════ */
.atmosphere {
  position: relative; min-height: 55vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.atmosphere-bg {
  position: absolute; inset: 0;
  background: url('https://firebasestorage.googleapis.com/v0/b/cavos-4a963.firebasestorage.app/o/website-images%2F-OhOnUzgr9sZAecd34DB%2Fhero_0_1775291859425?alt=media&token=f2b54bb0-ffc0-4f5a-ada0-4056de02f8d5') center/cover no-repeat;
  background-attachment: fixed;
}
.atmosphere-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 15, 25, 0.92) 0%,
    rgba(11, 15, 25, 0.75) 40%,
    rgba(11, 15, 25, 0.3) 100%
  );
}
.atmosphere-content {
  position: relative; z-index: 2;
  max-width: 550px; padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
}
.atmosphere-content h2 { margin-bottom: 1.25rem; }
.atmosphere-content p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  line-height: 1.85; margin-bottom: 1.5rem;
}
.atmosphere-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 900; color: #4a9bac;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #0a1520 0%, #0f1f2e 50%, #0a1520 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 70%);
  opacity: 0.3;
}
.cta-banner h2 { margin-bottom: 0.75rem; position: relative; }
.cta-banner p {
  color: var(--text-muted); font-size: 1.1rem;
  margin: 0 auto 2rem; max-width: 500px;
  position: relative;
}
.cta-banner .btn { position: relative; font-size: 1.1rem; padding: 18px 44px; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact h2 { text-align: center; margin-bottom: 0.75rem; }
.contact-subtitle {
  text-align: center; color: var(--text-muted);
  margin-bottom: 3.5rem; font-size: 1.05rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  transition: all 0.3s var(--ease);
}
.contact-item:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74, 155, 172, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.contact-item-text p {
  color: var(--text); font-size: 1rem; font-weight: 500;
  line-height: 1.6;
}
.contact-item-text a { color: var(--text); }
.contact-item-text a:hover { color: var(--gold); }
.contact-hint {
  color: var(--text-muted) !important; font-size: 0.88rem !important;
  font-weight: 400 !important; margin-top: 4px;
}
.btn-sm {
  padding: 10px 20px; font-size: 0.88rem;
}
.contact-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  min-height: 380px;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 380px;
  border: none; filter: brightness(0.8) contrast(1.1) saturate(0);
  transition: filter 0.4s var(--ease);
}
.contact-map:hover iframe { filter: brightness(0.9) contrast(1.05) saturate(0.5); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #070a12;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: #fff; letter-spacing: 0.12em;
}
.footer-brand span { color: var(--gold); }
.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  color: var(--text-muted); font-size: 0.85rem;
  font-weight: 500; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%; text-align: center;
  padding-top: 1.5rem; margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.25); font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════ */
.legal-page {
  padding-top: 120px; padding-bottom: 5rem;
  min-height: 100vh;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.legal-page .legal-updated {
  color: var(--text-muted); font-size: 0.85rem;
  margin-bottom: 3rem;
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 1.4rem; margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: 1.1rem; margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  margin-bottom: 1rem; color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.8;
}
.legal-content ul {
  margin: 0.5rem 0 1.5rem 1.25rem; list-style: disc;
}
.legal-content li {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 0.4rem; line-height: 1.6;
}
.legal-content strong { color: var(--text); }
.legal-content a { text-decoration: underline; }
.legal-meta { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-logo-img { height: 40px; }
  .nav.scrolled .nav-logo-img { height: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .atmosphere-bg { background-attachment: scroll; }
  .atmosphere-content { max-width: 100%; }
  .atmosphere-stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .welcome-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-logo { font-size: 1.4rem; }
  .nav-logo span { font-size: 0.6rem; letter-spacing: 0.35em; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .welcome-highlights { grid-template-columns: 1fr; }
  .highlight-card { padding: 1.5rem; }
  .highlight-card h3 { font-size: 1.05rem; }
  .highlight-card p { font-size: 0.92rem; }
  .contact-item { padding: 1rem 1.25rem; }
  .contact-item-icon { width: 42px; height: 42px; }
  .contact-item-text h4 { font-size: 0.8rem; }
  .contact-item-text p { font-size: 0.95rem; }
  .atmosphere-stats { flex-wrap: wrap; justify-content: center; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .footer-links { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section { padding: clamp(3rem, 8vw, 5rem) 0; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}
