/* =========================================================
   LIANY — COMING SOON
   Ürün Renk Paleti:
   - Ekru Beyaz (#FAF7F2 / #F5F1E8)
   - Pastel Sarı / Butter Yellow (#FBEBBF / #F8E3A8)
   - Mint Yeşili (#D2E4D1 / #C2DAC0)
   - Bulut Grisi (#DEE3E9 / #D0D6DE)
   - Metin Rengi: Sıcak Yumuşak Kömür (#2C2927)
   ========================================================= */

:root {
  --color-ecru: #FAF7F2;
  --color-ecru-subtle: #F3EEE4;
  --color-butter: #FCE8B5;
  --color-mint: #D2E4D1;
  --color-cloud: #DEE3E9;
  --color-text: #2C2927;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--color-ecru);
  color: var(--color-text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   AMBIENT PALETTE CANVAS
   Trendyol Liany koleksiyonu ürün tonlarının yumuşak geçişi
   ========================================================= */

.ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.72;
  will-change: transform;
}

/* 1. Kadın Pastel Sarı Pamuklu Pijama Takımı Rengi */
.orb-butter {
  width: 48vw;
  height: 48vw;
  min-width: 320px;
  min-height: 320px;
  background: radial-gradient(circle, var(--color-butter) 0%, rgba(252, 232, 181, 0) 70%);
  top: -12%;
  left: 10%;
  animation: floatOrbButter 20s ease-in-out infinite alternate;
}

/* 2. Kadın Mint Yeşili Pamuklu Pijama Takımı Rengi */
.orb-mint {
  width: 46vw;
  height: 46vw;
  min-width: 300px;
  min-height: 300px;
  background: radial-gradient(circle, var(--color-mint) 0%, rgba(210, 228, 209, 0) 70%);
  bottom: -10%;
  right: 8%;
  animation: floatOrbMint 22s ease-in-out infinite alternate;
}

/* 3. Kadın Bulut Grisi Pamuklu Pijama Takımı Rengi */
.orb-cloud {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(circle, var(--color-cloud) 0%, rgba(222, 227, 233, 0) 70%);
  top: 35%;
  right: 18%;
  animation: floatOrbCloud 24s ease-in-out infinite alternate;
}

/* 4. Kadın Ekru Beyaz Pamuklu Pijama Takımı Rengi */
.orb-ecru {
  width: 50vw;
  height: 50vw;
  min-width: 340px;
  min-height: 340px;
  background: radial-gradient(circle, var(--color-ecru-subtle) 0%, rgba(243, 238, 228, 0) 70%);
  bottom: 5%;
  left: -8%;
  animation: floatOrbEcru 26s ease-in-out infinite alternate;
}

/* =========================================================
   CENTER STAGE & TYPOGRAPHY
   ========================================================= */

.content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 2rem;
  text-align: center;
}

.coming-soon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  text-indent: 0.32em; /* Harf aralığı kaynaklı sağa kaymayı dengeler */
  color: var(--color-text);
  line-height: 1.2;
  user-select: none;
  animation: fadeInQuiet 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeInQuiet {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 0.92;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatOrbButter {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4vw, 6vh) scale(1.08);
  }
  100% {
    transform: translate(-3vw, 8vh) scale(0.95);
  }
}

@keyframes floatOrbMint {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5vw, -4vh) scale(1.06);
  }
  100% {
    transform: translate(3vw, -7vh) scale(0.94);
  }
}

@keyframes floatOrbCloud {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4vw, 5vh) scale(0.96);
  }
  100% {
    transform: translate(5vw, -3vh) scale(1.05);
  }
}

@keyframes floatOrbEcru {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5vw, -5vh) scale(1.05);
  }
  100% {
    transform: translate(-3vw, -3vh) scale(0.97);
  }
}

/* =========================================================
   RESPONSIVE OPTIMIZATIONS
   ========================================================= */

@media (max-width: 768px) {
  .coming-soon {
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }
  
  .orb {
    filter: blur(65px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon,
  .orb {
    animation: none;
    opacity: 0.92;
  }
}
