* {
  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;
}

/* Desktop-Navigation */
.nav-luxus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.nav-luxus a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav-luxus a:hover {
  color: #007bff;
}

/* Logo Style */
.logo img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(1.2);
}

/* Mobile Header */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* Burger Button */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: #000;
  z-index: 1000;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav li {
  border-bottom: 1px solid #444;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
}

/* Media Query für Mobilgeräte */
@media (max-width: 768px) {
  .nav-luxus {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .logo img {
    height: 100px;
  }
}

.essenz-section {
  background-color: #000;
  color: white;
  padding: 10vh 8vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.essenz-content {
  max-width: 800px;
}
.essenz-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.essenz-content h2 em {
  font-style: italic;
  font-weight: 400;
}
.essenz-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.grid-gallery-section {
  background-color: #fff;
  padding: 5vh 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.grid-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 5px;
  max-width: 1000px;
  width: 100%;
  height: auto;
}
.grid-item {
  background-color: #d3d3d3;
  width: 100%;
}
/* Grid-Positionen */
.img-1 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1 / 1.4;
  background-image: url("Rh2.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.img-2 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1 / 0.6;
  background-image: url("Rh1.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.img-3 {
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 2 / 2;
  background-image: url("Rh.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.img-4 {
  background-image: url("Rh3.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.img-5 {
  background-image: url("Rh4.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}

.rhodium-info-section {
  background-color: #fff;
  padding: 5vh 8vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rhodium-info-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.rhodium-info-wrapper h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.rhodium-info-wrapper p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.underline {
  height: 1px;
  width: 300px;
  background-color: #111;
}

.unique-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 100px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #000;
  color: #fff;
}
.unique-left {
  flex: 1;
  min-width: 280px;
}
.unique-right {
  flex: 1;
  min-width: 280px;
}
.unique-wrapper {
  max-width: 800px;
}
.unique-wrapper h2 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .unique-wrapper h2 {
    font-size: 2.3rem;
  }
}
.unique-wrapper h2 em {
  font-style: italic;
  font-weight: 400;
}
.underline {
  height: 1px;
  width: 300px;
  background-color: #fff;
}

.rarity-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 100px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
}
.rarity-image {
  flex: 1;
  min-width: 300px;
  height: 600px;
  background-color: #d3d3d3;
  aspect-ratio: 16 / 9;
  background-image: url("Rh.2.JPG");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.rarity-image-two {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-color: #d3d3d3;
  aspect-ratio: 16 / 9;
  background-image: url("Rh.1.JPG");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.rarity-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rarity-text h1 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}
.rarity-text .unit {
  font-size: 2rem;
  vertical-align: super;
}
.rarity-text h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}
.rarity-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
}

.hardness-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 50px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
}
.hardness-left {
  flex: 1;
  min-width: 280px;
}
.hardness-left h1 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}
.mohs {
  font-size: 1.2rem;
  vertical-align: super;
  margin-left: 0.5rem;
}
.hardness-left h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1rem;
}
.divider {
  width: 1px;
  background-color: #ccc;
  height: 180px;
}
.hardness-right {
  flex: 1.2;
  min-width: 280px;
}
.hardness-right p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.rarity-banner-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 50px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
}
.rarity-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.rarity-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  flex: 1;
}
.rarity-line {
  flex: 1;
  height: 1px;
  background-color: #111;
  max-width: 300px;
}
.rarity-image {
  height: 400px;
  background-color: #d3d3d3;
  margin-left: 10px;
}

.features-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 8vw;
  margin-top: 50px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #000;
  color: #fff;
}
.feature-block {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.feature-block h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.feature-block p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.brilliance-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 8vw;
  margin-top: 100px;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
}
.brilliance-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.brilliance-left h1 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}
.brilliance-left .percent {
  font-size: 2rem;
  vertical-align: super;
  margin-left: 0.3rem;
}
.brilliance-left h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.brilliance-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
}
.brilliance-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top-line {
  height: 3px;
  background-color: #600;
  width: 100%;
  margin-bottom: 2rem;
}
.brilliance-image {
  width: 100%;
  height: 350px;
  background-color: #d3d3d3;
  background-image: url("Rh.3.JPG");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}

.skin-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 8vw;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
}
.skin-text {
  max-width: 600px;
  text-align: left;
}
.skin-text h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1rem;
}
.skin-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.skin-placeholder {
  flex: 1;
  min-width: 300px;
}

.visual-section {
  background-color: #fff;
  padding: 6vh 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual-placeholder {
  width: 100%;
  max-width: 1100px;
  height: 300px;
  background-color: #d3d3d3;
  background-image: url("Schmelze.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}

.kontakt-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 100px;
  gap: 5vw;
  flex-wrap: wrap;
}
.kontakt-left {
  flex: 1;
  min-width: 300px;
}
.kontakt-left h2 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .kontakt-left h2 {
    font-size: 2.3rem;
  }
}
.kontakt-left p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 500px;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.kontakt-form label {
  font-size: 0.9rem;
  font-weight: bold;
}
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #111;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  resize: none;
}
.datenschutz {
  font-size: 0.8rem;
}
.datenschutz a {
  text-decoration: underline;
  color: #111;
  font-weight: bold;
}
.submit-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.btn-line {
  width: 50px;
  height: 3px;
  background-color: #600;
  transition: width 0.3s ease;
}
.submit-cta:hover .btn-line {
  width: 60px;
}
.submit-button {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.submit-button:hover {
  background-color: #111;
  color: #fff;
}
.kontakt-right {
  flex: 1;
  min-width: 300px;
}
.image-placeholder-kontakt {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #d3d3d3;
  background-image: url("AR.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}

.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("Rh.4.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;
  }
}
