* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { line-height: 1.6; }

/* Header */
header {
  background: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
header .logo { font-size: 1.5rem; font-weight: bold; }
header .logo span { color: #f39c12; }
nav ul { display: flex; list-style: none; }
nav ul li { margin: 0 15px; }
nav ul li a { color: white; text-decoration: none; }
.menu-toggle { display: none; cursor: pointer; }

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200') no-repeat center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 20px; }
.btn {
  background: #f39c12; color: white; padding: 10px 20px;
  border: none; cursor: pointer; text-decoration: none; font-size: 1rem;
}
.btn:hover { background: #e67e22; }

/* Sections */
.section { padding: 60px 20px; text-align: center; }
.section h2 { margin-bottom: 30px; font-size: 2rem; }

/* Listings */
.search-bar { margin-bottom: 20px; }
.search-bar input {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card h3 { margin: 10px 0; }
.card p { margin: 5px 0; }

/* Contact */
.contact form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact input, .contact textarea {
  padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 5px;
}
.contact button { background: #2c3e50; color: white; border: none; padding: 10px; cursor: pointer; }
.contact button:hover { background: #34495e; }

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; }
  .menu-toggle { display: block; }
  nav ul.showing { display: flex; }
}
