body {
  margin: 0;
  font-family: 'Fraunces', serif; /* ← EVERYTHING uses Fraunces now */
  background: #FFF7FB;
  color: #1F2937;
  line-height: 1.7;
}

/* Headings stay Fraunces but bold */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

/* Description text: SAME font, NOT bold */
p,
.card p,
.timeline-item p {
  font-family: 'Fraunces', serif;
  font-weight: 400; /* normal, readable, not boring */
}

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #FCE7F3, #FFF7FB);
}

.hero h1 {
  font-size: 3.2rem;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: #DB2777;
  margin: 1rem auto;
  border-radius: 999px;
}

.cursor {
  color: #DB2777;
}

.direction {
  color: #DB2777;
  font-weight: 500;
}

/* ICONS */
.contact-icons a {
  margin: 0 0.6rem;
  color: #9D174D;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-icons a:hover {
  transform: translateY(-2px);
  color: #DB2777;
}

.contact-icons svg {
  width: 22px;
  height: 22px;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

h2 {
  color: #DB2777;
  border-bottom: 2px solid #FBCFE8;
  padding-bottom: 0.5rem;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.about-image-single img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.15);
}

/* PINK TEXT */
.pink-text {
  color: #DB2777;
}

/* SKILLS */
.skills span {
  background: #FCE7F3;
  color: #DB2777;
  padding: 0.45rem 1rem;
  margin: 0.4rem;
  border-radius: 999px;
  display: inline-block;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skills span:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(219, 39, 119, 0.25);
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 3.5rem;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #FBCFE8;
}

.timeline-item {
  margin-bottom: 2.8rem;
}

.timeline-item .time {
  font-size: 0.85rem;
  color: #DB2777;
  font-weight: 600;
}

/* CARDS */
.card {
  background: white;
  padding: 1.5rem;
  margin-top: 0.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 10px 25px rgba(219, 39, 119, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(219, 39, 119, 0.18);
}

/* RESUME */
.resume {
  text-align: center;
}

.resume-link {
  background: #DB2777;
  color: white;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem;
  background: #FCE7F3;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}
