/* === General Reset === */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

html {
  overflow-y: scroll;
}

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(6px);
  background-color: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #e0e0e0 !important;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #00b36b !important; /* Ozark Summit green */
}

/* === Hero Section === */
header {
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,50,0,0.7) 100%), url('hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  padding: 6rem 1rem;
}

header .btn-success {
  background-color: #00b36b;
  border: none;
  transition: background-color 0.2s ease;
}

header .btn-success:hover {
  background-color: #009c5e;
}

/* === Section Styling === */
section {
  padding: 4rem 1rem;
}

section.bg-light {
  background-color: #f9f9f9;
}

h1, h2, h3 {
  font-weight: 600;
}

p {
  line-height: 1.6;
}

/* === Icon Highlights === */
.bi {
  transition: transform 0.2s ease;
}

.bi:hover {
  transform: scale(1.1);
}

/* === CTA Section === */
section.bg-light .btn-dark {
  background-color: #111;
  border: none;
  transition: background-color 0.2s ease;
}

section.bg-light .btn-dark:hover {
  background-color: #00b36b;
  color: #fff;
}

/* === Footer === */
footer {
  background-color: #000;
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

footer p {
  margin: 0;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  color: #00b36b; /* your Summit green accent */
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  header {
    padding: 4rem 1rem;
  }

  h1.display-5 {
    font-size: 1.9rem;
  }
}
