html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f9f9f9;
}

/* Header */
header {
  background: #2c3e50;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Navigation */
nav {
  background: #2980b9;
  text-align: center;
  padding: 12px 0;
}

nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #dfeeff;
}

/* Sections */
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.skills li,
.projects li {
  margin-bottom: 10px;
}

.contact a {
  color: #2980b9;
  text-decoration: none;
}

.contact a:hover {
  color: #3498db;
}

footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: white;
  margin-top: 40px;
  font-size: 0.9em;
}

/* Project Tags */
.tag-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  background-color: #2980b9;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 15px;
  margin-right: 8px;
  margin-top: 6px;
  transition: background-color 0.3s ease;
}

.tag:hover {
  background-color: #3498db;
}

.projects li {
  margin-bottom: 20px;
  background-color: #f4f4f4;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* About + Headshot Layout */
.about-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

.headshot {
  width: auto;
  height: auto;
  max-width: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-s
}

.filter-btn {
  padding: 8px 18px;
  margin: 4px;
  border: 2px solid #0078d4;
  background-color: transparent;
  color: #0078d4;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px; /* Rounded pill shape */
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #0078d4;
  color: white;
}

/* Style for the button that is currently selected */
.filter-btn.active {
  background-color: #0078d4;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}