/* Brindabella Water — static site */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #2a2a2a;
  background: #f5f5f5 url('../images/bg-green-blur.jpg') center top / cover fixed no-repeat;
  min-height: 100vh;
}

a { color: #1b9b6c; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Page shell — white center column over the green blur background, like the Wix layout */
.page {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px 18px;
  gap: 20px;
  flex-wrap: wrap;
}
.site-header .logo img {
  display: block;
  height: 70px;
  width: auto;
}
.nav {
  display: flex;
  gap: 28px;
  border-top: 1px solid #d6d6d6;
  padding-top: 14px;
}
.nav a {
  color: #2a2a2a;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 4px 2px;
  border-top: 3px solid transparent;
  margin-top: -17px;
  padding-top: 14px;
}
.nav a:hover { color: #1b9b6c; text-decoration: none; }
.nav a.active {
  border-top-color: #1b9b6c;
  color: #1a1a1a;
}

/* Hero strip — used on subpages for the page title */
.page-title {
  background: rgba(255,255,255,0.95);
  padding: 24px 40px;
  margin: 0 40px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.page-title h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: #1a1a1a;
}

/* Home hero image with overlaid text */
.hero {
  margin: 8px 40px 0;
  position: relative;
  overflow: hidden;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
}
.hero .hero-text {
  position: absolute;
  top: 8%;
  left: 5%;
  right: 5%;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1.15;
  color: #1f1f1f;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
  max-width: 80%;
}

/* Three feature circles on the home page */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 50px 40px;
}
.feature {
  text-align: center;
}
.feature .circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: #ccc;
}
.feature .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
  color: #1a1a1a;
}
.feature .feature-link {
  color: #1b9b6c;
  font-size: 17px;
}
.feature .phone {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
}

hr.divider {
  border: 0;
  border-top: 1px solid #e2e2e2;
  margin: 0 40px;
}

/* Content sections (about/services/clients) */
.content {
  padding: 40px;
  font-size: 15px;
  color: #2a2a2a;
}
.content p { margin: 0 0 14px; }
.content ul { margin: 0 0 18px 18px; padding: 0; }
.content li { margin: 4px 0; }
.content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  margin: 30px 0 16px;
  color: #1a1a1a;
}

/* Two-column "intro" block: image left, text right (Services page top block) */
.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}
.split.reverse { grid-template-columns: 1fr 280px; }
.split .circle-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
}
.split .circle-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Client logo grid */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  padding: 30px 0 10px;
  align-items: center;
  justify-items: center;
}
.client-grid img {
  max-width: 200px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contact page */
.contact-block {
  padding: 50px 40px 20px;
  font-size: 22px;
  line-height: 1.9;
}
.contact-block .label {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #1a1a1a;
}
.contact-map {
  margin: 10px 40px 40px;
  border: 1px solid #ddd;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* Footer */
.site-footer {
  background: #1f1f1f;
  color: #d8d8d8;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 30px;
  align-items: start;
  font-size: 14px;
}
.site-footer .footer-logo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.site-footer h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin: 3px 0; }
.site-footer a { color: #c8c8c8; }
.site-footer a:hover { color: #ffffff; text-decoration: none; }
.site-footer .abn { margin-top: 14px; color: #9c9c9c; }
.site-footer .site-credit {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #2e2e2e;
  font-size: 12px;
  color: #8a8a8a;
  text-align: center;
}
.site-footer .site-credit a { color: #b8b8b8; }
.site-footer .site-credit a:hover { color: #ffffff; }

/* Responsive */
@media (max-width: 800px) {
  .site-header { padding: 18px 20px 12px; }
  .site-header .logo img { height: 52px; }
  .nav { gap: 18px; padding-top: 10px; }
  .page-title, .hero, hr.divider { margin-left: 20px; margin-right: 20px; }
  .content, .contact-block, .site-footer { padding-left: 20px; padding-right: 20px; }
  .contact-map { margin-left: 20px; margin-right: 20px; }
  .feature-row {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }
  .split, .split.reverse {
    grid-template-columns: 1fr;
  }
  .split .circle-img { margin: 0 auto; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr; }
  .hero .hero-text { font-size: 22px; max-width: 95%; }
}

@media (max-width: 460px) {
  .nav { font-size: 14px; gap: 12px; }
  .hero .hero-text { font-size: 18px; top: 6%; }
}
