/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --main-blue: #3F72B8;
  --main-blue-hover: #2d558a;
  --text-black: #1a1a1a;
  --text-muted: #555555;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --border-light: #e5e5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}

body {
  color: var(--text-black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

/* Text Links */
p a {
  color: var(--main-blue);
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

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

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-switcher {
  margin-left: 20px;
  font-weight: 600;
}

.language-switcher a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 0 5px;
  transition: 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
  color: var(--main-blue);
}

.language-switcher a:hover {
  text-decoration: underline;
}

.language-switcher span {
  color: var(--border-light);
}

.navbar nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: var(--main-blue);
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0 30px 0;
  align-items: center;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--main-blue);
}

.hero-text .description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.hero-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1.02);
}



.store-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.store-links a {
  display: inline-flex;
  border-radius: 8px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
}

.store-links img {
  width: 200px;
  height: auto;
  display: block;
}

.store-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* App Showcase Section */
.app-showcase {
  padding: 60px 0;
  text-align: center;
}

.thumb-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--main-blue);
  box-shadow: 0 15px 30px rgba(63, 114, 184, 0.2);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* Info Blocks / Features */
.info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.info-block {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--main-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.info-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: var(--bg-light);
}

.info-block:hover::before {
  transform: scaleX(1);
}

.info-block h3 {
  margin-bottom: 20px;
  color: var(--main-blue);
  font-size: 1.5rem;
  font-weight: 800;
}

.info-block p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-light);
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-light);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer p {
  color: var(--text-muted);
}

.social-links img {
  transition: 0.3s;
}

.social-links a:hover img {
  transform: scale(1.1);
}

.footer a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--main-blue);
  text-decoration: underline;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: var(--main-blue);
  transform: rotate(90deg);
}

/* Mobile View */
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }



  .hero-text h2 {
    font-size: 2.5rem;
  }

  .store-links {
    justify-content: center;
  }

  .thumb-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .imprint-content {
    padding: 25px;
    margin: 30px auto;
  }
}

/* Imprint Page Support */
.imprint-content {
  max-width: 800px;
  margin: 60px auto;
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.imprint-content h1 {
  margin-bottom: 30px;
  color: var(--main-blue);
  font-weight: 800;
  font-size: 2.5rem;
}

.imprint-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text-black);
  font-size: 1.5rem;
}

.imprint-content h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--text-black);
  font-size: 1.2rem;
}

.imprint-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.imprint-content a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 600;
}

.imprint-content a:hover {
  text-decoration: underline;
}