/* ============================================
   garrettdunham.com — Static Site Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #333;
  background: #fff;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 14px 20px;
  display: flex;
  gap: 6px;
}

nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover,
nav a.active {
  border-color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  color: #fff;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 14px 24px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #fff;
  color: #333;
}

/* ── Sections ── */
.section {
  padding: 60px 40px;
  text-align: center;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #555;
  margin-bottom: 36px;
}

/* ── Logo Grids ── */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-grid img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.80;
  transition: opacity 0.2s;
}

.logo-grid img:hover { opacity: 1; }

/* ── Keynoting Content ── */
.content-section {
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  padding: 4px 0 4px 20px;
  position: relative;
}

.content-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #bbb;
}

.topic-block {
  margin-bottom: 40px;
  text-align: left;
  border-left: 3px solid #e0e0e0;
  padding-left: 24px;
}

.topic-block h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.topic-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.inquiry-box {
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: 36px 40px;
  text-align: left;
  margin-top: 20px;
}

.inquiry-box h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.inquiry-box p,
.inquiry-box li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.inquiry-box ul { list-style: disc; padding-left: 20px; margin: 12px 0; }

.inquiry-box .email-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  border: 1.5px solid #333;
  padding: 12px 20px;
  transition: background 0.2s, color 0.2s;
}

.inquiry-box .email-cta:hover { background: #333; color: #fff; }

.note {
  font-size: 13px;
  color: #999;
  margin-top: 16px;
  font-style: italic;
}

/* ── Urgeless Logo ── */
.urgeless-logo {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.urgeless-logo .urge { color: rgba(255,255,255,0.50); }
.urgeless-logo .less { color: #fff; }

.hero-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  margin: 24px auto 0;
}

/* ── Footer ── */
footer {
  background: #2a2a2a;
  color: #aaa;
  padding: 48px 60px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}

.footer-col p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.8;
  max-width: 320px;
}

.footer-nav {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #bbb;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover { background: #555; color: #fff; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .section { padding: 40px 20px; }
  .content-section { padding: 40px 20px; }
  footer { padding: 40px 24px; flex-direction: column; gap: 36px; }
  .inquiry-box { padding: 24px 20px; }
  .logo-grid { gap: 20px 32px; }
}
