@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4a4a4a;
  --accent: #FFc2e1;
  --accent-secondary: #Fee7bc;
  --light: #fffaf5;
  --white: #ffffff;
  --text: #2e2e2e;
  --text-light: #8a8a8a;
  --border: rgba(0, 0, 0, 0.07);
  --gradient: linear-gradient(135deg, #FFc2e1, #Fee7bc);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(255, 194, 225, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Navigation ─────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--text);
}

/* ── Parallax Container ──────────────────────── */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: var(--gradient);
  opacity: 0.07;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  z-index: -1;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(1px);
}

.shape-1 {
  width: 340px;
  height: 340px;
  background: var(--accent);
  top: 5%;
  right: -120px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: var(--accent-secondary);
  bottom: 15%;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: var(--accent);
  top: 55%;
  left: 28%;
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

/* ── Trusted By Section ──────────────────────── */
.logo-section {
  padding: 4rem 5%;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo-container h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo-item {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.3s ease, filter 0.3s ease;
  object-fit: contain;
}

.logo-item:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

/* ── Hero Section ────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.highlight {
  color: var(--text);
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gradient);
  color: var(--text);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 194, 225, 0.35);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.profile-placeholder {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(255, 194, 225, 0.3);
  animation: float 8s ease-in-out infinite;
}

.profile-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Section Styles ──────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 5%;
  position: relative;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ── Parallax Section ────────────────────────── */
.parallax-section {
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0.04;
  pointer-events: none;
}

/* ── Skills / What I Do ──────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 194, 225, 0.4);
}

.skill-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.skill-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.skill-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Work Page ───────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.project-image.pink {
  background: linear-gradient(135deg, #FFc2e1 0%, #ffd6ed 100%);
}

.project-image.peach {
  background: linear-gradient(135deg, #Fee7bc 0%, #fdf0d5 100%);
}

.project-image.gradient {
  background: var(--gradient);
}

.project-image.light {
  background: linear-gradient(135deg, #fff5f8 0%, #fff9f0 100%);
}

.project-content {
  padding: 1.75rem;
}

.project-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(255, 194, 225, 0.15);
  border: 1px solid rgba(255, 194, 225, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.project-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.project-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── About Page ──────────────────────────────── */
.about-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-image {
  position: sticky;
  top: 2rem;
}

.about-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
  box-shadow: 0 20px 60px rgba(255, 194, 225, 0.25);
}

.about-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin: 2.5rem 0 1.25rem;
}

.experience-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.experience-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.experience-item .company {
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-item .date {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.experience-item p:not(.company):not(.date) {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.experience-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.experience-list li {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 194, 225, 0.12);
  border: 1px solid rgba(255, 194, 225, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ── Footer ──────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 5%;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.social-links a:hover {
  color: var(--accent);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 5% 3rem;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .profile-placeholder {
    width: 260px;
    height: 260px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .logo-grid {
    gap: 2rem;
  }

  .logo-item {
    height: 32px;
  }

  .parallax-shape {
    display: none;
  }

  .section {
    padding: 4rem 5%;
  }

  .section-title {
    font-size: 2rem;
  }
}
