* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.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: 100vh;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 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;
}
/* =========================================
   📱 MOBILE – ACHELON INTRO (OPTIMIERT)
   ========================================= */
@media (max-width: 768px) {
  .achelon-intro {
    height: auto;            /* verhindert abgeschnittene Inhalte */
    min-height: 100vh;       /* wirkt weiter monumental */
    padding: 70px 24px;
    gap: 18px;
    text-align: center;
  }

  .achelon-intro h1 {
    font-size: 2.2rem;
    font-weight: 700;
  }

  .achelon-intro h6 {
    font-size: 0.85rem;
    margin-top: 4px;
  }

  .achelon-intro h2 {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .achelon-intro p {
    font-size: 0.85rem;
    max-width: 420px;
    margin-top: 40px;
    line-height: 1.6;
  }
}

/* =========================================
   📱 EXTRA SMALL – iPhone SE, ältere Geräte
   ========================================= */
@media (max-width: 430px) {
  .achelon-intro {
    padding: 60px 18px;
  }

  .achelon-intro h1 {
    font-size: 1.8rem;
  }

  .achelon-intro h6 {
    font-size: 0.8rem;
  }

  .achelon-intro h2 {
    font-size: 1.05rem;
  }

  .achelon-intro p {
    font-size: 0.78rem;
    max-width: 300px;
    margin-top: 30px;
  }
}


.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;
  }
}

.image-grid-section {
  background-color: #fff;
  padding: 100px 20px; /* auf kleineren Geräten weniger Padding */
}
.image-grid {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  padding: 0 100px;
  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);
}
/* =========================================
   📱 MOBILE – IMAGE GRID SECTION
   ========================================= */
@media (max-width: 768px) {
  .image-grid-section {
    padding: 70px 20px;
  }

  .image-grid {
    justify-content: center;    /* Bilder zentriert */
    gap: 30px;                  /* elegante Abstände */
    padding: 0;                 /* kein unnötiges Padding */
  }

  .image-grid img {
    max-width: 260px;           /* nicht zu groß auf Mobile */
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
}

/* Extra kleiner Breakpoint */
@media (max-width: 430px) {
  .image-grid-section {
    padding: 60px 10px;
  }

  .image-grid {
    gap: 22px;
  }

  .image-grid img {
    max-width: 220px; 
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  }
}


.luxury-gallery {
  background-color: white;
  padding: 100px 80px;
  text-align: center;
}
.luxury-gallery h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: black;
  letter-spacing: 0.05em;
}
.luxury-gallery p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 90px;
  text-transform: uppercase;
}
.luxury-gallery h4 {
  font-size: 1rem;
  color: #555;
  margin-top: 90px;
  text-transform: uppercase;
}
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-row img {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}

.archon-elegance-section {
  background-color: #000;
  color: #fff;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archon-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
}
.archon-text {
  flex: 1;
  letter-spacing: 0.5px;
  line-height: 1.7;
}
.archon-text h2 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.archon-text h4 {
  font-size: 20px;
  font-weight: 300;
  color: #c0c0c0;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.archon-line {
  width: 80px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 30px;
}
.archon-text p {
  font-size: 16px;
  margin-bottom: 25px;
}
.archon-facts p {
  font-size: 14px;
  color: #d9d9d9;
  margin-bottom: 6px;
}
.archon-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archon-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.cta-button:hover {
  background-color: #fff;
  color: #000;
}
/* =========================================
   📱 MOBILE – ARCHON (BILD ÜBER DEM TEXT)
   ========================================= */
@media (max-width: 768px) {

  .archon-elegance-section {
    padding: 80px 8%;
  }

  .archon-content-wrapper {
    display: flex;
    flex-direction: column;      /* STACK: Bild oben, Text unten */
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  /* Bild bleibt oben */
  .archon-image {
    order: 1;                    /* Erste Position */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .archon-image img {
    max-width: 360px;
  }

  /* Text kommt danach */
  .archon-text {
    order: 2;                    /* Zweite Position */
    width: 100%;
    max-width: 500px;
  }

  .archon-text h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
  }

  .archon-text h4 {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .archon-line {
    width: 60px;
    height: 2px;
    margin: 0 auto 24px auto;
  }

  .archon-text p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .archon-facts p {
    font-size: 0.8rem;
  }

  .cta-button {
    margin-top: 14px;
    padding: 9px 22px;
    font-size: 0.8rem;
  }
}

/* =========================================
   📱 EXTRA SMALL – iPhone SE etc.
   ========================================= */
@media (max-width: 430px) {

  .archon-elegance-section {
    padding: 70px 12%;
  }

  .archon-image img {
    max-width: 300px;
  }

  .archon-text h2 {
    font-size: 1.8rem;
  }

  .archon-text h4 {
    font-size: 0.9rem;
  }

  .archon-text p {
    font-size: 0.82rem;
  }

  .cta-button {
    width: 100%;
    padding: 10px 0;
  }
}



.archea-display-section {
  background-color: #fff;
  color: #000;
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archea-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}
.archea-text {
  flex: 1;
  max-width: 600px;
}
.archea-text h2 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.archea-text h4 {
  font-size: 20px;
  font-weight: 300;
  color: #c0c0c0;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.archea-line {
  width: 60px;
  height: 1px;
  background-color: #000;
  margin-bottom: 30px;
}
.archea-text p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #000;
}
.archea-facts p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.archea-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.archea-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.archea-cta-button:hover {
  background-color: #000;
  color: #fff;
}
/* =========================================
   📱 MOBILE – ARCHEA DISPLAY SECTION
   ========================================= */
@media (max-width: 768px) {
  .archea-display-section {
    padding: 80px 8%;
  }

  .archea-content-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .archea-text {
    max-width: 500px;
  }

  .archea-text h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .archea-text h4 {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .archea-line {
    width: 50px;
    margin: 0 auto 24px auto;
  }

  .archea-text p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .archea-facts p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .archea-image img {
    max-width: 360px;
  }

  .archea-cta-button {
    margin-top: 14px;
    padding: 9px 22px;
    font-size: 0.8rem;
  }
}

/* Extra kleiner Breakpoint (z.B. iPhone SE) */
@media (max-width: 430px) {
  .archea-display-section {
    padding: 70px 12%;
  }

  .archea-text {
    max-width: 320px;
  }

  .archea-text h2 {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }

  .archea-text h4 {
    font-size: 0.9rem;
  }

  .archea-text p {
    font-size: 0.82rem;
  }

  .archea-image img {
    max-width: 300px;
  }

  .archea-cta-button {
    width: 100%;
    padding: 9px 0;
  }
}


.archea-image-two img {
  width: 100%;
  max-width: 550px;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
    filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.65))
          drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.bestand-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 8vw;
  gap: 5vw;
  flex-wrap: wrap;
  background-color: #000000;
  color: #ffffff;
}
.bestand-left {
  flex: 1;
  min-width: 250px;
}
.bestand-left h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .bestand-left h2 {
    font-size: 2.3rem;
  }
}
.bestand-right {
  flex: 2;
  min-width: 300px;
}
.bestand-right p {
  font-size: 1rem;
  line-height: 1.6;
  border-top: 2px solid #fff;
  padding-top: 20px;
}

.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;
}
.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: #0a0f1b;
  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("uber5.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}


