body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #ffffff;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background: #1f1f1f;
}

header img {
  width: 800px;   /* adjust this number until it looks right */
  max-width: 80%; /* ensures it doesn't overflow on small screens */
  height: auto;   /* keeps aspect ratio */
  display: block;
  margin: 0 auto; /* centers it */
}


h1 {
  color: #ff6a00;
  margin: 0.5rem 0;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: #ff6a00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #009dff;
}

/* Sections */
section {
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  background-color: #1f1f1f;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

h2 {
  color: #009dff;
  margin-top: 0;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form select,
form textarea {
  padding: 0.75rem;
  border-radius: 6px;
  background-color: #2c2c2c;
  color: #fff;
  border: none;
}

form button {
  background-color: #ff6a00;
  color: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #e55a00;
}

/* Flash Messages */
.flash {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 8px;
  z-index: 1000;
  color: white;
  font-weight: bold;
}

.flash.success {
  background-color: #28a745;
}

.flash.error {
  background-color: #dc3545;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #1f1f1f;
}

footer a {
  color: #ff6a00;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #009dff;
}

/* Google Form Embed */
.form-container {
  position: relative;
  width: 100%;
  height: 1600px; /* adjust this number depending on how tall your form is */
  overflow: hidden;
  border-radius: 8px; /* matches your section style */
}

.form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}










