@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Russo+One&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --gold: #f5d57a;
  --neon: #ffd26e;
  --dark: #050810;
  --glass: rgba(255,255,255,0.05);
  --card: rgba(255,255,255,0.08);
}

/* Background */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #0f1a3a, #050810 70%);
  color: #fff;
  text-align: center;
}

/* Main container */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

/* Avatars */
.avatars {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 45px;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px var(--gold);
  animation: glowPulse 4s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  from { box-shadow: 0 0 18px var(--gold); }
  to   { box-shadow: 0 0 40px var(--gold); }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Title Glow */
.glow {
  font-family: 'Russo One', sans-serif;
  font-size: 34px;
  margin-top: 20px;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(255,200,120,1), 0 0 45px rgba(255,200,120,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Lead text */
.lead {
  font-size: 16px;
  color: #eaeaea;
  margin-top: 12px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.ctas {
  margin-top: 20px;
}

.btn {
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s;
  display: inline-block;
  margin: 7px;
}

.primary {
  background: linear-gradient(45deg, #ffce5a, #f7b84b);
  color: #000;
  box-shadow: 0 0 18px rgba(255,200,120,0.7);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255,200,120,1);
}

.ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

/* Feature Cards */
.features {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 32px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(255,200,120,0.8);
}

.card p {
  font-size: 15px;
  color: #ddd;
}

/* Footer */
.site-foot small {
  color: #ccc;
}

.owner {
  margin-top: 8px;
  color: var(--neon);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,200,120,1);
}

/* Social Icons */
.social-links a {
  color: var(--gold);
  margin: 0 10px;
  font-size: 26px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--gold);
  transform: scale(1.2);
}


/* -------------------------------------- */
/*        🔥 RESPONSIVE FORM UI FIX       */
/* -------------------------------------- */

form {
  width: 95%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

form label {
  color: white;
  font-size: 15px;
  font-weight: 500;
}

form input,
form select,
form textarea {
  width: 100% !important;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: blur(4px);
}

form textarea {
  min-height: 110px;
  resize: none;
}

/* File upload box */
input[type="file"] {
  background: rgba(255, 255, 255, 0.13);
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

::file-selector-button {
  background: #ffb703;
  color: #000;
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Submit Button */
button,
input[type="submit"] {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #f5d57a, #ffb703);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

button:hover,
input[type="submit"]:hover {
  transform: scale(1.03);
  transition: 0.2s;
}

/* Mobile Fix */
@media(max-width: 480px) {
  form { width: 100%; }

  form input,
  form select,
  form textarea { font-size: 14px; }

  button { font-size: 17px; }
}
