/* ================= HOST EVENT PAGE ================= */

/* HERO */
.host-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    120deg,
    #1e3a8a,
    #3b82f6,
    #9333ea
  );
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;

  color: white;
  padding: 120px 20px;
}

.host-hero h1 {
  font-size: 3rem;
  font-weight: 900;
}

.host-hero p {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ================= STEPS ================= */

.host-steps {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.steps-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.step-card span {
  font-size: 34px;
  font-weight: 900;
  color: #3b82f6;
}

.step-card h3 {
  margin: 15px 0 10px;
  font-weight: 700;
}

/* ================= FORM SECTION ================= */

.host-form-section {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.host-form-section h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0f172a;
}

.host-form-section .subtitle {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 50px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* FORM CARD */
.host-form {
  max-width: 680px;
  margin: auto;
  padding: 45px 40px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* FORM GROUP */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 0.95rem;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  font-family: Inter, sans-serif;
  transition: 0.25s ease;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
}

/* FOCUS STATE */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}

/* SUBMIT BUTTON */
.host-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  margin-top: 10px;
}

/* FORM NOTE */
.form-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

/* ================= FOOTER ================= */

footer {
  background: #0f172a;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 40px 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .host-hero h1 {
    font-size: 2.2rem;
  }

  .host-hero p {
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .host-form {
    padding: 35px 22px;
  }

  .host-form-section h2 {
    font-size: 2rem;
  }
}

/* ================= ANIMATION ================= */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.host-form-wrapper {
  display: flex;
  justify-content: center;
}
