/* Modern Microsoft-Aligned Design System */
:root {
  /* Primary Colors */
  --entra-blue: #4F6BED;
  --azure-blue: #0078D4;
  --background: #F3F2F1;
  --text-primary: #1B1B1B;
  --text-secondary: #605E5C;
  --text-light: #8A8886;
  --white: #FFFFFF;
  --border: #E1DFDC;
  --accent-light: #E8EEFF;
  
  /* Typography */
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-system);
  background: var(--background);
  color: var(--text-primary);
  margin: 0;
  min-height: 100vh;
}

/* Hero Section with Geometric Design */
.hero-section {
  position: relative;
  background: linear-gradient(90deg, #306493 0%, #439fd7 100%);
  padding: 0;
  margin: 0;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.hero-content h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  opacity: 0.95;
}

.hero-content .tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.hero-content .subtext {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Main Content Area */
.main-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Sections */
section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

section:last-child {
  border-bottom: none;
}

section h3 {
  color: var(--entra-blue);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

section p {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

section strong {
  color: var(--entra-blue);
}

/* About Section with Headshot */
.about-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}

.about-headshot {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

.about-headshot img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(79, 107, 237, 0.2);
  transform: scale(1.25);
}

.about-content {
  flex: 1;
}

.job-details {
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: var(--white);
  border-left: 4px solid var(--entra-blue);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.job-details h4 {
  color: var(--entra-blue);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.company {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: block;
}
.job-details ul {
  margin: 0.5rem 0 0 0;
  padding: 0 0 0 1.5rem;
  list-style: disc;
}
.job-details li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.skill-category {
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.skill-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 107, 237, 0.1);
}

.skill-category h4 {
  color: var(--entra-blue);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.skill-tag {
  background: var(--white);
  color: var(--entra-blue);
  border: 1px solid var(--entra-blue);
  border-radius: 16px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.skill-tag:hover {
  background: var(--entra-blue);
  color: var(--white);
}

.contact-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Philosophy Section */
.philosophy-section {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--entra-blue);
  text-align: center;
}

.philosophy-statement {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--entra-blue);
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    padding: 40px 20px;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero-content .tagline {
    font-size: 1.2rem;
  }

  .hero-content .subtext {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 40px 16px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-headshot {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  section h3 {
    font-size: 1.2rem;
  }

  .contact-link {
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
  }
}
