/* Bear Paw Games — Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

:root {
  --red: #CC0000;
  --dark: #2D2D2D;
  --mid: #555555;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --max-width: 900px;
  --nav-height: 64px;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Navigation ─────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E0E0E0;
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-logo span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu open state */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Layout ──────────────────────────────────────────── */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

section + section {
  border-top: 1px solid #E8E8E8;
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 80px 0 72px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-tagline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0;
}

.hero-tagline-red {
  color: var(--red);
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none;
  border: none;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: #AA0000;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-disabled {
  background: #BDBDBD;
  color: var(--white);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.btn-hero {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 6px;
}

/* ── Product Card ────────────────────────────────────── */

.products {
  padding: 72px 0;
}

.products h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.products {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 40px;
  flex: 1;
  min-width: 260px;
}

.product-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── Section Headings ────────────────────────────────── */

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}

h2.section-title {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ── Steps ───────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Blockquote ──────────────────────────────────────── */

blockquote.field-quote {
  border-left: 4px solid var(--red);
  padding: 20px 28px;
  background: var(--light);
  border-radius: 0 6px 6px 0;
  margin-top: 32px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
}

/* ── CTA ─────────────────────────────────────────────── */

.cta-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.coming-soon {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 600;
}

/* ── About text ──────────────────────────────────────── */

.about-text {
  max-width: 640px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 16px;
}

/* ── Privacy ─────────────────────────────────────────── */

.privacy-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--dark);
}

.privacy-content p,
.privacy-content li {
  color: var(--mid);
  line-height: 1.8;
  font-size: 0.97rem;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-content a {
  color: var(--red);
}

.lang-divider {
  border: none;
  border-top: 2px solid #E0E0E0;
  margin: 64px 0;
}

/* ── Made in Berlin Badge ────────────────────────────── */

.badge-berlin {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* ── Footer ──────────────────────────────────────────── */

footer {
  border-top: 1px solid #E0E0E0;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 40px;
}

footer a {
  color: var(--mid);
  text-decoration: underline;
}

footer a:hover {
  color: var(--red);
}

/* ── Tablet / Mobile ─────────────────────────────────── */

@media (max-width: 768px) {
  .hero h1,
  .hero-tagline {
    font-size: 1.8rem;
  }

  h2.section-title {
    font-size: 1.25rem;
  }

  .about-text p,
  .privacy-content p,
  .privacy-content li {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #E0E0E0;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 56px 0 56px;
  }

  .product-card {
    padding: 28px 24px;
  }

  section {
    padding: 56px 0;
  }
}

/* Carousel */
.carousel {
  position: relative;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 32px;
  padding: 24px 0;
}
.carousel-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.80);
  opacity: 0.5;
}
.carousel-slide.active {
  transform: scale(1.0);
  opacity: 1.0;
}
.carousel-slide img {
  height: 460px;
  width: auto;
  max-width: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(57, 73, 171, 0.18);
  display: block;
  pointer-events: none;
}
.carousel-btn {
  background: #3949AB;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.carousel-btn:hover {
  background: #2c3a8c;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #D0D0D0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.carousel-dot.active {
  background: #3949AB;
}
@media (max-width: 768px) {
  .carousel-slide {
    transform: scale(1.0);
    opacity: 1.0;
  }
  .carousel-slide img {
    height: 340px;
  }
}
