/* =========================================================
   Silver Creek Lakes Club — Light / Blog / Outdoor Journal
   Header + Footer: Dark Green, Larger, Phone Prominent
   ========================================================= */

:root{
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #111214;
  --muted: #5b616a;
  --line: #e7e2d8;

  --accent: #1e5b45;   /* pine */
  --accent2: #b07a2a;  /* warm ochre */
  --soft: #f2efe8;     /* warm light */
  --shadow: 0 18px 40px rgba(17,18,20,.10);

  /* Dark header/footer */
  --deep: #0f3d2e;     /* dark green */
  --deep2: #0b2f24;    /* darker green */
  --deepText: rgba(255,255,255,.92);
  --deepMuted: rgba(255,255,255,.72);
  --deepLine: rgba(255,255,255,.18);

  --radius: 16px;
  --radius-lg: 22px;

  /* Widen content to reduce wasted space */
  --container: 1320px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

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

.skip-link{
  position:absolute;
  left:-999px; top:0;
  background: var(--accent);
  color:#fff;
  padding:.6rem .9rem;
  border-radius: 10px;
  z-index:9999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

/* ---------------- Header (bigger + dark) ---------------- */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, var(--deep), var(--deep2));
  border-bottom: 1px solid var(--deepLine);
}

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

.brand{
  display:flex;
  align-items:center;
  gap: 1rem;
}
.brand-mark{ width:40px; height:40px; }
.brand-text{ display:flex; flex-direction:column; }
.brand-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 1.35rem; /* bigger */
  color: #fff;
}
.brand-tag{
  font-size: 1.02rem; /* bigger */
  color: var(--deepMuted);
}

.header-right{
  display:flex;
  align-items:center;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* Phone in header */
.header-phone{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.65rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--deepLine);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 850;
  letter-spacing: .2px;
}
.header-phone:hover{
  background: rgba(255,255,255,.14);
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:.35rem;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav-link{
  padding:.65rem .95rem;         /* bigger */
  border-radius: 999px;
  color: var(--deepMuted);
  border: 1px solid transparent;
  font-weight: 800;              /* bolder */
  font-size: 1.02rem;            /* bigger */
}
.nav-link:hover{
  color: #fff;
  border-color: var(--deepLine);
  background: rgba(255,255,255,.10);
}
.nav-link.active{
  color: #0b2f24;
  border-color: rgba(255,255,255,.0);
  background: rgba(255,255,255,.88);
}

/* ---------------- Typography ---------------- */
h1,h2,h3{
  margin: 0 0 .7rem;
  line-height: 1.15;
}
h1{
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  letter-spacing: -.6px;
}
h2{
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  letter-spacing: -.35px;
}
h3{ font-size: 1.12rem; }

.lead{
  font-size: 1.08rem;
  color: #2a2d32;
  margin: 0 0 1.2rem;
}
.muted{ color: var(--muted); }
.small{ font-size: .93rem; }

.kicker{
  display:inline-block;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .86rem;
  color: var(--muted);
  margin: 0 0 .55rem;
}

hr.rule{
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.2rem 0;
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.75rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 750;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(17,18,20,.10);
  border-color: rgba(17,18,20,.15);
}
.btn.primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover{
  box-shadow: 0 14px 30px rgba(30,91,69,.18);
}

/* ---------------- Sections ---------------- */
.section{ padding: 3.8rem 0; }
.section.soft{
  background: linear-gradient(180deg, rgba(242,239,232,.9), rgba(242,239,232,.55));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-hero{
  padding: 2.8rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

/* ---------------- Hero ---------------- */
.hero{
  padding: 2.2rem 0 3.2rem;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2rem;
  align-items: center;
}
@media (max-width: 950px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--soft);
}
.hero-media img{
  width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 950px){
  .hero-media img{ height: 360px; }
}

.hero-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
  box-shadow: 0 10px 26px rgba(17,18,20,.06);
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top: 1rem;
}
.hero-badges{
  list-style:none;
  padding:0;
  margin: 1.1rem 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.hero-badges li{
  padding:.33rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(242,239,232,.75);
  color: #2a2d32;
  font-size: .92rem;
}

/* ---------------- Layout blocks ---------------- */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr; /* bigger cards */
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; }
}

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 10px 26px rgba(17,18,20,.06);
}

.info-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
  margin-top: 1.2rem;
}
@media (max-width: 900px){
  .info-grid{ grid-template-columns: 1fr; }
}
.info-card{
  background: rgba(242,239,232,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .95rem 1rem;
}

/* ---------------- Photos ---------------- */
.photo-stack{
  display:grid;
  gap: 1rem;
}
.photo{
  margin:0;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: 0 10px 26px rgba(17,18,20,.08);
}
.photo img{
  width: auto%;
  height: 80%;
  object-fit: cover;
  object-position: center; /* adjust if needed */
   object-position: center 35%;
}
.photo figcaption{
  padding: .75rem .95rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .93rem;
}

/* ---------------- Blog / Reports ---------------- */
.section-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.post-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.2rem;
  align-items: start;
}
@media (max-width: 950px){
  .post-grid{ grid-template-columns: 1fr; }
}

.featured-post{
  display:grid;
  gap: .9rem;
}
.featured-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.featured-media img{
  width:100%;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 950px){
  .featured-media img{ height: 280px; }
}

.post-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 26px rgba(17,18,20,.06);
}
.post-meta{
  margin: 0 0 .35rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--muted);
}
.post-tags{
  display:flex;
  flex-wrap: wrap;
  gap:.5rem;
  margin-top: .8rem;
}
.tag{
  font-size: .88rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(242,239,232,.75);
  color: #2a2d32;
}

.sidebar{
  display:grid;
  gap: 1rem;
}
.bullets{
  margin: .6rem 0 0;
  padding-left: 1.1rem;
}
.bullets li{ margin: .3rem 0; }

/* Fishing report single post layout */
.report-shell{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items:start;
}
@media (max-width: 950px){
  .report-shell{ grid-template-columns: 1fr; }
}
.report-hero{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.report-hero img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (max-width: 950px){
  .report-hero img{ height: 300px; }
}
.report-body p{
  margin: 0 0 1rem;
}
.report-body .highlight{
  background: rgba(30,91,69,.08);
  border-left: 4px solid rgba(30,91,69,.55);
  padding: .9rem 1rem;
  border-radius: 12px;
}
.keyline{
  display:grid;
  gap:.5rem;
}
.keyline .row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(242,239,232,.65);
}
.keyline .row strong{ font-weight: 850; }

/* ---------------- Guides ---------------- */
/* ---------------- Guides (two-photo layout) ---------------- */
/* ---------------- Guides (two-photo STACKED layout) ---------------- */
.guide-grid{ display:grid; gap: 1.25rem; }

.guide-card{
  display:grid;
  grid-template-columns: 360px 1fr; /* left photos + right text */
  gap: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(17,18,20,.07);
}

@media (max-width: 950px){
  .guide-card{ grid-template-columns: 1fr; }
}

/* Left column: two photos stacked vertically */
.guide-photos{
  display:grid;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 10px;               /* gives a nice border breathing room */
  background: var(--soft);
}

.guide-photos img{
  width:100%;
  height: 240px;               /* KEY: don’t use 660px */
  object-fit:cover;
  object-position: center 35%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

@media (max-width: 480px){
  .guide-photos img{
    height: 210px;
  }
}

.guide-body{ padding: 1.15rem 1.2rem 1.25rem; }

.pill-row{
  display:flex;
  flex-wrap: wrap;
  gap:.5rem;
  margin-top: .9rem;
}

.pill{
  font-size: .9rem;
  padding: .32rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(242,239,232,.75);
}

/* ---------------- Footer (bigger + dark) ---------------- */
.site-footer{
  padding: 2.8rem 0; /* bigger */
  border-top: 1px solid var(--deepLine);
  background: linear-gradient(180deg, var(--deep2), var(--deep));
  color: var(--deepText);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-title{
  font-weight: 950;
  font-size: 1.25rem; /* bigger */
  color: #fff;
}
.footer-links{
  display:flex;
  gap: .95rem;
  flex-wrap: wrap;
}
.footer-links a{
  color: var(--deepMuted);
  border-bottom: 1px solid transparent;
  font-weight: 750;
}
.footer-links a:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.55);
}
.footer-phone{
  margin-top: .55rem;
  color: var(--deepMuted);
}

code{
  padding: .12rem .35rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(242,239,232,.8);
}

/* ===== Mobile fixes for Guides two-photo layout ===== */
@media (max-width: 900px){
  .guide-card{
    grid-template-columns: 1fr;  /* stack */
  }

  .guide-photos{
    grid-template-rows: auto auto; /* avoid 1fr collapsing */
  }

  .guide-photos img{
    height: 240px;     /* consistent size on mobile */
    min-height: 240px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px){
  .guide-photos img{
    height: 210px;
    min-height: 210px;
  }
}
