/*
  styles.css
  Clean, responsive landing page styling.
  Replace the hero image below when you capture the platform/gazebo photo.

  -- HERO IMAGE --
  In the .hero-media rule, replace the background-image URL with your image path:
  background-image: url("images/grasslands-platform.jpg");
*/

:root{
  --bg: #0f1115;
  --bg-2: #141824;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --soft: rgba(255,255,255,0.12);
  --accent: rgba(255,255,255,0.88);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg), #0b0d12 60%, #07080c);
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }
code{ font-family: var(--mono); font-size: 0.95em; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: -999px;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
}
.skip-link:focus{
  left: 1rem;
  top: 1rem;
  z-index: 999;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,12,16,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 260px;
}
.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  font-size: 1.2rem;
}
.brand-title{
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-subtitle{
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  font-size: .95rem;
  color: var(--muted);
  padding: .45rem .6rem;
  border-radius: 12px;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-cta{
  color: var(--text) !important;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-media{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,12,16,0.10), rgba(10,12,16,0.55)),
    url("images/hero-owls-hawks.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content{
  position: relative;
  padding: 4.5rem 0 4rem;
}

.hero-card{
  width: min(740px, 100%);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(20, 24, 36, 0.56);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(12px);
}

.kicker{
  margin: 0 0 .6rem 0;
  font-size: .9rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

h1{
  margin: 0 0 .8rem 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: .2px;
}

.lead{
  margin: 0 0 1.25rem 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.hero-actions{
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1rem;
}

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.10);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .2px;
}
.button:hover{ background: rgba(255,255,255,0.13); }

.button-ghost{
  background: transparent;
  color: rgba(255,255,255,0.86);
}

.micro{
  margin: .8rem 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}

.section{
  padding: 4rem 0;
}

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 60%);
}

.grid-two{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: start;
}

.section-head{
  margin-bottom: 1.5rem;
}
h2{
  margin: 0 0 .5rem 0;
  font-size: 1.7rem;
  letter-spacing: .2px;
}
.subhead{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.panel{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.25rem 1.15rem;
}

h3{
  margin: 0 0 .7rem 0;
  font-size: 1.1rem;
}
.checklist{
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.checklist li{ margin: .35rem 0; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.25rem 1.1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.card p{
  margin: 0 0 .75rem 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.bullets{
  margin: .5rem 0 0 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
}
.bullets li{ margin: .25rem 0; }

.timeline{
  display: grid;
  gap: 1rem;
}
.timeline-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .9rem;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: .4rem;
  background: rgba(255,255,255,0.70);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}
.timeline-item p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.quote-card{
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}
.quote{
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}
.quote-sig{
  margin: .9rem 0 0;
  color: rgba(255,255,255,0.72);
}

.copybox{
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1rem;
  overflow: auto;
}
pre{
  margin: 0;
  font-family: var(--mono);
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  background: rgba(10,12,16,0.55);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.footer-left, .footer-right{
  margin: 0;
  color: rgba(255,255,255,0.70);
}

/* Gallery Section */
.gallery-section{
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gallery-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,12,16,0.35), rgba(10,12,16,0.92)),
    url("images/gallery-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.02);
  opacity: 1;
}

.gallery-section .container{
  position: relative;
}

.gallery-head{
  margin-bottom: 1.5rem;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item{
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.25);
}

.gallery-item--wide{
  grid-column: span 6;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Make the wide ones feel more cinematic */
.gallery-item--wide img{
  aspect-ratio: 16 / 9;
}

/* Responsive */
@media (max-width: 940px){
  .gallery-item,
  .gallery-item--wide{
    grid-column: span 12;
  }
  .gallery-item img,
  .gallery-item--wide img{
    aspect-ratio: 16 / 10;
  }
}

.section {
  scroll-margin-top: 90px; /* adjust to your header height */
}

html {
  scroll-behavior: smooth;
}




/* Responsive */
@media (max-width: 940px){
  .cards{ grid-template-columns: 1fr; }
  .grid-two{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}

@media (max-width: 560px){
  .hero{ min-height: 76vh; }
  .hero-card{ padding: 1.35rem 1.1rem; }
  .nav{ gap: .4rem; }
  .nav a{ font-size: .92rem; }
}
