body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #005fa3;
}

.btn.small {
  padding: 6px 12px;
  font-size: 0.9em;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0077cc, #00c6ff);
  color: white;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.about, .portfolio, .how, .contact {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.portfolio .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.status {
  display: block;
  margin: 10px 0;
  font-weight: bold;
}

.available .status { color: green; }
.rent .status { color: orange; }
.taken .status { color: red; }

.how .steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.contact button {
  cursor: pointer;
}

.alt-contact {
  margin-top: 15px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  font-size: 0.9em;
}

.logo {
  max-width: 100px;
  margin-bottom: 15px;
}

.banner {
  padding: 40px 20px;
  background: #0077cc;
  color: white;
  text-align: center;
}

.churches {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.churches p {
  max-width: 700px;
  margin: 20px auto;
}

.founder {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid #0077cc;
  background: #f5faff;
  border-radius: 6px;
}
