/* DayalTravel.in — Coming Soon
   Author: ChatGPT
   Notes: Pure HTML + CSS. No JS required.
*/

:root {
  --bg: #0b1020;
  --bg-2: #0f162d;
  --text: #e8ecf3;
  --muted: #a9b2c7;
  --primary: #74f0b0;   /* mint */
  --primary-2: #4fe0d2; /* aqua */
  --accent: #ffd166;    /* warm */
  --card: #121a34cc;
  --stroke: #263153;
  --focus: #94a3ff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

@media (prefers-color-scheme: light) {
  :root { 
    --bg: #f8fafc;
    --bg-2: #ffffff;
    --text: #0b1020;
    --muted: #4a5568;
    --card: #ffffffcc;
    --stroke: #e2e8f0;
    --shadow: 0 12px 24px rgba(2, 6, 23, 0.08);
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 10%, #1a2247 0%, var(--bg) 60%) fixed;
  font: 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
  overflow-x: hidden;
}

/* Background texture & gradient overlay */
.bg::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(116,240,176,.25), transparent 60%),
    radial-gradient(600px 400px at 20% 80%, rgba(79,224,210,.2), transparent 60%);
  z-index: -2;
}
.noise {
  position: fixed;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(10,15,30,0.65), rgba(10,15,30,0));
  z-index: 10;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 800; letter-spacing: .3px;
}
.brand-icon { font-size: 1.35rem; }
.brand-text { font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; }
.brand-text .accent { color: var(--primary); }
.brand-text .tld { color: var(--muted); font-weight: 600; margin-left: 2px; }

/* Main */
.main { padding: 56px 0 64px; }

.hero {
  text-align: center;
  padding: 48px 24px 8px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(116,240,176,.18), rgba(79,224,210,.18));
  color: var(--text);
  border: 1px solid var(--stroke);
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow);
}
h1 {
  margin: 14px auto 12px;
  font-size: clamp(2rem, 3.6vw + 1rem, 3.2rem);
  line-height: 1.15;
  letter-spacing: .2px;
}
.highlight {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  margin: 0.5rem auto 1.2rem;
}

/* Notify form */
.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 18px auto 8px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.notify-form input[type="email"] {
  width: 100%;
  font-size: 1rem;
  padding: 14px 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  outline: none;
}
.notify-form input::placeholder { color: #9aa3b5; }

.btn {
  cursor: pointer;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #081018;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 14px rgba(79,224,210,.3);
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(1px) scale(.98); }

.privacy {
  grid-column: 1/-1;
  margin: 4px 4px 0;
  font-size: .85rem;
  color: var(--muted);
}

/* Progress bar (pure CSS animated) */
.progress-wrap {
  margin: 24px auto 0;
  max-width: 560px;
  height: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  animation: loading 3.2s ease-in-out infinite;
}
@keyframes loading {
  0%   { transform: translateX(-60%); }
  50%  { transform: translateX(30%); }
  100% { transform: translateX(110%); }
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 48px auto 0;
  padding: 0 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px 18px 16px;
  text-align: left;
  box-shadow: var(--shadow);
}
.card h3 { margin: 10px 0 6px; }
.card p { margin: 0; color: var(--muted); }
.card-icon { font-size: 1.4rem; }

/* Contact */
.contact {
  text-align: center;
  margin: 54px auto 0;
  max-width: 60ch;
  padding: 0 12px;
}
.contact a { color: var(--primary); font-weight: 600; text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.social { margin-top: 10px; display: inline-flex; align-items: center; gap: 10px; color: var(--muted); }
.social a { color: var(--text); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  margin-top: 56px;
  background: rgba(0,0,0,.08);
}
.site-footer .container { padding: 18px 20px; color: var(--muted); }

/* A11y */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 720px) {
  .notify-form { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  h1 { font-size: clamp(1.8rem, 5.6vw + 1rem, 2.4rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .progress-bar { animation: none; width: 55%; }
}
