/* KoiPilot – Base Styles */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Header & Nav */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #111;
}

.logo {
  height: 48px;
  width: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
}

label {
  font-weight: 600;
}

input, textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

button[type="submit"] {
  padding: 0.6rem 1.5rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

button[type="submit"]:hover {
  background: #333;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 3rem;
}
