/* ==================== */
/* Booonjour Landing CSS */
/* ==================== */
/* Ergänzung zu main.css für Landing Pages */

/* ============ */
/* Animations   */
/* ============ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}

/* ============ */
/* Header       */
/* ============ */
.header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 36px;
  width: auto;
}

.header-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

.header-brand-badge {
  font-size: 10px;
  background: var(--brand);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: super;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.header-nav-link:hover {
  color: var(--brand);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-pill {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.lang-pill:hover {
  background: var(--card-border);
}

.header-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.header-btn-soft {
  background: var(--brand-soft);
  color: var(--ink);
}

.header-btn-soft:hover {
  background: var(--card-border);
}

.header-btn-brand {
  background: var(--brand);
  color: #fff;
}

.header-btn-brand:hover {
  background: #6d28d9;
  box-shadow: 0 4px 12px rgba(125, 103, 255, 0.3);
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--brand-soft);
  border-radius: 20px;
  font-size: 14px;
}

.user-points {
  font-weight: 600;
  color: var(--brand);
}

/* ============ */
/* Hero Section */
/* ============ */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, var(--surface-gradient-start) 0%, var(--surface-gradient-end) 100%);
  margin-top: 0px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title-brand {
  color: var(--brand);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-visual {
  margin-top: 4rem;
  position: relative;
}

.hero-visual-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--card-border);
  background: linear-gradient(to bottom, var(--brand-soft), #fff);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ */
/* Sections     */
/* ============ */
.section {
  padding: 5rem 1.5rem;
}

.section-white {
  background: #fff;
}

.section-gray {
  background: var(--bg-page);
}

.section-brand {
  background: var(--brand);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header .section-desc {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============ */
/* Cards        */
/* ============ */
.landing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  transition: all 0.3s ease;
}

.landing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.landing-card-gradient {
  background: radial-gradient(circle at 0% 0%, var(--surface-gradient-start) 0%, var(--surface-gradient-end) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 36px rgba(125, 103, 255, 0.12);
  padding: 2rem;
  transition: all 0.3s ease;
}

.landing-card-gradient:hover {
  box-shadow: 0 24px 48px rgba(125, 103, 255, 0.18);
}

.landing-card-brand {
  background: linear-gradient(to bottom, var(--brand-soft), #fff);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  transition: all 0.3s ease;
}

.landing-card-brand:hover {
  box-shadow: 0 20px 40px rgba(125, 103, 255, 0.15);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============ */
/* Grid Layouts */
/* ============ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ */
/* Pricing      */
/* ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--brand);
}

.pricing-card-featured {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(125, 103, 255, 0.3);
  position: relative;
}

@media (min-width: 768px) {
  .pricing-card-featured {
    transform: scale(1.05);
  }
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #713f12;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.pricing-features .check-icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-featured .check-icon {
  color: #fff;
}

.pricing-save {
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 4px;
}

/* ============ */
/* CTA Section  */
/* ============ */
.cta-section {
  padding: 5rem 1.5rem;
  background: var(--brand);
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-btn-white {
  padding: 16px 32px;
  background: #fff;
  color: var(--brand);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn-white:hover {
  background: #f9fafb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn-outline:hover {
  background: #fff;
  color: var(--brand);
}

/* ============ */
/* Footer       */
/* ============ */
.footer-root {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-heading-brand {
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-heading-secondary {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-claim {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151;
  border-radius: 8px;
  color: #9ca3af;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--brand);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #6b7280;
}

.heart {
  color: var(--brand);
}

/* ============ */
/* Mobile Menu  */
/* ============ */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(125, 103, 255, 0.3);
  transition: transform 0.2s;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  z-index: 1000;
  transform: translateX(-100%);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  background: #fff;
  flex-direction: column;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.mobile-nav-menu.mobile-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* ============ */
/* Responsive   */
/* ============ */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
  }

  .mobile-nav-menu {
    display: flex !important;
  }

  .header-desktop-only {
    display: none !important;
  }

  .header-inner {
    padding: 12px 20px;
  }
  
  .hero-section {
    padding-top: 6rem;
    margin-top: 60px;
  }
  
  .section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 769px) {
  .mobile-menu-btn,
  .mobile-menu-overlay,
  .mobile-nav-menu {
    display: none !important;
  }
}

/* ============ */
/* Utilities    */
/* ============ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 672px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-6xl { max-width: 1152px; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded-full { border-radius: 999px; }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.w-full { width: 100%; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.italic { font-style: italic; }

.border { border: 1px solid var(--card-border); }
.border-2 { border: 2px solid var(--card-border); }
.border-l-2 { border-left: 2px solid var(--brand); }

.space-y-4 > * + * { margin-top: 1rem; }

/* Color utilities */
.text-white { color: #fff; }
.text-brand { color: var(--brand); }
.text-green-600 { color: #22c55e; }

.bg-white { background-color: #fff; }
.bg-brand { background-color: var(--brand); }
.bg-brand-light { background-color: var(--brand-soft); }
.bg-gray-50 { background-color: var(--bg-page); }
.bg-gray-100 { background-color: #f3f4f6; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }

/* Hover states */
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
