@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #FF7043;
  --primary-light: #FF9A76;
  --primary-dark: #E64A19;
  --secondary: #4CAF7D;
  --secondary-light: #81C784;
  --accent: #FFD54F;
  --accent2: #CE93D8;
  --bg-dark: #1a1a2e;
  --bg-card: rgba(255,255,255,0.08);
  --bg-card-light: rgba(255,255,255,0.95);
  --text-light: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --text-dark: #1a1a2e;
  --border-glass: rgba(255,255,255,0.15);
  --shadow-glow: 0 0 40px rgba(255,112,67,0.3);
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(26, 26, 46, 0.97);
}

.navbar-brand img {
  height: 38px;
  filter: drop-shadow(0 2px 8px rgba(255,112,67,0.4));
}

.nav-link {
  color: var(--text-muted) !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 6px 14px !important;
}

.nav-link:hover { color: var(--text-light) !important; }

.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  padding: 4px;
  border: 1px solid var(--border-glass);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--primary);
  color: white;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.2);
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.7) 0%,
    rgba(255,112,67,0.12) 50%,
    rgba(26,26,46,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,112,67,0.2);
  border: 1px solid rgba(255,112,67,0.4);
  color: var(--primary-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  color: var(--text-dark);
}

.btn-store.dark {
  background: var(--text-dark);
  color: white;
}

.btn-store.dark:hover { color: white; }

.btn-store .store-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.btn-store .store-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.btn-store .store-text strong {
  display: block;
  font-size: 1rem;
}

.hero-bird {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-bird img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 20px 60px rgba(255,112,67,0.3));
  animation: floatBird 6s ease-in-out infinite;
}

@keyframes floatBird {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInUp 1s ease 0.5s both;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ─── SECTION BASE ─── */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── FEATURES ─── */
.features-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1123 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,112,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,112,67,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,112,67,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--shadow-glow);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ─── SCREENSHOTS ─── */
.screenshots-section {
  background: #0f1123;
  position: relative;
  overflow: hidden;
}

.screenshots-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(76,175,125,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.screenshot-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 4px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  scroll-snap-type: x mandatory;
}

.screenshot-scroll::-webkit-scrollbar { height: 4px; }
.screenshot-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshot-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

.screenshot-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border-glass);
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.screenshot-item:hover {
  transform: scale(1.04) translateY(-6px);
  border-color: rgba(255,112,67,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--shadow-glow);
}

.screenshot-item img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: linear-gradient(180deg, #0f1123 0%, var(--bg-dark) 100%);
  position: relative;
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255,112,67,0.4);
}

.step-img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-xl);
  margin: 16px auto;
  display: block;
  border: 2px solid var(--border-glass);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.step-card h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 48px;
  right: -30px;
  color: var(--primary);
  font-size: 1.4rem;
  opacity: 0.4;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg-rate.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,112,67,0.3), rgba(26,26,46,0.8));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0;
}

.cta-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─── */
footer {
  background: #080a14;
  border-top: 1px solid var(--border-glass);
  padding: 48px 0 28px;
}

.footer-logo img {
  height: 32px;
  opacity: 0.8;
  filter: drop-shadow(0 2px 6px rgba(255,112,67,0.3));
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-divider {
  border-color: var(--border-glass);
  margin: 28px 0 20px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ─── IMPRESSUM ─── */
.impressum-section {
  padding-top: 120px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1123 100%);
}

.impressum-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(10px);
}

.impressum-card h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-top: 32px;
  margin-bottom: 12px;
}

.impressum-card h2:first-child { margin-top: 0; }

.impressum-card p, .impressum-card address {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: normal;
}

.impressum-card a {
  color: var(--primary-light);
  text-decoration: none;
}

.impressum-card a:hover { text-decoration: underline; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero-bird { display: none; }
  .step-connector { display: none; }
  .hero-stats { gap: 20px; }
  .hero { min-height: auto; padding: 120px 0 60px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.4rem; }
  .btn-store { padding: 12px 18px; }
  .impressum-card { padding: 28px 20px; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 6px; }
