body {
  font-family: "Cormorant Garamond", serif;
}


.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.profile-img {
  width: 400px;
  height: auto;
  border-radius: 16px;
}

.hero-greeting {
  font-size: 36px;   /* smaller than name */
  margin: 0;
  font-weight: 400;  /* optional: lighter weight */
}

.hero-name {
  font-size: 82px;   /* same as your old h1 */
  margin: 0;
}

.intro {
  font-size: 32px;
  margin: 1rem 0 2rem 0;
}


.contact-list a {
  text-decoration: none;
  color: inherit;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 22px;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}



/* Box styling */
.section-box {
  max-width: 1300px;       /* wider box */
  margin: 0 auto 3rem auto;
  padding: 2.5rem 3rem;    /* top/bottom + left/right */
  background-color: #f6f6f6;
  border-radius: 16px;     /* rounded corners */
}

/* Heading */
.resume-section h2 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Flex container for left/right columns */
.resume-content {
  display: flex;
  align-items: flex-start; /* align top of columns */
  gap: 3rem;               /* spacing between columns */
}

/* Left column: text + buttons */
.resume-text {
  flex: 1; /* take remaining width */
  margin-top: 0; /* flush with top */
}

/* Education text */
.education {
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.btn {
  font-size: 20px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
}

.btn-outline {
  background-color: transparent;
}

/* Right column: PDF thumbnail */
.resume-preview img {
  width: 200px;  /* adjust as needed */
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  margin-top: 0; /* align top of box */
}

/* Resume section text styling */
.resume-text h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.resume-intro {
  font-size: 20px;         /* slightly smaller than heading */
  color: #333;             /* primary text color */
  margin-bottom: 1rem;     /* space before education */
  line-height: 1.5;        /* improves readability */
}

.resume-education {
  font-size: 18px;         /* smaller than intro */
  color: #555;             /* muted secondary info */
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Adjust resume actions spacing */
.resume-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;         /* keeps buttons on small screens */
}

/* Optional: slightly smaller buttons than back-home */
.resume-actions .btn {
  font-size: 18px;
  padding: 0.6rem 1.2rem;
}

/* Outline button styling for contrast */
.resume-actions .btn-outline {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
}

.resume-actions .btn-outline:hover {
  background-color: #000;
  color: #fff;
}



/* Flex container for heading + button */
.projects-header {
  display: flex;
  justify-content: space-between; /* h2 left, button right */
  align-items: center;
  margin-bottom: 1rem; /* space before cards */
}

.projects-header h2 {
  font-size: 40px;
  margin: 0;
}


.projects-section {
    position: relative;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.project-card h3 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.project-card p {
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}