/* Elissun — Hazırlanıyor sayfası */
:root {
  --bg-1: #fffef8; /* sıcak beyaz */
  --bg-2: #ffffff; /* beyaz */
  --card: rgba(255, 255, 255, 0.8);
  --card-border: rgba(17, 24, 39, 0.08);
  --text: #1a1a1a; /* koyu metin */
  --muted: #6b7280; /* nötr gri */
  --accent-1: #f59e0b; /* amber */
  --accent-2: #fde047; /* sarı */
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 20%, rgba(253, 224, 71, 0.12), transparent 60%),
              radial-gradient(1000px 700px at 80% 30%, rgba(245, 158, 11, 0.10), transparent 60%),
              linear-gradient(180deg, var(--bg-1), var(--bg-2));
  position: relative;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

/* Arka plan GIF katmanı */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('./assets/solar.gif') center center / cover no-repeat fixed;
  opacity: 0.2; /* Daha az dikkat dağıtan görünüm */
  pointer-events: none;
  z-index: 0;
}

/* Koyu overlay: GIF ve gradyanların üstüne hafif karartma uygular */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.22));
  pointer-events: none;
  z-index: 0; /* ::before'un üstünde, içerikten aşağıda kalır */
}

.card {
  width: auto;
  max-width: 90vw;
  padding: 40px 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  backdrop-filter: blur(8px) saturate(120%);
  box-shadow: var(--shadow);
  text-align: center;
  display: inline-block;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.subtitle {
  margin: 18px auto 28px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.5;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  width: auto;
  max-width: 100%;
}

.service {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(245,158,11,0.18), rgba(253,224,71,0.18));
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.18);
}

.contact {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.contact a {
  color: var(--accent-1);
  text-decoration: underline;
}

.footer {
  margin-top: 24px;
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 560px) {
  .services { justify-content: center; }
}

@media (min-width: 900px) {
  .card { padding: 48px 36px; }
  .logo h1 { font-size: 32px; }
  .subtitle { font-size: 18px; }
}

.notice {
  margin: 8px 0 0;
  font-weight: 800;
  color: #a16207; /* amber-700 */
  letter-spacing: 0.2px;
}


