/*
   Template base: adapted styling inspired by HTML5 UP 'Astral' demo
*/

:root{
  --accent:#2b7a78;
  --accent-2:#17252a;
  --muted:#666;
  --max-width:1100px;
  --radius:6px;
  font-size:16px;
}

*{box-sizing:border-box}
body{
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  margin:0;
  color:#222;
  background:#f8f9fa;
  line-height:1.6;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:1.25rem;
}

.site-header{
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  color:white;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.site-header h1{margin:0;padding:0.6rem 0;font-size:1.25rem}
.site-header nav a{
  color: #fff;
  margin-left: 0.75rem;
  text-decoration:none;
  padding:0.5rem 0.5rem;
  opacity:.95;
}
.site-header nav a.active{font-weight:700;text-decoration:underline}

.hero{
  padding:1.25rem 0;
  display:flex;
  gap:1.5rem;
  align-items:center;
}
.hero-image{
  max-width:420px;
  width:100%;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.quicklinks{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
  margin-top:1rem;
}
.card{
  background:white;
  padding:1rem;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(15,15,15,.04);
}
.btn{
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:.5rem .75rem;
  border-radius:5px;
  text-decoration:none;
}

.article-image{
  width:100%;
  max-height:360px;
  object-fit:cover;
  margin-top:0.5rem;
  border-radius:6px;
}

.site-footer{
  background:#222;
  color:#ddd;
  padding:1rem 0;
  margin-top:2rem;
}
.site-footer a{color:#bde;}

.contact-form{
  display:grid;
  gap:.5rem;
  max-width:600px;
}
.contact-form input,
.contact-form textarea{
  padding:.6rem;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:1rem;
}
.note{color:var(--muted);margin-top:.5rem}

.clock-label{margin-top:1rem;font-weight:600}

@media (max-width:700px){
  .hero{flex-direction:column}
  .site-header .container{flex-direction:column;gap:.5rem;align-items:flex-start}
}