* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

/* Hintergrundbereich mit Bild */
.iridium-himmel {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.iridium-himmel h1 {
  color: white;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 2rem;
}
/* Standard Textbereich */
.iridium-timeless {
  background-color: #ffffff;
  padding: 5rem 2rem;
  border-top: 1px solid #eee;
}
.iridium-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.iridium-text p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}
/* ------------------------------------ */
/*        MOBILE OPTIMIZATION           */
/* ------------------------------------ */

@media (max-width: 768px) {

  /* ---------- Hero / Hintergrundbild ---------- */
  .iridium-himmel {
    height: 70vh; /* kein 100vh auf Mobile → wirkt edler & verhindert Scroll-Jumps */
    padding: 2rem 1.5rem;
  }

  .iridium-himmel h1 {
    font-size: 2rem;
    letter-spacing: 1.2px;
    padding: 0 1rem;
    line-height: 1.25;
  }

  /* ---------- Textbereich ---------- */
  .iridium-timeless {
    padding: 3.5rem 1.5rem;
  }

  .iridium-text {
    max-width: 100%;
    text-align: left; /* Premium-Layout auf Mobile */
  }

  .iridium-text p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    text-align: left;
  }
}

/* ---------- Small Phones ---------- */
@media (max-width: 480px) {

  .iridium-himmel {
    height: 60vh;
    padding: 1.8rem 1.2rem;
  }

  .iridium-himmel h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 0 0.5rem;
  }

  .iridium-timeless {
    padding: 2.8rem 1.2rem;
  }

  .iridium-text p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}


.section-final {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}
.final-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.section-final h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.section-final p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.kontakt-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #8e44ad;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.kontakt-button:hover {
  background-color: #732d91;
}

/* ===== Desktop Header ===== */
.simple-header {
  background-color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #8e44ad;
}

/* ===== Mobile Defaults ===== */
.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  background: #fff;
  color: #333;
  padding: 2rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 9999;
}

.mobile-nav ul {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.3rem;
  color: #444;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #8e44ad;
}

.close-mobile {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

/* ===== Mobile Breakpoint ===== */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .simple-header {
    padding: 1rem 1.5rem;
  }
}

/* ===== Active Mobile Menu ===== */
.mobile-nav.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}


.footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #8e44ad;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Sternenhimmel mit Kick */
.starfield {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.starfield .star {
  position: absolute;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px white;
  animation-name: twinkle, drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(45deg);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.toc-section {
  background-color: #fafafa;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.toc-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.toc-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.toc-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.toc-wrapper li a {
  display: block;
  padding: 1rem;
  background-color: #ffffff;
  color: #555;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc-wrapper li a:hover {
  background-color: #8e44ad;
  color: #ffffff;
  border-color: #8e44ad;
}

.iridium-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  border-top: 1px solid #eee;
}
.iridium-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
.iridium-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}
.iridium-wrapper p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}
.highlight-space {
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}
/* Abschnitt "Warum Iridium für Ringe" */
.highlight-brand {
  margin: 2rem 0;
  background: linear-gradient(90deg, #4b0082, #8e44ad);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.highlight-brand a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}
.highlight-brand a:hover {
  color: #ffe9c4;
}
.final-line {
  font-style: italic;
  color: #ffffff;
  font-size: 1.15rem;
}
/* ------------------------------------ */
/*        MOBILE OPTIMIZATION           */
/* ------------------------------------ */

@media (max-width: 768px) {

  .iridium-section {
    padding: 3.5rem 1.5rem;
  }

  .iridium-wrapper {
    max-width: 100%;
    text-align: left; /* wirkt auf Mobile hochwertiger */
  }

  .iridium-section h2 {
    font-size: 1.7rem;
    margin-bottom: 1.3rem;
    line-height: 1.25;
    text-align: left;
  }

  .iridium-wrapper p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .highlight-space {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    margin: 1.5rem 0;
    text-align: left;
  }

  .highlight-brand {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    margin: 1.8rem 0;
    text-align: left;
  }

  .final-line {
    font-size: 1.05rem;
  }
}

/* -------- Small Phones (max 480px) -------- */
@media (max-width: 480px) {

  .iridium-section {
    padding: 2.8rem 1.2rem;
  }

  .iridium-section h2 {
    font-size: 1.5rem;
  }

  .iridium-wrapper p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .highlight-space,
  .highlight-brand {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .final-line {
    font-size: 1rem;
  }
}


/* ------------------------------------------------ */
/*   DARK IRIDIUM DESIGN SECTION — LUXURY VERSION   */
/* ------------------------------------------------ */

.iridium-section.dark {
  background-color: #111; /* tieferes, edleres Schwarz */
  color: #e8e8e8;
  padding: 6rem 2rem;
  border-top: 1px solid #2a2a2a;
}

.design-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.design-text {
  flex: 2;
  text-align: left;
}

.design-text h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f5edff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.design-text p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #d0c9d9;
  margin-bottom: 1.6rem;
}

.design-aside {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.design-accent {
  background: linear-gradient(150deg, #000000, #000000);
  color: #fff;
  border: 2px solid #fff;
  font-size: 1.15rem;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  line-height: 1.6;
  max-width: 300px;
}

/* ------------------------------------------------ */
/*                  MOBILE VERSION                  */
/* ------------------------------------------------ */

@media (max-width: 768px) {

  .iridium-section.dark {
    padding: 4rem 1.6rem;
  }

  .design-wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }

  .design-text h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 1.4rem;
  }

  .design-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .design-accent {
    max-width: 100%;
    padding: 1.6rem 1.4rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }
}

/* -------- Small Phones -------- */

@media (max-width: 480px) {

  .iridium-section.dark {
    padding: 3rem 1.2rem;
  }

  .design-text h2 {
    font-size: 1.6rem;
  }

  .design-text p {
    font-size: 0.95rem;
  }

  .design-accent {
    font-size: 0.95rem;
    padding: 1.4rem 1.2rem;
  }
}
