:root {
  --primary-blue: #2E7DBE;
  --light-blue: #5BA3D0;
  --dark-blue: #1A4D7A;
  --accent-blue: #87CEEB;
  --accent-orange: #D97706;
  --light-orange: #F59E0B;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --bg-light: #F8FBFD;
  --white: #FFFFFF;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  height: 80px;
  width: auto;
}

.header-text {
  text-align: left;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding-top: 3rem;
  }

  .header-text {
    text-align: center;
  }

  .logo {
    height: 60px;
  }

  .nav-link {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

header h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  color: var(--light-orange);
}

.nav-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1.5rem;
  background: var(--accent-orange);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.nav-link:hover {
  background: var(--light-orange);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0.5rem 0 0 0;
  color: var(--light-orange);
}

section {
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.intro-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0.5rem 0 1rem 0;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1.5rem;
}

.headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-orange);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
  flex-shrink: 0;
}

.about-text {
  flex: 1;
}

@media (max-width: 600px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headshot {
    width: 150px;
    height: 150px;
  }
}

h2 {
  color: var(--primary-blue);
  border-bottom: 3px solid var(--light-blue);
  padding-bottom: 0.5rem;
  font-weight: 600;
}

h3 {
  color: var(--dark-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.work-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(46, 125, 190, 0.08);
  border-left: 4px solid var(--accent-orange);
}

.work-item ul {
  margin-top: 0.5rem;
}

.work-item ul li {
  border-left-color: var(--light-blue);
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: var(--white);
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(46, 125, 190, 0.1);
  border-left: 3px solid var(--accent-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(46, 125, 190, 0.15);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.services-download {
  margin-top: 2rem;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.download-btn:hover {
  background: var(--light-orange);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

footer {
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  background-color: var(--white);
  border-top: 1px solid #e0e8f0;
  margin-top: 3rem;
}

.footer-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
