/* ============================================================
   welcome.css — Girişte "Hoşgeldin" ekranı (fon manzarası + günün vecizesi)
   ============================================================ */

#goby-welcome {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s ease;
  background: #0b0f14;
}
#goby-welcome.gw-in { opacity: 1; }
#goby-welcome.gw-out { opacity: 0; pointer-events: none; }

/* Fon fotoğrafı + hafif Ken Burns zoom */
.gw-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: gwZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes gwZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16); }
}

/* Sol taraftan koyulaşan degrade — metin okunaklı olsun */
.gw-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,10,15,.86) 0%, rgba(6,10,15,.62) 34%, rgba(6,10,15,.12) 66%, rgba(6,10,15,0) 100%),
    linear-gradient(0deg, rgba(6,10,15,.55) 0%, rgba(6,10,15,0) 40%);
}

/* İçerik */
.gw-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 6vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.gw-clock {
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  font-variant-numeric: tabular-nums;
}
.gw-date {
  margin-top: 6px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  opacity: .9;
  text-transform: capitalize;
}

.gw-greet {
  margin-top: 26px;
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.gw-greet b { color: #ffd479; }

/* Vecize kartı */
.gw-quote {
  margin-top: 30px;
  max-width: 680px;
  border-left: 3px solid rgba(255,212,121,.85);
  padding: 6px 0 6px 20px;
}
.gw-quote-text {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.gw-quote-src {
  margin-top: 12px;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .82;
  font-weight: 600;
}
.gw-quote-src::before { content: "— "; }

/* Aksiyonlar */
.gw-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.gw-enter {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: #ffd479;
  color: #1a1205;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.gw-enter:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.45); background: #ffdd93; }
.gw-enter:active { transform: translateY(0); }
.gw-hint {
  font-size: 13px;
  opacity: .75;
}

/* Alt marka */
.gw-foot {
  position: absolute;
  left: 6vw;
  bottom: 4vh;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  opacity: .8;
  font-size: 13px;
}
.gw-foot b { font-weight: 800; letter-spacing: -.01em; }

/* Yeni vecize butonu (opsiyonel) */
.gw-refresh {
  position: absolute;
  top: 4vh;
  right: 5vw;
  z-index: 3;
  appearance: none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .15s ease;
}
.gw-refresh:hover { background: rgba(255,255,255,.18); }

@media (max-width: 640px) {
  .gw-scrim {
    background:
      linear-gradient(0deg, rgba(6,10,15,.9) 0%, rgba(6,10,15,.45) 55%, rgba(6,10,15,.15) 100%);
  }
  .gw-wrap { padding: 8vh 7vw; justify-content: flex-end; }
  .gw-foot { left: 7vw; }
}
