/* landing.css - factsheet style
   Place this under /wwwroot/css/landing.css (or your site's css folder)
   Tweak the --primary / --accent colors to match your brand.
*/

:root{
  --primary: #0b5960;      /* main teal/dark used for headings and bands - change to match site */
  --accent: #e9f7f6;       /* light band background */
  --muted: #6b6b6b;        /* paragraph muted */
  --max-width: 1100px;
  --content-gap: 28px;
  --heading-font-weight: 700;
}

/* Global container consistency */
.ls-container{
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Hero */
.ls-hero{
  background: linear-gradient(180deg, rgba(11,89,96,0.95), rgba(11,89,96,0.95));
  color: #fff;
  padding: 48px 0;
}
.ls-hero .ls-container{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ls-hero h1{
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  font-weight: var(--heading-font-weight);
  line-height: 1.08;
}
.ls-hero .lead{
  margin: 0;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  font-size: 1rem;
}
.ls-hero .hero-contact{
  margin-top: 16px;
}
.ls-hero .btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Section default */
.ls-section{
  padding: 36px 0;
}
.ls-section h2{
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  font-weight: var(--heading-font-weight);
}

/* light band */
.ls-band{
  background: var(--accent);
}

/* Two-column block used for architecture */
.ls-two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
  align-items: start;
}
.ls-two-col img{
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Lists */
.ls-bullets{
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}
.ls-bullets li{
  margin-bottom: 8px;
}

/* Feature cards/mini boxes (if you need small columns) */
.ls-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.ls-card{
  background: #fff;
  border-radius: 6px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.04);
  min-height: 80px;
}

/* CTA band */
.ls-cta{
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 34px 0;
}
.ls-cta .btn{
  background: #fff;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
}

/* Typography small helpers */
.ls-meta{
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Responsive rules */
@media (max-width: 980px){
  .ls-two-col{
    grid-template-columns: 1fr;
  }
  .ls-cards{
    grid-template-columns: 1fr;
  }
  .ls-hero .ls-container{
    flex-direction: column;
    align-items: flex-start;
  }
  .ls-hero h1{
    font-size: 1.8rem;
  }
}

/* Printing friendly (minimal) */
@media print{
  .ls-cta, .ls-hero{ color: #000; background: #fff; }
}


        