* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

header {
  background-color: #000;
  padding: 40px 0;
}

.nav-luxus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.nav-luxus a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 10px;
  overflow: hidden;
  transition: color 0.3s;
}

/* CRAZY HOVER: Slice through text + shimmer shine */
.nav-luxus a::before,
.nav-luxus a::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #dfdfdf);
  top: 50%;
  left: -10%;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.nav-luxus a::after {
  top: auto;
  bottom: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg) scaleX(0);
  transform-origin: right;
}

.nav-luxus a:hover {
  color: #0059ff;
}

.nav-luxus a:hover::before,
.nav-luxus a:hover::after {
  transform: scaleX(1);
}

/* LOGO bleibt clean */
.logo img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(1.2);
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
}

.mobile-header .logo img {
  height: 100px;
}

.menu-toggle {
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Slide-down Mobile Menü */
.mobile-nav {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: black;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 999;
}
.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  text-align: center;
  padding: 15px 0;
}
.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

/* ==================== MEDIA QUERY ==================== */
@media (max-width: 768px) {
  .nav-luxus {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Sanftes Bouncen des Pfeils */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}


.rhodium-section-one {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.015), transparent 70%),
    linear-gradient(to bottom, #0c0c0c 0%, #000000 60%, #0c0c0c 100%);
  background-blend-mode: overlay;
  color: white;
  padding: 200px 40px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}
.rhodium-section-one::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}
.texts {
  text-align: left;
  margin-bottom: 40px;
}
.texts h2 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.texts h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aaa;
}
.image-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-top: 100px;
}
.image-item {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.548); /* dezenter weißer Rahmen */
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
}
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 255, 255, 0.15); /* leicht heller beim Hover */
}

.image-item:nth-child(1) { animation-delay: 0.1s; }
.image-item:nth-child(2) { animation-delay: 0.3s; }
.image-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.image-item img {
  width: 100%;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
    transition: transform 1s ease, filter 1s ease;
}
.image-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.image-item button {
  background-color: white;
    font-family: "Montserrat", sans-serif;
  color: black;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 1s ease;
  box-shadow: 0 0 0 transparent;
}
.image-item button:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }

  .image-item {
    width: 100%;
    padding: 15px;
  }

  .texts {
    text-align: center;
  }

  .texts h2 {
    font-size: 2rem;
  }

  .texts h3 {
    font-size: 0.9rem;
  }

  .image-item img {
    height: auto;
    max-height: 400px;
  }
}

.rhodium-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 20px 0px;
  border-top: 2px solid #fff;
}
.rhodium-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.rhodium-image img {
  max-width: 500px;
  height: auto;
  display: block;
  margin-right: 40px;
}
.rhodium-text {
  flex: 1;
  min-width: 300px;
}
.rhodium-text h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rhodium-text h2 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #ccc;
}
.rhodium-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .rhodium-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .rhodium-image img {
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .rhodium-text h1 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }

  .rhodium-text h2 {
    font-size: 16px;
  }

  .rhodium-text p {
    font-size: 15px;
  }
}


.exklusivitaet-section {
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  padding: 100px 20px 140px;
}
.exklusivitaet-section::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.05) 35%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(255, 255, 255, 0.05) 65%,
    rgba(255, 255, 255, 0) 80%
  );
  animation: shimmer 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes shimmer {
  0% {
    transform: translateX(-80%) translateY(0) rotate(25deg);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(80%) translateY(0) rotate(25deg);
    opacity: 0.6;
  }
}
.exklusivitaet-banner {
  background-color: transparent; /* Kein Weiß mehr */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 100px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 40px 0;
}
.exklusivitaet-banner ul {
  list-style: none;
  display: flex;
  gap: 0px;
  padding: 0;
  margin: 0;
}
.exklusivitaet-banner li {
  flex: 1 1 220px;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  cursor: default;
    text-align: center;
}
.exklusivitaet-text {
  margin-top: 100px;
  overflow-y: hidden;
}
.exklusivitaet-text h2 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.25em;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
  user-select: none;
    overflow-y: hidden;
}
/* Subtiles Weißes Glühen als Tiefe um den Text */
.exklusivitaet-text h2 {
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.3),
    0 0 12px rgba(255, 255, 255, 0.1);
      overflow-y: hidden;
}
/* Responsive */
@media (max-width: 900px) {
  .exklusivitaet-banner {
    flex-direction: column;
    gap: 40px;
  }
  .exklusivitaet-banner ul {
    flex-direction: column;
    gap: 30px;
  }
  .exklusivitaet-banner li {
    padding-left: 20px;
    font-size: 1.1rem;
  }
  .exklusivitaet-text h2 {
    font-size: 2rem;
    max-width: 100%;
  }
}

.b2b-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px; /* <-- vorher 60px */
  padding: 100px 400px;
  background-color: #000;
  color: #fff;
  flex-wrap: wrap;
}
.b2b-text {
  flex: 1 1 550px;
  max-width: 600px;
}
.b2b-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.b2b-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}
.b2b-text ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style-type: circle;
  color: #fff;
}
.b2b-text li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 300;
}
.b2b-text button {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.548); /* dezenter weißer Rahmen */
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 1s ease;
  font-family: "Montserrat", sans-serif;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.3),
    0 0 12px rgba(255, 255, 255, 0.1);
}
.b2b-text button:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  transition: background-color 1s ease;
}
.b2b-image {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: right;
}
.b2b-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
/* ✅ Responsive für mobile Ansicht */
@media (max-width: 960px) {
  .b2b-section {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 60px 30px;
  }

  .b2b-text, .b2b-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .b2b-image {
    text-align: center;
    margin-top: 40px;
  }
}

.iridium-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to left, #000 70%, #0a0f1b 30%);
  color: white;
  padding: 100px 0px;
  gap: 300px;
}
.iridium-image {
  flex: 0 0 auto;
  margin-left: auto; /* Schiebt Bild ganz nach rechts */
}
.iridium-image img {
  width: 400px;
  height: auto;
}
.iridium-text {
  flex: 0 0 auto;
  max-width: 600px;
  margin-right: auto; /* Schiebt Text ganz nach links */
}
.iridium-headline {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.iridium-text h3 {
 font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #ccc;
  text-transform: uppercase;
}
.iridium-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.iridium-subline {
  margin-top: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .iridium-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    padding: 60px 20px;
  }

  .iridium-image img {
    width: 260px;
    height: auto;
  }

  .iridium-headline {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
  }

  .iridium-text h3 {
    font-size: 16px;
  }

  .iridium-text p {
    font-size: 0.95rem;
  }

  .iridium-subline {
    font-size: 1rem;
    margin-top: 30px;
  }

  .iridium-text,
  .iridium-image {
    margin: 0 auto;
  }
}


.recycling-section {
  height: 20vh;
  background-color: #0a0f1b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.recycling-section p {
  color: #ffffff; /* edles Grün – kannst du anpassen */
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
@media (max-width: 768px) {
  .recycling-section {
    height: auto;
    padding: 40px 20px;
  }

  .recycling-section p {
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }
}


.rhodium-section-two {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
  background-color: #000;
  padding: 200px 400px;
  gap: 30px;
}
.rhodium-text-two {
  flex: 0 0 auto;
  max-width: 600px;
  margin-right: auto;
  border-left: 2px solid #fff;
}
.rhodium-text-two h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 100px;
}
.rhodium-text-two h2 {
 font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  color: #ccc;
  text-transform: uppercase;
    padding-left: 100px;
}
.rhodium-headline-two {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.rhodium-text-two p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
    padding-left: 100px;
}
.rhodium-subline-two {
  margin-top: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.5;
    padding-left: 100px;
}
.rhodium-images-two {
  display: flex;
  flex-direction: row; /* <-- Bilder nebeneinander */
  gap: 30px;
  flex: 0 0 auto;
  margin-left: auto;
}
.rhodium-images-two img {
  width: 360px; /* kannst du je nach Design auch 400px machen */
  height: auto;
  object-fit: cover;
  display: block;
   display: flex;
  flex-direction: row;
  flex: 0 0 auto;
}
.rhodium-video {
  width: 500px; /* oder kleiner, z. B. 400px */
  height: auto;
  object-fit: cover;
  border: none;
}
@media (max-width: 768px) {
  .rhodium-section-two {
    flex-direction: column;
    padding: 100px 40px;
    gap: 60px;
  }

  .rhodium-text-two {
    margin: 0 auto;
    border-left: none;
    max-width: 100%;
  }

  .rhodium-text-two h3,
  .rhodium-text-two h2,
  .rhodium-text-two p,
  .rhodium-subline-two {
    padding-left: 0;
    text-align: center;
  }

  .rhodium-text-two h3 {
    font-size: 2rem;
  }

  .rhodium-text-two h2 {
    font-size: 1rem;
  }

  .rhodium-text-two p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .rhodium-subline-two {
    font-size: 1rem;
  }

  .rhodium-images-two {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .rhodium-images-two img {
    width: 100%;
    max-width: 350px;
  }

  .rhodium-video {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}


.collection-section {
  background-color: #fff;
  padding: 80px 400px;
  color: black;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.collection-section .background-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background-image:
    radial-gradient(#111 1px, transparent 1px),
    radial-gradient(#111 1px, transparent 1px),
    radial-gradient(#111 1px, transparent 1px);
  background-size: 200px 200px, 300px 300px, 150px 150px;
  background-position:
    0 0,
    100px 50px,
    50px 100px;
  animation: starMove 120s linear infinite, starTwinkle 6s ease-in-out infinite;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
}
@keyframes starMove {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-10%, -10%);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.03;
  }
  50% {
    opacity: 1;
  }
}
.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.brand-logo {
  height: 150px;
  object-fit: contain;
}
.collection-title {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.collection-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.collection-item {
  background-color: #000;
  color: #fff;
  width: 320px;
  padding-bottom: 20px;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  display: block;
}
.collection-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 1s ease-in-out;
  filter: brightness(0.8);
}
.collection-item:hover {
  transition: 1s ease-in-out;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 1);
  filter: brightness(1.8);
}
.item-name {
  font-size: 1.5rem;
  margin-top: 20px;
  letter-spacing: 0.1em;
  padding-left: 10px;
}
.item-sub {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .collection-section {
    padding: 60px 20px;
  }

  .collection-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .brand-logo {
    height: 100px;
  }

  .collection-title {
    font-size: 1.4rem;
  }

  .collection-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .collection-item {
    width: 100%;
    max-width: 320px;
  }

  .item-name {
    font-size: 1.3rem;
    text-align: left;
  }

  .item-sub {
    font-size: 0.85rem;
    text-align: left;
  }

  .collection-section .background-stars {
    width: 600%;
    height: 600%;
    background-size: 300px 300px, 400px 400px, 200px 200px;
      opacity: 1;

  }
}


.personalisierung-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 400px;
  gap: 100px;
  background-color: white;
  color: black;
}
.personalisation-media video {
  width: 400px;
  height: auto;
  object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.personalisation-text {
  max-width: 600px;
  border-left: 4px solid #000;
}
.personalisation-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-left: 40px;
}
.personalisation-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
    padding-left: 40px;
}
.personalisation-text ul {
  margin-bottom: 20px;
  padding-left: 60px;
}
.personalisation-text li {
  font-size: 1rem;
  margin-bottom: 8px;
  list-style: disc;
}
.konfigurieren-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 64px;
  margin-left: 40px;
  background-color: black;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 500;
  transition: background 1s ease-in-out;
    border: 2px solid #000;
}
.konfigurieren-button:hover {
    transition: background 1s ease-in-out;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
@media (max-width: 768px) {
  .personalisierung-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 60px;
  }

  .personalisation-media video {
    width: 100%;
    max-width: 100%;
  }

  .personalisation-text {
    border-left: none;
    padding: 0 10px;
    text-align: left;
  }

  .personalisation-title {
    font-size: 2rem;
    padding-left: 0;
    text-align: center;
  }

  .personalisation-text p,
  .personalisation-text ul {
    padding-left: 0;
  }

  .personalisation-text li {
    font-size: 0.95rem;
  }

  .konfigurieren-button {
    display: block;
    margin: 30px auto 0 auto;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}


.image-grid-section {
  background-color: #fff;
  padding: 100px 20px; /* auf kleineren Geräten weniger Padding */
}

.image-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* ermöglicht Umbruch auf kleine Displays */
}

.image-grid img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ▶︎ Media Query für Mobile Layout */
@media (max-width: 768px) {
  .image-grid {
    flex-direction: column;
    align-items: center;
  }

  .image-grid img {
    max-width: 70%;
  }
}



.text-center-section {
  background-color: #fff;
  color: #000;
  padding: 150px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.centered-text {
  max-width: 1000px;
}
.centered-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.centered-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
}
.text-center-section-two {
  background-color: #000000;
  color: #ffffff;
  padding: 150px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-image-overlay-section {
  position: relative;
  background-color: #000000;
  color: #ffffff;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
  border-top: 5px solid #fff;
}
.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  max-width: 90%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.text-overlay {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.text-overlay p {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 200px;
}
.cta-button {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  border: 2px solid #ffffff;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 500;
  transition: background 1s ease-in-out;
  margin-top: 200px;
}
.cta-button:hover {
    transition: background 1s ease-in-out;
  background-color: #ffffff;
  color: #000;
  border: 2px solid #000;
}



.blog-section {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5vw;
  padding: 5vh 8vw;
  flex-wrap: wrap;
}
.blog-left {
  flex: 1;
  min-width: 280px;
  margin-top: 50px;
}
.image-placeholder-blog {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #d3d3d3;
  background-image: url("Model\ quer.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.blog-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 50px;
}
.blog-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
.blog-right h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.blog-right p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-form label {
  font-weight: bold;
}
.blog-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: white;
  font-family: inherit;
}
.blog-form input::placeholder {
  color: #ccc;
}
.blog-button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-button:hover {
  background-color: white;
  color: #723737;
}

.footer {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5vh 8vw;
  gap: 3rem;
  font-size: 1rem;
}
.footer-service {
  width: 1200px;
  margin-top: 50px;
}
.footer-social {
  margin-top: 50px;
  margin-right: -100px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #dddddd;
}
.footer-service p {
  margin: 0.2rem 0;
  font-size: 0.7rem;
}
.footer-address ul {
  list-style: none;
  margin-left: 1rem;
  padding: 0;
}
.footer-social .icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-service,
  .footer-social {
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .footer-social .icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4vh 5vw;
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.95rem;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }

  .footer-service p {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
}

.cta-button-two {
  display: inline-block;
  padding: 12px 30px;
  background-color: black;
  color: white;
  border: 2px solid #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 1s ease-in-out;
}

.cta-button-two:hover {
  background-color: #ffffff;
  color: #000;
  border: 2px solid #000;
}
