/* GLOBAL */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, serif;
  color: #333;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* NAVIGATION */
.navbar {
  background: rgba(255,255,255,0.95);
  text-align: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar a {
  margin: 0 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #4a7c78;
}
.navbar a:hover { color: #3b6461; }

/* HERO */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}
.hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.3);
  z-index:1;
}
.hero-content { position: relative; z-index:2; }

/* BUTTON */
.button {
  display: inline-block;
  padding: 14px 32px;
  background: #4a7c78;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}
.button:hover { background: #3b6461; }

/* SECTIONS */
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.section-left .text,
.section-right .text { flex:1; padding:0 2rem; }
.section-left .image,
.section-right .image { flex:1; text-align:center; }

/* COLORS */
.bg-offwhite { background-color:#fdfdf7; color:#264d3c; }
.bg-lightgreen { background-color:#d8ede1; color:#264d3c; }
.bg-darkgreen { background-color:#264d3c; color:#ffffff; }

/* IMAGE STYLING */
.profile-pic { max-width:300px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }

/* CLIENT FEEDBACK */
#clients blockquote {
  background-color:#ffffff;
  color:#264d3c;
  border-left:6px solid #4a7c78;
  padding:1rem 1.5rem;
  margin:1rem auto;
  font-style:italic;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  max-width:800px;
}

/* FOOTER */
.footer { text-align:center; padding:2rem; }

/* RESPONSIVE */
@media(max-width:768px) {
  .section { flex-direction: column; text-align:center; }
  .section-left .text, .section-right .text { padding:0; }
  .section-left .image, .section-right .image { margin:1.5rem 0; }

}

#clients {
  display: block !important;
  text-align: center;
}

#clients h2 {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

#clients .client-quotes {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

#clients blockquote {
  display: block;
  margin-bottom: 20px;
}
