/* ======================================================
   TRUE NORTH LENS – MAIN STYLESHEET
   Clean, cinematic, landscape & wildlife focused
   ====================================================== */

/* ---------- RESET / BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background-color: #0e1a1f; /* deep blue-grey */
  color: #eaeaea;
  line-height: 1.6;
}

/* ---------- LINKS ---------- */
a {
  color: #eaeaea;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ======================================================
   NAVBAR
   ====================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 26, 31, 0.95);
  backdrop-filter: blur(6px);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- LOGO ---------- */
.brand img {
  height: 60px;           /* FINAL LOGO SIZE */
  max-height: 60px;
  width: auto;
  display: block;
}

/* ---------- NAV LINKS ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #7fb3c8;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- MOBILE TOGGLE (inactive for now) ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #eaeaea;
  cursor: pointer;
}

/* ======================================================
   STRIPE BAR (Nature themed)
   ====================================================== */

.nature-stripe-bar {
  display: flex;
  height: 6px;
  width: 100%;
}

.stripe {
  flex: 1;
}

.stripe.moss  { background: #5f7d6a; }
.stripe.slate { background: #2f4a56; }
.stripe.sky   { background: #7fb3c8; }

/* ======================================================
   PAGE HEADER / HERO
   ====================================================== */

.page-header {
  height: 75vh;
  background:
    linear-gradient(
      rgba(14, 26, 31, 0.6),
      rgba(14, 26, 31, 0.8)
    ),
    url("../images/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-header h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.15rem;
  color: #cfd8dc;
  margin-bottom: 25px;
}

/* ---------- PRIMARY BUTTON ---------- */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #7fb3c8;
  color: #0e1a1f;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #9ac7d8;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ======================================================
   FEATURES / CARDS
   ====================================================== */

.features-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #081217;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h2 {
  font-size: 1.3rem;
  margin: 15px;
}

.card p {
  font-size: 0.95rem;
  color: #cfd8dc;
  margin: 0 15px 15px;
}

/* ---------- SMALL BUTTON ---------- */
.btn-small {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 8px 18px;
  background: #2f4a56;
  color: #eaeaea;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-small:hover {
  background: #3f6372;
  text-decoration: none;
}

/* ======================================================
   FOOTER
   ====================================================== */

.footer {
  background: #081217;
  padding: 30px 20px;
  text-align: center;
  color: #9fb3bd;
  font-size: 0.9rem;
}

.footer a {
  color: #9fb3bd;
}

.footer a:hover {
  color: #ffffff;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 900px) {
  .brand img {
    height: 32px;
  }

  .nav-links {
    gap: 16px;
  }

  .page-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .brand img {
    height: 30px;
  }

  .page-header {
    height: 65vh;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}

/* ======================================================
   GALLERY
   ====================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
