/* PureCleanse Deutschland - Mediterranean Cleanse Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #FFFBEB;
  --bg-card: #FFFFFF;
  --primary-amber: #D97706;
  --primary-dark: #78350F;
  --accent-sage: #059669;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --border: #F3F4F6;
  --border-amber: #FDE68A;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-soft: 0 10px 30px rgba(217, 119, 6, 0.08);
  --radius-card: 28px;
  --radius-btn: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-padding {
  padding: 5.5rem 0;
}

/* Notice & Topbar */
.top-notice {
  background: #FEF3C7;
  color: #92400E;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 1px solid #FDE68A;
}

.top-bar {
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

/* Header Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 251, 235, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-amber);
}

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

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #D97706 0%, #059669 100%);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--primary-amber);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #B45309;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-amber);
  color: var(--primary-dark);
  background: transparent;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-amber {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.badge-sage {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* Grid & Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
}

.card:hover {
  transform: translateY(-4px);
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.meal-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-soft);
}

.meal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.meal-body {
  padding: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: white;
  border: 2px solid var(--border-amber);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: 0.4rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-amber);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 460px;
  background: white;
  color: var(--text-dark);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border-amber);
  z-index: 2000;
}

.cookie-banner[style*="display: none"] {
  display: none !important;
  pointer-events: none !important;
}

/* Footer */
.footer {
  background: #451A03;
  color: white;
  padding: 4.5rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #FDE68A;
}

.footer-links a:hover {
  color: white;
}
