/* =========================
   Master Planner Styles
   (Based on Mix Planner, recolored for Master My Indie Track)
========================= */

body {
  font-family: Arial, sans-serif;
  background: #0a0b0d; /* matches master.css background */
  color: #e6e9f2;      /* master.css foreground */
  margin: 0;
  padding: 0;
}

/* Container */
.form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #11121a;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(179,180,255,0.25);
  animation: pulseShadow 6s ease-in-out infinite;
}

/* Text + Layout */
p {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #c5c8d4;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e6e9f2;
}

/* =========================
   Inputs & Selects
========================= */
input[type="text"],
input[type="url"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #333;
  background: #1a1a22;
  color: #e6e9f2;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'AwakeRegular', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #b3b4ff;
  box-shadow: 0 0 10px rgba(179,180,255,0.6);
  outline: none;
}

/* =========================
   Checkboxes
========================= */
input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.1);
  cursor: pointer;
}

.help-with label {
  display: block;
  margin-bottom: 0.75rem;
}

input[type="checkbox"]:hover + label {
  color: #b3b4ff;
  font-weight: bold;
}

input[type="checkbox"]:checked + label {
  color: #84f7f0;
}

/* =========================
   Submit Button
========================= */
button[type="submit"] {
  display: block;
  margin: 2rem auto 0 auto;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #84f7f0, #b3b4ff, #84f7f0);
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  background-size: 200% 100%;
  animation: buttonGradientShift 4s ease infinite;
}

button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #84f7f0, 0 0 25px #b3b4ff;
}

/* Gradient Sweep Animation */
@keyframes buttonGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   Form Shadow Animation
========================= */
@keyframes pulseShadow {
  0%   { box-shadow: 0 0 15px rgba(179,180,255,0.15); }
  50%  { box-shadow: 0 0 30px rgba(132,247,240,0.35); }
  100% { box-shadow: 0 0 15px rgba(179,180,255,0.15); }
}

/* =========================
   Animated Gradient Header
========================= */
h1 {
  font-family: 'donovanregular', sans-serif;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

.animated-header {
  display: block;
  width: 100%;
  background: linear-gradient(270deg, #84f7f0, #b3b4ff, #84f7f0);
  background-size: 600% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px #84f7f0, 0 0 2px #b3b4ff, 0 0 4px #b3b4ff;
  animation: gradientMove 6s linear infinite, neonPulse 4s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

@keyframes neonPulse {
  0% { text-shadow: 0 0 1px #84f7f0, 0 0 2px #b3b4ff, 0 0 4px #b3b4ff; }
  50% { text-shadow: 0 0 1.5px #84f7f0, 0 0 3px #b3b4ff, 0 0 6px #b3b4ff; }
  100% { text-shadow: 0 0 1px #84f7f0, 0 0 2px #b3b4ff, 0 0 4px #b3b4ff; }
}

/* =========================
   Subtitle H2 + Divider
========================= */
h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #e6e9f2;
  margin-top: 0.5rem;
  font-weight: normal;
}
.footer {
font-size: 14px;
  margin-bottom: 16px;
  font-family: 'AwakeRegular'; sans-serif;
  font-weight: normal;
  color: #ffffff;
align-items: center;
  justify-content: center;
}
  
 .footer a:hover {
  text-decoration: underline; /* optional hover effect */
}
 .footer a {
  font-size: inherit;               /* overrides global a{font-size:28px} */
  color: inherit;
  text-decoration: none;
} 
/* Neon divider */
.form-container h2::after {
  content: "";
  display: block;
  height: 1px;
  width: min(85%, 520px);
  margin: 10px auto 12px;

  /* More saturated + brighter gradient */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(84,247,240,0.9) 15%,   /* brighter cyan core */
    rgba(179,180,255,1) 50%,    /* vivid violet center */
    rgba(84,247,240,0.9) 85%,   /* mirror cyan */
    transparent 100%
  );

  /* Stronger glow layers */
  box-shadow:
    0 0 25px rgba(179,180,255,0.95),
    0 0 45px rgba(132,247,240,0.6),
    0 0 80px rgba(179,180,255,0.4);

  animation: dividerThrob 3.5s ease-in-out infinite;
}

/* Animation for “throbbing” glow + intensity pulse */
@keyframes dividerThrob {
  0%, 100% {
    opacity: 0.85;
    filter: brightness(1);
    box-shadow:
      0 0 20px rgba(179,180,255,0.8),
      0 0 40px rgba(132,247,240,0.5),
      0 0 60px rgba(179,180,255,0.3);
  }
  90% {
    opacity: 1;
    filter: brightness(1.35);
    box-shadow:
      0 0 35px rgba(179,180,255,1),
      0 0 70px rgba(132,247,240,0.8),
      0 0 100px rgba(179,180,255,0.6);
  }
}


/* =========================
   Mobile adjustments
========================= */
@media (max-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 1.25rem; }
  .form-container { padding: 1.5rem; }
}
