/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============ LAYOUT FIX ============ */
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.container {
  flex: 1; /* Push footer down */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ============ TYPOGRAPHY ============ */
h1 {
  font-size: 3rem;
  color: #0f5132;
}

.tagline {
  font-size: 1.2rem;
  margin: 0.5rem 0 1.5rem;
  color: #198754;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* ============ FORMS ============ */
.email-form,
#job-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.email-form input,
#job-form input,
#job-form select,
#job-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.email-form button,
#job-form button {
  padding: 0.75rem;
  background-color: #198754;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.email-form button:hover,
#job-form button:hover {
  background-color: #145c3b;
}

/* ============ BUTTONS ============ */
.btn,
.hiring-toggle-btn {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.hiring-toggle-btn {
  background-color: #000;
  color: #fff;
  border: none;
}

.hiring-toggle-btn:hover {
  background-color: #333;
}

.btn-primary {
  background-color: #0d6efd;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #0a58ca;
}

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 3rem;
}

.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.footer .social-icons a {
  font-size: 1.5rem;
  color: #0d6efd;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-icons a {
  font-size: 1.5rem;
  color: #0d6efd;
}

/* ============ COUNTDOWN ============ */
#countdown {
  font-size: 1.5rem;
  margin-top: 2rem;
  font-weight: bold;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 1rem;
  }
}
