* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    overflow-x: hidden;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

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;
}

/* 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;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav li {
  border-bottom: 1px solid #444;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 1.2rem;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .nav-luxus {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .logo img {
    height: 100px;
  }
}

.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("AR.png");
  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;
  }
}

.title-section {
  background-color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}
.title-section h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding: 20px 40px;
  margin: 0 auto;
}


/* === Galerie Layout === */
.gallery-section {
  background-color: #fff;
  padding: 80px 0 200px 0px;
  text-align: center;
}
.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}
/* === Hauptbild === */
.main-image-wrapper img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-out {
  opacity: 0;
}
/* === Thumbnails === */
.thumbnail-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
  flex-wrap: wrap;
}
.thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  border-radius: 4px;
  border: 1px solid transparent;
}
.thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}
.thumb.active {
  opacity: 1;
  border: 2px solid black;
}
/* === Pfeile === */
.arrow {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #000;
  padding: 0 15px;
  user-select: none;
  transition: color 0.2s ease;
}
.arrow:hover {
  color: #999;
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0 100px 0; /* weniger Platz für kleinere Bildschirme */
  }

  .gallery-container {
    gap: 16px;              /* etwas kompakter */
    flex-wrap: wrap;        /* erlaubt Umbruch */
  }

  .main-image-wrapper img {
    width: 280px;
    height: 280px;
  }

  .thumbnail-row {
    margin-top: 15px;
    gap: 8px;
  }

  .thumb {
    width: 70px;
    height: 70px;
  }

  .arrow {
    font-size: 1.8rem;
    padding: 0 10px;
  }
}


.ring-collection-section {
  padding: 80px 50px;
  background-color: #fff;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  color: #000;
}

.ring-cards {
  display: flex;
  justify-content: center;
  gap: 200px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ring-card {
  flex: 1 1 350px;
  max-width: 400px;
}

.ring-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.ring-description {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.ring-subtitle {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.ring-features {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.contact-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.contact-button {
  background-color: black;
  color: white;
  border: 2px solid #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 1s ease;
  display: inline-block;
}

.contact-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.info-text {
  margin-top: 60px;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 300px; /* Abstand zwischen den Buttons */
  margin-top: 40px;
}

.contact-button {
  background-color: black;
  color: white;
  border: 2px solid #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 1s ease;
  display: inline-block;
  white-space: nowrap;
}

.contact-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
