/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Roboto&display=swap');

/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  cursor: default;
}

/* Apply arrow cursor to all text elements */
p, h1, h2, h3, h4, h5, h6, li, span, a {
  cursor: default;
  user-select: none;
}

/* Allow normal cursor & selection in form fields */
input, textarea, select, button {
  cursor: text;
  user-select: text;
}

/* Link Styling */
a {
  color: #ff3c00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Hero Banner */
.hero {
  background: url('https://images.unsplash.com/photo-1616661156125-e01439c4304f') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* Logo / Title */
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #ff3c00;
}

/* Layout */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Headings */
h2 {
  color: #ff3c00;
  margin-top: 40px;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
}
ul li::before {
  content: "✓";
  color: #ff3c00;
  margin-right: 10px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

input, textarea, button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

input, textarea {
  background-color: #1e1e1e;
  color: #fff;
}

button {
  background-color: #ff3c00;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e63300;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
  background-color: #111;
  font-size: 0.9rem;
}
