/* Custom Styles for Renovation Portfolio Template */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #eee;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}
.hero {
  background: #eee;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}

.page-content h1 {
  font-size: 32px;
}

.hero p {
  color: #666;
}
.cta-button {
  background: #1a7efb;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
a.cta-button {
  color: #fff;
}
.filter.renovation-portfolio {
  text-align: center;
  padding: 1rem;
}
.filter-button.renovation-portfolio {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  color: #1a4c72;
}
.filter-button.active,
.filter-button:hover {
  background: #1a4c72;
  color: white;
}
.filter_buttons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  width: 378px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  height: auto;
  max-width: 384px;
  max-height: 256px;
  object-fit: cover;
  object-position: center;
}
.project-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 1rem;
}
.project-card p {
  margin: 0 1rem 1rem;
  color: #666;
}

.project-card_content {
  padding: 1rem;
}

.project-card_attributes{
  display: flex;
  justify-content: space-evenly;
}

.project-card_attributes span {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.testimonials {
  background: #c8c8c8;
  padding: 2rem 1rem;
  text-align: center;
}
.testimonial {
  max-width: 700px;
  margin: 1rem auto;
  font-style: italic;
  color: #444;
}
.testimonial_credentials {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.cta {
  background: #1a4c72;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}