/* ============================================
   Josh Vignona's Blog — Clean Static CSS
   Rebuilt from GoDaddy Website Builder export.
   All values measured from live site (2026-08-07)
   at 1280 / 1024 / 768 / 390 / 1600 / 1920 viewports.
   ============================================ */

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #919191;
  font-family: "Open Sans", arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GoDaddy Grid: spans container (margin -24) with 12-col cells */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -24px;
}

/* Centered content column: 66.6667% grid cell (GoDaddy 8-col / 12-col) */
.column {
  flex: 0 0 66.6667%;
  width: 66.6667%;
  padding: 0 24px;
}

.grid--about .column--image {
  flex: 0 0 33.3333%;
  width: 33.3333%;
}

.grid--about .column--text {
  flex: 0 0 66.6667%;
  width: 66.6667%;
}

.section {
  padding: 40px 0;
}

/* --- Header / Nav (GoDaddy Header-9: logo centered, links below) --- */
.site-header {
  position: relative;
  background: #000;
}

.site-header__inner {
  padding: 32px 0;
}

.header-logo-row {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.site-title {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #e2e2e2;
  color: #e2e2e2;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.031em;
}

.site-title:hover {
  color: #fff;
  border-color: #fff;
}

.header-links-row {
  padding: 24px 0;
}

.main-nav {
  text-align: center;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: block;
}

.main-nav li + li {
  margin-left: 32px;
}

.main-nav a {
  display: block;
  padding: 6px;
  margin: -6px;
  color: #e2e2e2;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2.996px;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a[aria-current="page"] {
  padding: 0 0 4px;
  margin: 0 0 -5px;
  border-bottom: 1px solid #5e5e5e;
}

/* --- Hero Section (image left, text panel right) --- */
.hero-section {
  background: #000;
  margin-bottom: 40px;
}

.hero {
  display: flex;
}

.hero__image {
  flex: 1 1 auto;
  min-width: 0;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 799 / 1000;
  object-fit: cover;
}

.hero__content {
  flex: 0 0 388px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #111;
}

.hero__content h1 {
  color: #f1f1f1;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 1.012px;
  text-align: center;
  margin: 0 0 16px;
}

/* --- Content Sections (intro paragraphs etc.) --- */
.section p {
  margin: 0 0 24px;
}

.section p:last-child {
  margin-bottom: 0;
}

/* --- About Page (image left, text right) --- */
.grid--about .column--image img {
  width: 100%;
}

/* --- In The News --- */
.news-heading {
  display: inline-block;
  font-family: "Open Sans", arial, sans-serif;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1.44px;
  color: #e2e2e2;
  margin: 0 0 24px;
  text-align: center;
}

.grid--news .column {
  text-align: center;
}

.news-list ul {
  list-style: disc;
  margin: 0 16px;
  padding-left: 20.8px;
  text-align: start;
}

.news-list li {
  line-height: 24px;
}

.news-list a {
  color: #fff;
  text-decoration: underline;
}

.news-list a:hover {
  color: #e2e2e2;
}

/* --- Blog Index Cards --- */
.blog-card {
  display: block;
  padding: 0 0 44px;
  margin: 0 0 40px;
}

.blog-card:last-child {
  margin-bottom: 0;
}

.blog-card .blog-card__date {
  font-size: 14px;
  line-height: normal;
  color: #969696;
  margin: 0 0 16px;
}

.blog-card h2 {
  font-size: 22px;
  line-height: 24.75px;
  letter-spacing: 0.99px;
  color: #e2e2e2;
  margin: 0 0 16px;
}

.blog-card .blog-card__excerpt {
  font-size: 16px;
  color: #919191;
  margin: 0 0 16px;
}

.blog-card__more {
  color: #fff;
  line-height: normal;
}

.blog-card:hover .blog-card__more {
  text-decoration: underline;
}

/* --- Blog Post Pages (dark theme) --- */
.post-shell {
  padding: 40px 0;
  background: #000;
}

.post-panel {
  padding: 24px 0 40px;
}

.post-grid {
  display: flex;
  padding: 0 24px;
}

.post-main {
  flex: 0 0 66.6667%;
  padding: 0 40px;
  margin: 0 32px 16px 0;
}

.post-back {
  display: inline-block;
  color: #e2e2e2;
  font-size: 16px;
  line-height: normal;
  margin: 0 0 40px;
}

.post-back svg {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 4px;
}

.post-back:hover {
  text-decoration: underline;
}

.post-main h1 {
  color: #e2e2e2;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0.992px;
  margin: 0 0 8px;
}

.post-date {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #969696;
  margin: 0 0 32px;
}

.post-body p {
  color: #919191;
  margin: 0 0 10px;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-share {
  display: flex;
  align-items: center;
  margin: 24px -8px 0 0;
}

.post-share p {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #e2e2e2;
  margin: 0 24px 0 0;
}

.post-share a {
  display: block;
  margin-right: 8px;
}

.post-share svg {
  width: 28px;
  height: 28px;
  display: block;
}

.post-share .share-facebook {
  color: #3b5998;
}

.post-share .share-twitter {
  color: #e2e2e2;
}

.post-sidebar {
  flex: 1;
  padding-right: 40px;
}

.post-sidebar h2 {
  font-size: 22px;
  line-height: 27.5px;
  letter-spacing: 0.99px;
  color: #e2e2e2;
  margin: 0 0 24px;
}

.post-sidebar ul {
  list-style: none;
}

.post-sidebar li {
  margin: 0 0 24px;
}

.post-sidebar li:last-child {
  margin-bottom: 0;
}

.post-sidebar a {
  display: block;
  color: #e2e2e2;
  font-size: 16px;
  line-height: 24px;
}

.post-sidebar a:hover {
  text-decoration: underline;
}

.post-sidebar .recent-date {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 21px;
  color: #969696;
}

/* --- Contact Form --- */
.contact-heading {
  font-family: "Open Sans", arial, sans-serif;
  font-size: 22px;
  line-height: 27.5px;
  letter-spacing: 0.99px;
  color: #e2e2e2;
  margin: 0 0 24px;
}

.contact-form .form-group {
  position: relative;
  padding-bottom: 24px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 23px 8px 8px;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  color: #919191;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.contact-form textarea {
  width: 100%;
  min-height: 146px;
  padding: 16px 8px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  color: #919191;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.contact-form .form-group label {
  position: absolute;
  top: 16px;
  left: 8px;
  color: #919191;
  font-size: 16px;
  line-height: normal;
  pointer-events: none;
  transition: top .15s ease, font-size .15s ease;
}

.contact-form .form-group input:focus ~ label,
.contact-form .form-group input:not(:placeholder-shown) ~ label,
.contact-form .form-group textarea:focus ~ label,
.contact-form .form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 12px;
}

.form-submit {
  width: 100%;
  height: 56px;
  padding: 8px 32px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #303030;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.996px;
  text-transform: uppercase;
}

.form-submit:hover {
  background: #e2e2e2;
}

.form-note {
  padding: 8px 0 16px;
  font-size: 12px;
  line-height: 18px;
  color: #969696;
  text-align: center;
}

.form-note a {
  color: #fff;
  text-decoration: underline;
}

/* --- Social Links (48px circles; equivalent of live HTML-embed widget) --- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
}

.social-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.social-btn i,
.social-btn svg {
  width: 18px;
  height: 18px;
  line-height: normal;
}

/* Tooltips */
.social-btn::after,
.social-btn::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s;
  pointer-events: none;
}

.social-btn::after {
  content: attr(data-tooltip);
  bottom: 100%;
  margin-bottom: 6px;
  padding: 4px 10px;
  background: #1a1a2e;
  color: #fff;
  font-size: 12.5px;
  white-space: nowrap;
  border-radius: 5px;
}

.social-btn::before {
  content: '';
  bottom: 100%;
  margin-bottom: 0;
  border: 5px solid transparent;
  border-top-color: #1a1a2e;
}

.social-btn:hover::after,
.social-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

.social-btn:hover::after {
  transform: translateX(-50%) translateY(-4px);
}

.social-btn:hover::before {
  transform: translateX(-50%) translateY(-2px);
}

/* Social brand colors */
.social-links a[href*="linkedin"]   { background-color: #0A66C2; }
.social-links a[href*="linktr"]     { background-color: #43E660; }
.social-links a[href*="youtube"]    { background-color: #FF0000; }
.social-links a[href*="x.com"],
.social-links a[href*="twitter"]    { background-color: #666; }
.social-links a[href*="medium"]     { background-color: #666; }
.social-links a[href*="crunchbase"] { background-color: #0288D1; }
.social-links a[href*="issuu"]      { background-color: #F36E21; }
.social-links a[href*="f6s"]        { background-color: #f16c4f; }

/* --- Footer --- */
.site-footer {
  padding: 40px 0;
  background: #000;
  text-align: center;
}

.site-footer p {
  display: inline-block;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.996px;
  color: #969696;
  text-align: center;
  text-transform: uppercase;
}

/* --- Mobile Navigation (hidden on desktop) --- */
.mobile-menu-btn {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 56px 0 0;
  background: #000;
  transform: translateX(100%);
  transition: transform .25s ease;
}

.mobile-nav.open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  min-height: 62px;
  color: #e2e2e2;
  font-size: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav__links a:hover,
.mobile-nav__links a[aria-current="page"] {
  color: #fff;
}

/* ============================================
   Responsive Breakpoints
   (measured live: 1600 / 1280 / 1024 / 768 / 767 / 390)
   ============================================ */

/* --- ≥1600: container 1280, bigger header/hero --- */
@media (min-width: 1600px) {
  .container {
    max-width: 1280px;
  }

  .site-title {
    font-size: 24px;
  }

  .main-nav a {
    font-size: 16px;
    letter-spacing: 3.424px;
  }

  .hero__image {
    flex: 0 0 799px; /* = natural 799px width: 1:1 on the 1x source, exactly 2:1 on the 2x */
  }

  .hero__content {
    flex: 1;
  }

  .hero__content h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 1.104px;
  }
}

/* --- 1024–1279: container = viewport − 40 --- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container {
    max-width: none;
    width: calc(100% - 40px);
  }
}

/* --- 768–1023: container full width; grid cell 100%; hero panel 360 --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: none;
  }

  .column {
    flex: 0 0 100%;
    width: 100%;
  }

  .hero__content {
    flex: 0 0 360px;
  }

  .hero__content h1 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0.874px;
  }
}

/* --- ≤767: mobile layout --- */
@media (max-width: 767px) {
  .section {
    padding: 32px 0;
  }

  .container {
    max-width: none;
  }

  .grid {
    margin: 0 -12px;
  }

  .column {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 12px;
  }

  .grid--about .column--image,
  .grid--about .column--text {
    flex: 0 0 100%;
    width: 100%;
  }

  .grid--about .column--image img {
    margin: 0 0 32px;
  }

  /* Mobile header: hamburger left, centered logo */
  .site-header__inner {
    padding: 0;
  }

  .header-logo-row {
    padding: 0;
    min-height: 88px;
    align-items: center;
  }

  .site-title {
    font-size: 22px;
    padding: 8px 16px;
  }

  .main-nav {
    display: none;
  }

  .header-links-row {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
  }

  /* Hero stacks */
  .hero {
    flex-direction: column;
  }

  .hero__content {
    flex: none;
    width: 100%;
    padding: 56px 24px;
  }

  .hero__content h1 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.736px;
  }

  .hero-section {
    margin-bottom: 24px;
  }

  /* Post page stacks */
  .post-panel {
    padding: 32px 0;
  }

  .post-grid {
    flex-direction: column;
  }

  .post-main {
    flex: none;
    width: 100%;
    padding: 32px 0;
    margin: 0 0 16px;
  }

  .post-main h1 {
    font-size: 28px;
    line-height: 31.5px;
    letter-spacing: 0.868px;
  }

  .post-date {
    font-size: 16px;
    line-height: 22px;
  }

  .post-sidebar {
    width: 100%;
    padding-right: 0;
  }

  .site-footer {
    padding: 32px 0;
  }

  .site-footer p {
    margin: 32px 0 0;
  }

  /* Blog card padding at mobile (measured live) */
  .blog-card {
    padding: 0 0 40px;
  }

  /* In The News heading at mobile (measured live) */
  .news-heading {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 1.26px;
  }
}

/* --- Skip link (visually hidden unless focused) --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Skip-link target: no focus ring on the jump target */
#main:focus {
  outline: none;
}

/* --- Page headings (About / Blog index) --- */
.page-heading {
  font-family: "Open Sans", arial, sans-serif;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1.44px;
  color: #e2e2e2;
  text-align: center;
  margin: 0 0 40px;
}

/* --- Enhanced focus indicators for keyboard navigation --- */
/* Use :focus-visible where supported, fallback to :focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Fallback for browsers without :focus-visible */
@supports not selector(:focus-visible) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
}
