/* footer.css - Footer styles for Serenity Jets & Drones */

.site-footer {
  background: #19233a;
  position: relative;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  font-size: 1rem;
  z-index: 1000;
  border-top: 2px solid #d4b46a;
}
.site-footer .copyright {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.site-footer .fa {
  margin: 0 0.3rem;
  color: #d4b46a;
}
.site-footer form {
  margin: 1rem auto;
  max-width: 320px;
  display: flex;
  gap: 0.5rem;
}
.site-footer input[type="email"] {
  flex: 1;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #c9b26b;
  background: #0a1423;
  color: #e5e5e5;
  font-size: 1rem;
}
.site-footer button {
  background: #d4b46a;
  color: #19233a;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.site-footer button:hover {
  background: #19233a;
  color: #d4b46a;
}
@media (max-width: 480px) {
  .site-footer {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .site-footer form {
    flex-direction: column;
    gap: 0.3rem;
  }
}
