* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

/* Basis */
header {
  background-color: #000;
  padding: 40px 0;
}

/* Desktop */
.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 img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(1.2);
}

/* Mobile Header Toggle */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile Nav */
.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;
}

/* Media Query für Mobile */
@media (max-width: 768px) {
  .nav-luxus {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

 

.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;
  }
}

.achelon-intro {
  height: 80vh;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  gap: 30px;
}
.achelon-intro h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
}
.achelon-intro h6 {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 8px;
  color: #333;
}
.achelon-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}
.achelon-intro p {
  font-size: 1rem;
  font-weight: 300;
  color: #444;
  max-width: 700px;
  line-height: 1.7;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .achelon-intro {
    height: auto;
    padding: 60px 20px;
    gap: 20px;
  }

  .achelon-intro h1 {
    font-size: 2.4rem;
  }

  .achelon-intro h6 {
    font-size: 0.9rem;
  }

  .achelon-intro h2 {
    font-size: 1.2rem;
  }

  .achelon-intro p {
    font-size: 0.95rem;
    margin-top: 40px;
    line-height: 1.6;
    max-width: 100%;
  }
}


.achelon-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 100px 400px;
  gap: 60px;
}
.image-container img {
  width: 480px;
  height: auto;
  object-fit: cover;
}
.text-container {
  max-width: 600px;
  text-align: left;
}
.text-border {
  height: 2px;
  background-color: black;
  width: 500px;
  margin-bottom: 30px;
}
.text-container p {
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .achelon-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }

  .image-container img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .text-container {
    max-width: 100%;
  }

  .text-border {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px auto;
  }

  .text-container p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .luxury-gallery {
    padding: 60px 20px;
  }

  .luxury-gallery h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .gallery-row {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-row img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.luxury-gallery {
  background-color: white;
  padding: 100px 80px;
  text-align: center;
}
.luxury-gallery h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: black;
  letter-spacing: 0.05em;
}
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-row img {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}



.duo-product-section {
  background-color: #fff;
  padding: 100px 60px;
  text-align: center;
  border-top: 5px solid #000;
}
.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.model-only {
  position: relative;
  max-width: 360px;
}
.model-image {
  width: 100%;
  height: auto;
  display: block;
}
.product-label {
  text-align: left;
  margin-top: 15px;
}
.product-label.right {
  text-align: right;
}
.product-label h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.product-label .greek {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #444;
}
.ring-only {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-image {
  width: 260px;
  height: auto;
  background-color: black;
  padding: 20px;
  object-fit: contain;
}
.experience-button {
  margin-top: 40px;
}
.experience-button a {
  display: inline-block;
  background-color: black;
  color: white;
  border: 2px solid #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all 1s ease-in-out;
}
.experience-button a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000;
}
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;   /* Elemente untereinander */
    align-items: center;      /* zentriert horizontal */
    gap: 100px;                /* großzügiger Abstand zwischen den Items */
    margin-bottom: 60px;
  }

  .model-only, .ring-only {
    width: 100%;              /* volle Breite nutzen */
    max-width: 320px;         /* max. Bildbreite einheitlich */
    display: flex;
    justify-content: center;  /* Bilder zentrieren */
  }

  .model-image, .ring-image {
    width: 320px;             /* alle Bilder gleich groß */
    height: 320px;            /* gleiche Höhe für Einheitlichkeit */
    object-fit: cover;        /* Bilder proportional füllen */
    background-color: black;  /* für Ring-Image wie gehabt */
    padding: 20px;            /* Innenabstand wie gehabt */
    box-sizing: border-box;   /* Padding mit einbeziehen */
  }

  .product-label {
    text-align: center !important; /* Labels zentrieren */
    margin-top: 15px;
    max-width: 320px;
  }

  .experience-button {
    margin-top: 40px;
  }
}



.meaning-section {
  background-color: #fff;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
}
.meaning-container {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.meaning-box {
  flex: 1 1 45%;
  max-width: 500px;
}
.meaning-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.meaning-box h4 {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}
.underline {
  width: 100%;
  height: 3px;
  background-color: black;
  margin: 15px 0 25px;
}
.meaning-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 20px;
}

.kyra-krya .product-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px; /* größerer Abstand zwischen Modellen */
  padding: 80px 100px;
  flex-wrap: wrap;
}
.model-only {
  position: relative;
  flex: 0 0 auto;
}
.model-image {
  width: 340px; /* größer als vorher */
  height: auto;
  display: block;
}
.ring-only .ring-image {
  width: 250px;
  height: auto;
  margin: 0 20px;
}
.product-label {
  position: absolute;
  bottom: -60px;
  left: 0;
  color: black;
  text-align: left;
}
.product-label.right {
  left: auto;
  right: 0;
  text-align: right;
}
.product-label h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
.product-label .greek {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}
.experience-button {
  text-align: center;
  margin-top: 60px;
}
.experience-button a {
  background-color: black;
  color: white;
  border: 2px solid #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 1s ease;
}
.experience-button a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000;
}

.selion-display-section {
  padding: 80px 300px;
  background-color: #fff;
  border-top: 5px solid #000;
}
.selion-display-wrapper-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
/* Modellbild mittig */
.selion-model-block {
  position: relative;
  flex: 0 0 auto;
}
.selion-model-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
}
.selion-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}
.selion-label h3 {
  font-size: 2rem;
  margin: 0;
}
.selion-greek {
  font-size: 1rem;
  font-style: italic;
}
/* Linkes & rechtes Ringbild */
.selion-ring-side {
  flex: 0 0 auto;
}
.selion-ring-image {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}
/* Button */
.selion-experience-button {
  margin-top: 60px;
  text-align: center;
}
.selion-experience-button a {
  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;
}
.selion-experience-button a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000;
}
@media (max-width: 768px) {
  .selion-display-section {
    padding: 60px 20px; /* weniger horizontaler Abstand für Mobile */
  }

  .selion-display-wrapper-centered {
    flex-direction: column;      /* stapeln untereinander */
    align-items: center;         /* horizontal zentrieren */
    gap: 50px;                   /* großzügiger Abstand */
  }

  .selion-model-block,
  .selion-ring-side {
    width: 100%;
    max-width: 320px;            /* gleiche max. Breite für alle Bilder */
    display: flex;
    justify-content: center;     /* Bild zentrieren */
    position: relative;          /* damit .selion-label absolut bleiben kann */
  }

  .selion-model-image,
  .selion-ring-image {
    width: 320px;
    height: 320px;               /* gleiche Höhe für alle Bilder */
    object-fit: cover;           /* Bild proportional füllen */
    display: block;
  }

  .selion-label {
    left: 10px;
    bottom: 10px;
    padding: 8px 16px;
    font-size: 1rem;
    max-width: 300px;
    text-align: center;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
  }

  .selion-label h3 {
    font-size: 1.4rem;
    margin: 0;
  }

  .selion-greek {
    font-size: 0.9rem;
  }

  .selion-experience-button {
    margin-top: 40px;
  }
}



.meaning-section-new {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    border-bottom: 5px solid #000;
}
.meaning-container-new.center {
  max-width: 700px;
}
.meaning-box-new h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.meaning-box-new h4 {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}
.underline {
  width: 100%;
  height: 3px;
  background-color: #000;
  margin: 20px 0;
}
.meaning-box-new p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}


.statement-section {
  background-color: #fff;
  padding: 200px 40px;
  text-align: center;
}
.statement-section h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  color: #000;
}
.bordered-top {
  border-top: 2px solid black;
  padding-top: 6px;
  display: inline-block;
}
.bordered-bottom {
  border-bottom: 2px solid black;
  padding-bottom: 6px;
  display: inline-block;
}
