/* Flipwise Reno Website Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
}

header {
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

header h1 { margin: 0; font-size: 1.4rem; }
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}
nav a:hover, nav a.active { text-decoration: underline; }

.hero {
  margin-top: 70px;
  position: relative;
  text-align: center;
  color: #fff;
}
.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main {
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: auto;
}

footer {
  background: #eee;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
form button:hover { background-color: #555; }
