/* --------------------------------------------------
   Base Reset
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #0d0f12;
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* --------------------------------------------------
   Layout
-------------------------------------------------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #1f242d;
  background: #0d0f12;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* --------------------------------------------------
   Navigation
-------------------------------------------------- */
.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #4cc9f0;
}

/* --------------------------------------------------
   Sections
-------------------------------------------------- */
.section {
  padding: 80px 40px;
}

.section-alt {
  background: #111418;
}

.section-header {
  max-width: 720px;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: #4cc9f0;
}

.section-header p {
  color: #a1a5ad;
}

/* --------------------------------------------------
   Call-to-Action Buttons
-------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn.primary {
  background: #4cc9f0;
  color: #0d0f12;
}

.btn.primary:hover {
  opacity: 0.9;
}

/* --------------------------------------------------
   Lists & Resources
-------------------------------------------------- */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  color: #4cc9f0;
  text-decoration: none;
}

ul li a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   Contact
-------------------------------------------------- */
.contact-meta p {
  margin-bottom: 8px;
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1f242d;
  background: #0d0f12;
  color: #6b7280;
}

.site-footer a {
  color: #4cc9f0;
  text-decoration: none;
}

/* --------------------------------------------------
   Accessibility
-------------------------------------------------- */
a:focus-visible {
  outline: 2px solid #4cc9f0;
  outline-offset: 3px;
}

/* --------------------------------------------------
   Spacing Fix for Final Paragraph
-------------------------------------------------- */
.section p:last-of-type {
  margin-bottom: 25px;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .site-nav {
    flex-direction: column;
    gap: 12px;
  }

  .section {
    padding: 60px 25px;
  }
}
