@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #111;
}

section {
  scroll-margin-top: 100px;
}

/* =========================
   TOPBAR / NAVIGATION
========================= */

.topbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

@media (max-width: 768px) {

  .topbar {
    padding: 14px 10px;
    min-height: 72px;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  .burger {
    font-size: 22px;
    padding: 4px 6px;
  }

  .lang {
    gap: 2px;
    margin-left: 4px;
  }

  .lang a {
    padding: 4px 6px;
    font-size: 10px;
    min-width: auto;
  }

  .mobile-nav {
  position: fixed;
  top: 86px; /* Höhe deiner Headerbar */
  left: 0;
  width: 100%;
}

}

.logo img {
  max-width: 240px;
  height: auto;
  display: block;
}

.nav {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.nav a:hover {
  opacity: 0.6;
}

.burger {
  font-size: 24px;
  background: #fff;     /* 👈 weiß */
  border: none;         /* 👈 kein Rahmen */
  padding: 6px 10px;    /* etwas Klickfläche */
  cursor: pointer;
  color: #111;          /* dunkles Icon */
}

.lang {
  display: flex;
  gap: 8px;
  margin-left: 20px;
  font-size: 12px;
  color: #666;
}

.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  background: #fafafa;
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.lang a:hover {
  background: #f0f0f0;
  color: #111;
}

.lang a.active {
  background: #e9e9e9;
  color: #111;
  border-color: #e0e0e0;
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px 24px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-nav a:visited,
.mobile-nav a:hover,
.mobile-nav a:active {
  display: block;
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.mobile-nav .lang {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mobile-nav .lang a {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  width: auto;
  min-height: 36px;
  min-width: 90px;
}

.mobile-nav .lang a.active {
  background: #e8e8e8;
  color: #111;
}

/* =========================
   GLOBAL TYPOGRAPHY
========================= */

h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 600;
  text-align: center;
}

section p {
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  background: #666;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 32px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background: #555;
  color: #fff;
}

.btn:active {
  background: #888;
  color: #fff;
}

.btn--primary,
.btn--ghost {
  background: #1f1f1f;
  color: #fff;
  border: none;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #ddd;
  color: #000;
}

/* =========================
   HERO INTRO
========================= */

.hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px 0;
}

.hero h1 {
  font-size: 64px;
  margin: 0;
  line-height: 1;
}

.hero p {
  color: #ffffff;
  margin: 10px 0 20px;
  font-size: 16px;
}

.hero-content {
  padding-bottom: 20px;
}

.hero-image {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image img {
  max-height: 100%;
  max-width: 100%;
  display: block;
}

.hero-btn {
  position: static;
  transform: none;
  margin-top: 8px;
  margin-bottom: 0;
}

.hero-btn:hover {
  background: #343434;
  transform: none;
}

.hero-overlay h1,
.hero-overlay p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider {
  position: relative;
  height: clamp(420px, 60vh, 700px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  padding: 70px 20px 20px;
  gap: 14px;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.hero-overlay p {
  margin: 0;
}

.hero-arrow {
  display: none;
}

/* =========================
   IMAGE BLOCK
========================= */

.image-block {
  height: 600px;
  background: #000;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 40%;
}

/* =========================
   TEXT / COLLECTION SECTIONS
========================= */

.page {
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 20px;
  text-align: left;
}

.text-section,
.collection-section {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.text-section {
  text-align: center;
  max-width: 600px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 18px;
}

.filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.filters select,
.filters button {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
}

.filters button {
  background: #111;
  color: #fff;
  cursor: pointer;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.collection-card {
  text-align: center;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.collection-card.hidden {
  display: none;
}

.collection-card-image img {
  width: 98%;
  height: 98%;
  object-fit: contain;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.04);
}

.collection-card h3 {
  font-size: 18px;
  margin: 14px 0 6px;
  padding: 0 16px;
  font-weight: 500;
}

.collection-card p {
  margin: 0 0 18px;
  padding: 0 16px;
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

.element-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin: 12px auto 8px;
  color: #fff;
}

.element-feuer {
  background: #7a1f2b;
}

.element-wasser {
  background: #1f355e;
}

.element-luft {
  background: #8a8f98;
}

.element-erde {
  background: #6b4a32;
}

/* =========================
   CONTENT SLIDER
========================= */

.slider-section {
  padding: 56px 20px;
}

.slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;

  opacity: 0;
  transition: opacity 1s ease;

  object-fit: contain;
  object-position: center center;
}

.slide.is-active {
  opacity: 1;
  z-index: 2;
}

.slider-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.slider-text h2 {
  max-width: 600px;
  margin: 32px auto 14px;
}

.slider-text p {
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10;

  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

/* MOBILE */

@media (max-width: 768px) {

  .slider {
    height: 240px;
    aspect-ratio: unset;
  }

}
/* =========================
   CONTACT TEAM
========================= */

.contact-team {
  padding: 48px 0 16px;
}

.contact-team__grid {
  display: grid;
  gap: 32px;
}

.contact-card {
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.contact-card__content {
  padding: 20px;
}

.contact-card__region {
  color: #888;
}

.contact-card__content h3 {
  font-size: 20px;
  margin: 0 0 4px;
}

.contact-card__role {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.contact-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-card .btn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 70%;
  text-align: center;

  background: #000;
  color: #fff;
  border: none;

  padding: 12px 20px;
  border-radius: 8px;

  cursor: pointer;
  margin-bottom: 0;
}

.contact-card {
  text-align: center;
}

/* =========================
   GALLERY
========================= */

.gallery-section {
  margin-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-content {
  margin-top: 60px;
  text-align: center;
}

.gallery-content p {
  color: #555;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  max-width: 800px;   /* 👈 NEU */
  margin: 0 auto;     /* 👈 NEU */
}

@media (min-width: 1024px) {
  .gallery-grid {
    max-width: 700px;
  }
}

/* =========================
   LIGHTBOX
========================= */

.lightbox-trigger {
  display: flex;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  z-index: 99999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox.is-open {
  display: flex !important;
}

.lightbox__image {
  max-width: 100% !important;
  max-height: calc(100dvh - 80px) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  border-radius: 16px;
}

.lightbox__close {
  position: fixed !important;
  top: 16px;
  right: 16px;
  z-index: 100000;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   REVEAL ANIMATION
========================= */

main > section,
.collection-card,
.contact-card,
.text-block,
.image-block {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

main > section.is-visible,
.collection-card.is-visible,
.contact-card.is-visible,
.text-block.is-visible,
.image-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card.is-visible:nth-child(2n) {
  transition-delay: 0.06s;
}

.collection-card.is-visible:nth-child(3n) {
  transition-delay: 0.12s;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #fff;
  padding: 24px 20px;
  margin-top: 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
}

.footer-links a:hover {
  color: #111;
}

/* =========================
   SCROLL TOP BUTTON
========================= */

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

#scrollTopBtn:hover {
  background: #333;
}

/* =========================
   TABLET / DESKTOP
========================= */

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .burger {
    display: none;
  }

  .hero h1 {
    font-size: 88px;
  }

  .hero p {
    font-size: 18px;
  }

  .filters {
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
  }

  .collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .slider-text {
    text-align: center;
  }

  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    font-size: 28px;
    cursor: pointer;
  }

  .hero-arrow--prev {
    left: 20px;
  }

  .hero-arrow--next {
    right: 20px;
  }

  .contact-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-team__grid {
    gap: 40px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  h2,
  .text-section h2,
  .collection-section h2,
  .slider-text h2,
  section h2,
  .container h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .slider-btn {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }

  .burger {
    display: none !important;
  }
}
/* =========================
   LEGAL PAGES (Impressum / Datenschutz)
========================= */

/* LEGAL FORCE LEFT ALIGN */
.container,
.container * {
  text-align: left !important;
}
/* H1 = Titel */
.container h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px;
}

/* H2 = Hauptabschnitte (gleich groß wie H1) */
.container h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 40px 0 16px;
}

/* H3 = Unterpunkte */
.container h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 10px;
}

/* Fließtext */
.container p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
  color: #333;
}

/* Listen */
.container ul {
  margin: 10px 0 20px 20px;
}

.container li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #111;

  transition: background 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Hover → nur Farbe ändern */
.footer-social a:hover {
  background: #777;
}

/* Active → optional minimal */
.footer-social a:active {
  background: #555;
}

.footer-social-title {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.footer-social a[aria-label="LinkedIn"] svg {
  transform: scaleX(1.2);
}

#kontakt .container {
  margin: 0 auto;
}

.text-section,
.slider-text,
.gallery-content {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.22,1,.36,1);
}

/* sichtbar */
.text-section.is-visible,
.slider-text.is-visible,
.gallery-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card p.product-size {
  font-size: 12px;
  color: #999;
  margin-top: -10px;
  margin-bottom: 16px;
  line-height: 1.4;
  padding: 0 16px;
}

.mobile-lang {
  display: none;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 46vh;
    min-height: 360px;
    max-height: 480px;
  }

  .hero-overlay {
    padding: 28px 16px 16px;
    gap: 10px;
  }

  .hero-overlay h1 {
    font-size: 54px;
    line-height: 0.95;
    margin: 0;
  }

  .hero-overlay p {
    font-size: 14px;
    margin: 0;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-btn {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);

    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-self: center;

    padding: 10px 18px !important;
    margin: 0 !important;

    width: fit-content !important;
    min-width: unset !important;
    max-width: unset !important;

    height: auto !important;
    min-height: unset !important;

    font-size: 14px;
    line-height: 1;

    white-space: nowrap;
  }

}

@media (max-width: 768px) {

  .image-block {
    height: 26vh;
    min-height: 180px;
    max-height: 240px;
  }

  .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

}

@media (max-width: 768px) {

  .desktop-lang {
    display: none !important;
  }

  .mobile-lang {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
  }

  .mobile-lang a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 36px;
    text-align: center;
  }

  .hero-slider {
    height: 34vh;
    min-height: 220px;
    max-height: 300px;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    padding: 28px 16px 16px;
    gap: 10px;
  }

  .hero-overlay h1 {
    font-size: 54px;
    line-height: 0.95;
    margin: 0;
  }

  .hero-overlay p {
    font-size: 14px;
    margin: 0;
  }

  .hero-btn {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-self: center;
    padding: 10px 18px !important;
    margin: 0 !important;
    width: fit-content !important;
    min-width: unset !important;
    max-width: unset !important;
    height: auto !important;
    min-height: unset !important;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .image-block {
    height: 26vh;
    min-height: 180px;
    max-height: 240px;
  }

  .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

}

@media (max-width: 768px) {

  .hero-slider {
    height: 42vh;
    min-height: 320px;
    max-height: 420px;
  }

  .hero-btn {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-btn:hover,
  .hero-btn:active,
  .hero-btn:focus {
    transform: translateX(-50%);
  }

}

@media (max-width: 768px) {

  .slider {
    width: 100%;
    height: 240px;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .slides {
    height: 100%;
  }

  .slide {
    height: 100%;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
  }

}

@media (max-width: 768px) {
  .hero-overlay {
    justify-content: flex-start;
    padding: 28px 16px 16px;
  }

  .hero-btn {
    position: absolute !important;
    top: auto !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    z-index: 5;
  }

  .hero-btn:hover,
  .hero-btn:active,
  .hero-btn:focus {
    transform: translateX(-50%) !important;
  }
}
