/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #2c3e50;
  padding: 1rem 0;
}

.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar li a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #3498db;
}

main {
  flex: 1;
  padding: 2rem;
  text-align: center;
}

.hero {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 1rem 0;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive font scaling */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .arch-svg text {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }

}
.about-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.profile-photo {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project {
  background-color: #f4f4f4;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-align: left;
}

.project h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.project-meta {
  list-style: none;
  padding: 0;
}

.project-meta li {
  margin-bottom: 0.5rem;
  color: #555;
}

.arch-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.arch-svg {
  width: 100%;
  max-width: 1000px;
  height: 300px;
  overflow: visible;
  display: block;
  margin-bottom: -80px; /* brings photo up under arch */
}

.arch-head-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.hero-photo {
  width: 200px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1;
  background: white;
  padding: 4px;
  margin-top: -20px;
}

.hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #555;
  margin-top: 1rem;
}

