/* ============================================
   Jesus Healing Ministry – Coming Soon
   style.css
   ============================================ */

/* ── Reset & Variables ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e8c0;
  --cream:       #fdf8ef;
  --dark:        #120d04;
  --mid:         #2e1f08;
  --border:      rgba(201, 168, 76, 0.25);
  --glow:        rgba(201, 168, 76, 0.35);
  --glow-strong: rgba(201, 168, 76, 0.70);
}

/* ── Base ── */
html, body {
  min-height: 100vh;
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── Background glow ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(201,168,76,.20) 0%, transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(46,31,8,.70) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Stars ── */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  animation: twinkle var(--d) ease-in-out infinite alternate;
  opacity: 0;
}

@keyframes twinkle {
  from { opacity: 0;             transform: scale(0.6); }
  to   { opacity: var(--op, .6); transform: scale(1);   }
}

/* ── Cross Watermark ── */
.cross-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60vmin;
  color: rgba(201, 168, 76, 0.045);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  animation: breathe 7s ease-in-out infinite;
}

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

/* ── Page Layout ── */
.page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

/* ── Card ── */
.card {
  text-align: center;
  max-width: 700px;
  width: 100%;
  animation: fadeUp 1.2s ease both;
}

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

/* ── Logo Icon ── */
.icon {
  margin: 0 auto 1.2rem;
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowPulse 3s ease-in-out infinite;
}

.icon img {
  display: block;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 14px var(--glow); }
  50%       { box-shadow: 0 0 32px var(--glow-strong); }
}

/* ── Ministry Label ── */
.ministry-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ── Heading ── */
h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* ── Tagline ── */
.tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: rgba(253, 248, 239, 0.65);
  margin-bottom: 0.2rem;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.6rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── Bible Verse ── */
.verse {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(253, 248, 239, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

.verse cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* ── Countdown Label ── */
.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  opacity: 0.8;
}

/* ── Countdown Blocks ── */
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.time-block {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  min-width: 72px;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s;
}

.time-block:hover {
  border-color: var(--gold);
}

.time-block .num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.time-block .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 248, 239, 0.5);
  display: block;
  margin-top: 0.3rem;
}

/* ── Subscribe ── */
.subscribe-wrap {
  margin-bottom: 2rem;
}

.subscribe-wrap p {
  font-size: 0.95rem;
  color: rgba(253, 248, 239, 0.6);
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}

.subscribe-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  width: 260px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(253, 248, 239, 0.35);
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.25);
}

.subscribe-form button {
  background: linear-gradient(135deg, var(--gold), #a07828);
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.6rem;
  color: var(--dark);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.subscribe-form button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.subscribe-form button:active {
  transform: translateY(0);
}

/* ── Messages ── */
.msg {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-style: italic;
}

.msg.success { color: var(--gold-light); }
.msg.error   { color: #e07070; }

/* ── Social ── */
.social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.social a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Footer ── */
footer {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(253, 248, 239, 0.3);
  text-transform: uppercase;
}

footer a {
  color: rgba(201, 168, 76, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .time-block {
    min-width: 58px;
    padding: 0.7rem 0.8rem;
  }

  .time-block .num {
    font-size: 1.6rem;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
  }

  .subscribe-form button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.5rem;
  }

  .icon {
    width: 58px;
    height: 58px;
  }
}
