/* =========================
   BLUEOUTDESIGN-SHOP
   ZENTRALE FARBEN
   ========================= */

:root {
  --background: #08111f;
  --header: #101a2c;
  --card: #111d31;
  --blue: #2f78ff;
  --blue-hover: #4b8cff;
  --text: #ffffff;
  --muted: #aeb9ca;
  --border: #20314d;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  min-height: 100vh;
}

header {
  background: var(--header);
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: min(1110px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--blue);
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  transform: translateY(-10px);
}

.hero h1 {
  font-size: clamp(50px, 6vw, 68px);
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero p {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 16px;
}

.button:hover {
  background: var(--blue-hover);
}

.page {
  width: min(1110px, 92%);
  margin: 0 auto;
  padding: 70px 0;
}

.page h1 {
  color: var(--blue);
  font-size: 44px;
  margin-bottom: 35px;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter {
  background: var(--card);
  color: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: var(--blue);
}

.product-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-card,
.team-card,
.legal-box,
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.product-card h2,
.team-card h2 {
  margin-bottom: 12px;
}

.product-card p,
.team-card p,
.legal-box p {
  color: var(--muted);
  line-height: 1.6;
}

.price {
  color: var(--blue) !important;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0b1525;
  color: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px;
}

.legal-box h2 {
  margin: 22px 0 10px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

@media (max-width: 850px) {
  header {
    height: auto;
    padding: 15px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 16px;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .logo {
    font-size: 26px;
  }

  .hero {
    min-height: calc(100vh - 130px);
  }

  .hero p {
    font-size: 18px;
  }
}


/* =========================
   BLUEOUT LOGO
   ========================= */

.logo-with-image {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-with-image img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.logo-with-image span {
  color: var(--blue);
}

.hero-logo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 auto 22px;
  display: block;
  box-shadow: 0 12px 35px rgba(47, 120, 255, 0.28);
}

@media (max-width: 850px) {
  .logo-with-image img {
    width: 36px;
    height: 36px;
  }

  .hero-logo {
    width: 130px;
    height: 130px;
  }
}
