:root {
  --accent-pink: #f7cfe0;
  --accent-green: #c0ffd5;
  --text-dark: #333;
  --bg-light: #f3fbff;
  --link-blue: #0077cc;
}

body.homepage {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  z-index: 1;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-pink);
}

.highlight {
  color: var(--accent-green);
  font-weight: 700;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  background: var(--accent-pink);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Resume and Blog Page Styles */
body.resume,
body.blog {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--text-dark);
  margin: 0;
  padding: 2rem;
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

.resume h1,
.blog h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.resume h2 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.blog h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: var(--text-dark);
}

.resume p,
.blog p {
  margin-bottom: 1rem;
}

.resume section {
  border-left: 4px solid #6495ed;
  background-color: #fefefe;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog article {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.resume section ul,
.blog ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

.resume section li,
.blog li {
  margin-bottom: 0.5rem;
}

.resume a,
.blog a {
  color: var(--link-blue);
  text-decoration: none;
}

.resume a:hover,
.blog a:hover {
  text-decoration: underline;
}

.blog article {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.blog p {
  font-size: 1.05rem;
  line-height: 1.75;
}






