/* ==========================================================================
   Rondeelteich – Coming-Soon-Seite
   Referenzauflösung für die exakte Ausrichtung: 1536 × 1024 px
   ========================================================================== */

@font-face {
  font-family: 'Rondeelteich Serif';
  src: url('assets/site-font-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rondeelteich Serif';
  src: url('assets/site-font-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --text-color: #ece6d9;
  --line-color: rgba(236, 230, 217, 0.55);
  --overlay-color: 73, 83, 72;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #495348;
}

body {
  min-height: 100vh;
  font-family: 'Rondeelteich Serif', 'EB Garamond', Georgia, 'Times New Roman', serif;
  color: var(--text-color);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* --------------------------------------------------------------------
   Hintergrund: stark weichgezeichnetes Landschaftsfoto + dunkle Ebene
   -------------------------------------------------------------------- */

.bg-blur {
  position: fixed;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  filter: blur(70px) saturate(0.9) brightness(0.55);
  transform: scale(1.05);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(var(--overlay-color), 0.8) 0%, rgba(var(--overlay-color), 0.92) 100%);
}

/* --------------------------------------------------------------------
   Layout – Desktop (positionsgenau, in vw/vh skaliert relativ zu 1536×1024)
   -------------------------------------------------------------------- */

.page {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.brand {
  position: absolute;
  top: 6.8vh;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(150px, 18.9vw, 330px);
  text-align: center;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.hero-frame {
  position: absolute;
  left: 19.27vw;
  top: 26.46vh;
  width: 61.46vw;
  height: 47.07vh;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.announcement {
  position: absolute;
  top: 78.5vh;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 92vw;
  text-align: center;
}

.coming-soon {
  margin: 0;
  font-weight: 400;
  font-size: clamp(26px, 2.93vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--text-color);
  white-space: nowrap;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 0.35vw, 8px);
  margin: clamp(8px, 1.3vh, 20px) auto;
  width: clamp(140px, 15.5vw, 280px);
}

.ornament-line {
  flex: 1 1 auto;
  height: 1px;
  max-width: clamp(24px, 3vw, 60px);
  background-color: var(--line-color);
}

.ornament-icon {
  width: clamp(18px, 2.2vw, 40px);
  height: auto;
  flex: 0 0 auto;
}

.tagline {
  margin: 0;
  font-weight: 400;
  font-size: clamp(11px, 1.15vw, 22px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.88;
  white-space: nowrap;
}

.partners {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.3vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2vw;
}

.partner-logo {
  height: auto;
}

.partner-logo--klosterstern {
  width: clamp(96px, 10.3vw, 185px);
}

.partner-logo--quinzz {
  width: clamp(132px, 14.5vw, 235px);
}

/* --------------------------------------------------------------------
   Mobil / schmale Fenster: gestapeltes Layout, vertikales Scrollen erlaubt
   -------------------------------------------------------------------- */

@media (max-width: 860px), (max-aspect-ratio: 4/5) {
  .page {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8vw 6vw 6vw;
    gap: 6vw;
  }

  .brand {
    position: static;
    transform: none;
    width: min(70vw, 280px);
    margin: 0 auto;
  }

  .hero-frame {
    position: static;
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 944 / 481;
  }

  .announcement {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .coming-soon,
  .tagline {
    white-space: normal;
  }

  .partners {
    position: static;
    width: 100%;
    padding: 0;
    margin-top: 2vw;
  }
}

@media (max-width: 420px) {
  .partners {
    flex-direction: column;
    gap: 6vw;
  }

  .partner-logo--klosterstern,
  .partner-logo--quinzz {
    width: min(52vw, 200px);
  }
}
