@charset "UTF-8";

/*==================================================
  Root Variables & Base Layout Setup
==================================================*/
:root {
  --font-body: 'owners', system-ui, -apple-system, 'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
  --font-headings: 'owners', system-ui, -apple-system, 'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
  --font-display: 'pressio', system-ui, -apple-system, 'Segoe UI', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
  --section-pad: 60px 20px;
	  --gap-sm: 12px;
  --gap-md: 24px;
  --pad-sm: 20px;
  --pad-lg: 60px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none !important;
    transform: none !important;
  }
}

.emoji-header {
  font-size: 36px;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1;
}


/*==================================================
  Base Typography & Font Smoothing
==================================================*/
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background-color: #f2f2f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*==================================================
  Typography Elements
==================================================*/
p {
  font-weight: 500;
  text-align: justify;
  margin-bottom: 20px;
}

h1, h2, h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/*==================================================
  Headings (Hero / Section Titles)
==================================================*/
.hero_header,
.hero_header_blue {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 6vw, 42px);
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: center;
}

.hero_header { color: #fff; }
.hero_header_blue { color: #0a2438; }

.tagline {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
  margin: 10px 0 20px;
  text-align: center;
}

/*==================================================
  Layout Containers
==================================================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-24 { gap: 24px; }
.mb-32 { margin-bottom: 32px; }

/*==================================================
  Image Styling
==================================================*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*==================================================
  Header & Navigation
==================================================*/

header {
  background: #0a2438;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Logo Image */
.logo-img {
  max-height: 60px;
  width: auto;
}

/* Hamburger Icon Button */
.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1100; /* Ensure toggle stays on top of menu */
}

/* Hidden by default */
header nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: rgba(10, 36, 56, 0.9); /* 90% opacity background */
  position: fixed;
  top: 70px; /* below sticky header */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px); /* Fill remaining height below header */
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mobile Menu Open State */
header nav.open {
  display: flex;
  opacity: 1;
}

/* Navigation List Layout */
nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 0;
  gap: 16px;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Each Link Container */
nav ul li {
  width: 100%;
  text-align: center;
}

/* Individual Links */
nav ul li a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* Hover and Focus Effects */
nav ul li a:hover,
nav ul li a:focus {
  background-color: #2C9AB7;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Prevent background scroll when nav is open */
body.nav-open {
  overflow: hidden;
}


/*==================================================
  Hero Section
==================================================*/
.hero {
  background: linear-gradient(rgba(10, 36, 56, 0.7), rgba(10, 36, 56, 0.7)),
              url("https://www.natebrantley.com/img/stock/AdobeStock_1166789728.jpeg");
  background-size: cover;
  background-position: center top; /* Adjust focal point for mobile */
  background-repeat: no-repeat;
  background-attachment: scroll; /* Prevent jank from parallax on mobile */
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}


/*==================================================
  About Section
==================================================*/
.about {
  background: #fff;
  padding: var(--section-pad);
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 30px;
}

.about-image img,
.about-headshot {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*==================================================
  Form Styling
==================================================*/
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.form-group {
  margin-bottom: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/*==================================================
  Banner (Parallax Style Section)
==================================================*/
.banner {
  background: linear-gradient(rgba(10, 36, 56, 0.6), rgba(10, 36, 56, 0.6)),
              url("https://www.natebrantley.com/img/stock/AdobeStock_1129471223.jpeg") center/cover no-repeat fixed;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 100px;
  color: #fff;
  text-align: right;
}

.parallax_description {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 16px auto 0;
}

/*==================================================
  Market Commentary Navigation & Layout
==================================================*/
.nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.nav-grid a {
  background: #0a2438;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-grid a:hover {
  background: #2C9AB7;
}

.content-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-header {
  font-family: var(--font-headings);
  font-size: 24px;
  text-transform: uppercase;
  color: #0a2438;
  border-left: 6px solid #2C9AB7;
  padding-left: 16px;
  margin-bottom: 30px;
}

.insight {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insight h2 {
  font-family: var(--font-headings);
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #0a2438;
}

.insight p {
  font-size: 16px;
  line-height: 1.6;
}


/*==================================================
  Footer Banner Section – Refined for Clarity & Impact
==================================================*/
.footer_banner {
  background: linear-gradient(145deg, #0a2438, #183d59);
  padding: clamp(40px, 8vw, 80px) 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text content refinement */
.footer_banner h2 {
  font-size: clamp(26px, 6vw, 40px);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer_banner p {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.95;
}

/* Image styling if included */
.footer_banner img {
  display: block;
  margin: 24px auto 0;
  max-width: 100%;
  height: auto;
}



footer {
  background: #fff;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  color: #fff;
}

.footer_column {
  width: 90%;
  max-width: 800px;
  padding: 0 20px;
}

.footer_column h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: #0a2438;
  margin-bottom: 15px;
}

/*==================================================
  Utility & Reusable Elements
==================================================*/
.button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 3px solid #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.button:hover,
.button:focus {
  background: #fff;
  color: #0a2438;
  cursor: pointer;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cards img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.copyright {
  text-align: center;
  padding: 20px;
  background-color: #717070;
  color: #fff;
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
}

/*==================================================
  Accessibility & Animations
==================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden { display: none; }

/*==================================================
  MOBILE & TABLET (≤767px) — Optimized
==================================================*/
@media screen and (max-width: 767px) {
  header {
    height: 70px;
    background-color: #0a2438;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
  }

  header nav {
    display: none;
    background-color: rgba(10, 36, 56, 0.95);
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(6px);
  }

  header nav.open {
    display: flex;
    flex-direction: column;
  }

  header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li a {
    padding: 14px 0;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
  }
}


/* Smaller Devices (≤600px) */
@media (max-width: 600px) {
  .social-icons {
    gap: 8px;
  }

  .logo-img {
    max-width: 140px;
  }

  .nav-toggle {
    font-size: 28px;
  }
}

/* Mobile header fix */
html, body {
  margin: 0;
  padding: 0;
}

header {
  padding-top: env(safe-area-inset-top);
  background-color: #0a2438;
}

.logo-img {
  display: block;
  margin: 0;
  padding: 0;
  max-height: 60px;
  object-fit: contain;
}
