/* Nefes Tatil — Coming Soon */

:root {
  --color-deep: #0a1628;
  --color-ocean: #1a3a4a;
  --color-teal: #41b3a3;
  --color-coral: #e8a87c;
  --color-sand: #f4d58d;
  --color-cream: #faf6f0;
  --color-muted: rgba(250, 246, 240, 0.65);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--color-cream);
  background: var(--color-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Atmospheric background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(65, 179, 163, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(232, 168, 124, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(244, 213, 141, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-deep) 0%, var(--color-ocean) 50%, #0d2233 100%);
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 12s var(--ease-out-expo) infinite alternate;
}

.orb-1 {
  width: 40vw;
  height: 40vw;
  max-width: 400px;
  max-height: 400px;
  top: -10%;
  right: -5%;
  background: rgba(65, 179, 163, 0.2);
  animation-delay: 0s;
}

.orb-2 {
  width: 35vw;
  height: 35vw;
  max-width: 350px;
  max-height: 350px;
  bottom: 10%;
  left: -8%;
  background: rgba(232, 168, 124, 0.15);
  animation-delay: -4s;
}

.orb-3 {
  width: 25vw;
  height: 25vw;
  max-width: 250px;
  max-height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(244, 213, 141, 0.1);
  animation-delay: -8s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Layout */
.page {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Logo */
.header {
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease-out-expo) 0.2s both;
}

.logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  animation: breathe 4s ease-in-out infinite;
}

.progress-wrap {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 1.25rem;
  animation: fadeUp 1s var(--ease-out-expo) 0.4s both;
}

.logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(65, 179, 163, 0.3));
}

.logo-ring {
  animation: spinSlow 20s linear infinite;
  transform-origin: center;
}

.logo-letter {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  fill: var(--color-cream);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.wave {
  animation: waveMove 3s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: -1s; }
.wave-3 { animation-delay: -2s; }

.logo-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 179, 163, 0.25) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.brand {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-line {
  display: block;
}

.brand-nefes {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tatil {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-style: italic;
  color: var(--color-teal);
  margin-top: 0.1em;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Hero */
.hero {
  animation: fadeUp 1s var(--ease-out-expo) 0.5s both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(65, 179, 163, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(65, 179, 163, 0.08);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--color-teal); }
  50% { opacity: 0.4; box-shadow: none; }
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.headline-word {
  display: inline-block;
  animation: fadeUp 0.8s var(--ease-out-expo) both;
}

.headline-word:first-child {
  animation-delay: 0.7s;
  margin-right: 0.25em;
}

.headline-accent {
  animation-delay: 0.9s;
  font-style: italic;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-coral) 50%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s both;
}

.features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  animation: fadeUp 1s var(--ease-out-expo) 1.3s both;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-cream);
}

.feature-icon {
  font-size: 1rem;
  line-height: 1;
}

.feature-divider {
  width: 1px;
  height: 16px;
  background: rgba(250, 246, 240, 0.2);
}

/* Footer */
.footer {
  margin-top: 3rem;
  width: 100%;
  animation: fadeUp 1s var(--ease-out-expo) 1.5s both;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.progress-percent {
  color: var(--color-teal);
}

.progress-bar {
  height: 3px;
  background: rgba(250, 246, 240, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral), var(--color-sand));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  transition: width 0.1s linear;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.copyright {
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.35);
  font-weight: 300;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .feature-divider {
    display: none;
  }

  .features {
    flex-direction: column;
    gap: 0.6rem;
  }

  .logo-wrap {
    width: 100px;
    height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #particleCanvas {
    display: none;
  }
}
