/* General Reset */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f5f3;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #f2d0c4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #a15c3e;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 100px; /* spacing from navbar and bottom */
  background-color: #f7e6db;
}

.hero .profile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 2.3em;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.7;
  font-size: 1.05em;
}

.btn {
  background-color: #a15c3e;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #7a3f2c;
}

/* Section Spacing */
.section {
  padding: 100px 25px;
  margin: 0 auto;
  max-width: 900px;
}

.section h2 {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
  font-size: 1.9em;
}

/* About */
.about {
  background-color: #fdf0ea;
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.about p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.uw-photo {
  display: block;
  margin: 0 auto;
  width: 250px;
  border-radius: 12px;
}

/* Projects */
.projects {
  background-color: #fff;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.project-card {
  background-color: #fdf0ea;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.project-card h3 {
  color: #a15c3e;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.btn.small {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 12px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #a15c3e;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn.small:hover {
  background-color: #7a3f2c;
}

/* Contact */
.contact {
  text-align: center;
  background-color: #f7e6db;
  border-radius: 12px;
  padding: 60px 20px;
}

.contact p {
  font-size: 1.1em;
}

.contact a {
  color: #a15c3e;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #a15c3e;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 60px;
  font-size: 0.95em;
}
.resume-container {
  text-align: center;
  margin-top: 60px;
}

.resume-button {
  display: inline-block;
  background-color: #4b49ac;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.resume-button:hover {
  background-color: #383685;
}