/*
Theme Name: Nevola Ventures
Theme URI: https://nevolaventures.com/
Author: Michael Stevens
Author URI: https://nevolaventures.com/
Description: Custom theme for Nevola Ventures.
Version: 1.6
*/


body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f9f9f9;
  color: #111;
}

a {
  color: #1e3a8a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* === HEADER === */
.site-header {
  background-color: #1c2f4a;
  padding: 1rem 2rem;
  position: relative;
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 150px;
  height: auto;
  width: auto;
  display: block;
}


/* === NAVIGATION === */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: #60a5fa;
}


.hero {
  background: linear-gradient(to right, #1e3a8a, #2b3f73);
  color: white;
  padding: 6rem 2rem;
  margin-top: 0; /* <-- fix in case something overrides it */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: white;
  color: #1e3a8a;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.ventures {
  background: #fff;
  padding: 4rem 2rem;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.venture-card {
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.site-footer {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.site-footer a {
  color: #93c5fd;
}
