/* NADIDE BAYKAN — Coming Soon Cover */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'General Sans', system-ui, sans-serif;
  color: #fff;
  overflow: hidden;
}

.cover {
  position: relative;
  width: 100%;
  height: 100svh;
  background: url('background.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,19,30,.35), rgba(20,19,30,.55));
  z-index: 1;
}

.cover-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.cover-eyebrow {
  font-size: clamp(.8rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: .85;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.cover-name {
  font-family: 'Clash Display', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
}

.cover-soon {
  margin-top: 1.6rem;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: .15em;
  opacity: .75;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
