/* TD Creations Coming Soon Styles */

:root {
  --bg: #faf4fb;
  --bg-card: #ffffff;
  --text-main: #222222;
  --text-muted: #666666;
  --accent: #E91E63;      /* magenta accent */
  --accent-dark: #C2185B;
  --border-soft: #f0d7e5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #ffe5f4 0, #faf4fb 40%, #ffffff 100%);
  color: var(--text-main);
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 60px 20px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo */

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.1));
}

/* Headline / subheadline */

.headline {
  font-size: 2.6rem;
  margin: 10px 0 8px;
  letter-spacing: 0.03em;
}

.subheadline {
  font-size: 1.15rem;
  margin: 0 auto 30px;
  max-width: 520px;
  color: var(--text-muted);
}

/* Countdown */

.countdown {
  margin: 10px auto 32px;
  display: inline-block;
  text-align: center;
}

.countdown-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.countdown-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 70px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.count-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.count-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Cards */

.content-card,
.contact-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 24px 20px 26px;
  margin: 0 auto 18px;
  max-width: 540px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-soft);
}

.content-card h2,
.contact-card h3 {
  margin-top: 0;
  color: var(--accent);
}

.content-card p,
.contact-card p {
  margin: 8px 0 14px;
  color: var(--text-muted);
}

/* Subscribe form */

.subscribe-form {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  padding: 12px 14px;
  font-size: 1rem;
  width: 260px;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid #e0c2d4;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.15);
}

.subscribe-form button {
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.subscribe-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(233, 30, 99, 0.4);
  filter: brightness(1.03);
}

.subscribe-form button:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.35);
}

/* Response message */

.form-response {
  margin-top: 14px;
  font-size: 0.95rem;
  min-height: 1.2em;
}

/* Contact + socials */

.contact-card h3 {
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe6f2;
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: #ffd1eb;
  transform: translateY(-1px);
}

/* Footer */

.footer {
  margin-top: auto;
  text-align: center;
  padding: 14px 10px 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.1s;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.3s;
}

.fade-in-delay-3 {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.5s;
}

.fade-in-delay-4 {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.7s;
}

/* Responsive */

@media (max-width: 600px) {
  .headline {
    font-size: 2rem;
  }
  .subheadline {
    font-size: 1rem;
  }
}
