/*
Theme Name: Neil.net
Theme URI: https://neilhillman.net
Author: Neil Hillman
Author URI: https://neilhillman.net
Description: Personal theme for online resume
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neilnet
*/

/* ------------------------------------------------------------------
   Fonts
------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Space+Mono:wght@700&display=swap');

/* ------------------------------------------------------------------
   Minimal Bootstrap subset (only what this page needs)
------------------------------------------------------------------ */

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* Container widths */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* Column sizing */
.col-12 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-lg-9 {
    width: 75%;
  }
}

/* ------------------------------------------------------------------
   Navbar
------------------------------------------------------------------ */

.navbar {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  margin-right: 1rem;
  text-decoration: none;
}

.navbar-brand img {
  max-height: 100px;
  height: auto;
  display: block;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ml-auto {
  margin-left: auto;
}

.nav-item {
  margin-left: 1rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: rgba(0,0,0,0.5);
}

.nav-item.active .nav-link,
.nav-link:hover {
  color: rgba(0,0,0,0.9);
}

/* Screen-reader utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  white-space: nowrap;
}

/* ------------------------------------------------------------------
   Your Original Theme Styles (spacing corrected)
------------------------------------------------------------------ */

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

img {
  height: auto;
}

ul {
  list-style-type: square;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Space Mono', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

span.lo_lite,
span.lo_lite a {
  color: #777;
}

span.lo_lite_field {
  display: inline-block;
  color: #777;
  background-color: #f3f3f3;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 1px 7px;
}

.wp-block-separator {
  border-top: 1px solid #ddd;
  border-bottom: 0;
}

a.copy-the-code-shortcode {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 5px;
  padding: 1px 7px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 1px 1px 1px #ccc;
}
