/*
Theme Name: Typhoon Development
Theme URI: https://typhoondevelopment.com
Author: Typhoon Development, LLC
Description: Custom theme for Typhoon Development, LLC
Version: 1.0
*/

:root {
  --td-black: #0a0a0a;
  --td-orange: #ff6a00;
  --td-white: #ffffff;
  --td-gray: #6b6b6b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--td-black);
  background: var(--td-white);
  line-height: 1.6;
}

a { color: var(--td-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  border-bottom: 1px solid #eee;
}
.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--td-black);
}
.site-logo svg { width: 32px; height: 32px; }
.site-logo:hover { text-decoration: none; }
.site-name { font-weight: 700; font-size: 18px; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--td-black);
  font-weight: 500;
}
.site-nav a:hover { color: var(--td-orange); text-decoration: none; }

.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}
.hero h1 { font-size: 36px; margin: 0 0 8px; }
.hero-tagline { font-size: 20px; color: var(--td-gray); margin: 0 0 24px; }

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}
.page-content h1 { font-size: 32px; margin-top: 0; }
.page-content h2 { font-size: 24px; }
.page-content h3 { font-size: 19px; color: var(--td-black); }

.button {
  display: inline-block;
  background: var(--td-orange);
  color: var(--td-white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}
.button:hover { background: #e05e00; text-decoration: none; color: var(--td-white); }

.site-footer {
  background: var(--td-black);
  color: var(--td-white);
  margin-top: 40px;
}
.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  font-size: 14px;
  color: #bbb;
}

@media (max-width: 600px) {
  .site-header-inner { flex-direction: column; align-items: flex-start; }
}
