/* ==========================================================================
   Framer Portfolio Aesthetic - Warm Cream & Orange Theme (Rajendra Showcase)
   ========================================================================== */

:root {
  --bg-cream: #f7f3ec;
  --bg-card-hover: rgba(230, 226, 211, 0.4);
  --bg-button: #e6e2d3;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-accent: #e6e2d3;
  
  --text-dark: #1a1a1a;
  --text-muted: #7a7a7a;
  --accent-orange: #f44d38;
  
  --font-sans: 'DM Sans', 'Inter', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-cursive: 'Over the Rainbow', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & layouts */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   Navigation Header
   ========================================================================== */
.header-nav {
  height: 78px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 0 40px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-mark {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   Main & Section Layout
   ========================================================================== */
.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: lowercase;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.1;
}

.handwritten-note {
  font-family: var(--font-cursive);
  color: var(--accent-orange);
  font-size: 1.1rem;
  user-select: none;
}

/* ==========================================================================
   Hero Collage Layout (Matching Shubhika Batra layout)
   ========================================================================== */
.hero-section {
  padding: 40px 0;
  overflow: visible;
  position: relative;
}

.hero-collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 120px);
  position: relative;
  overflow: visible;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  z-index: 10;
}

.hero-name {
  font-family: var(--font-sans);
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: -3.5px;
  line-height: 0.9;
  text-transform: lowercase;
  color: var(--text-dark);
  
  opacity: 0;
  transform: translateY(30px) rotate(-1deg);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.hero-name.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero-cursive-title {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-left: 6px;
  display: inline-block;
  
  opacity: 0;
  transform: translateY(30px) rotate(2deg);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.hero-cursive-title.visible {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 600px;
  overflow: visible;
}

.collage-area {
  position: relative;
  width: 600px;
  height: 600px;
  overflow: visible;
}

.collage-item {
  position: absolute;
  will-change: transform;
  display: block;
  touch-action: none; /* Prevent scroll interference during drag-and-drop */
}

.collage-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Layer Sorting & Positioning */
.crumpled-paper {
  width: 320px;
  left: -80px;
  top: 180px;
  z-index: 1;
}

.cursive-slip {
  width: 100px;
  right: -30px;
  top: 0px;
  z-index: 2;
}

.barcode-receipt {
  width: 200px;
  right: 20px;
  bottom: 80px;
  z-index: 2;
}

.polaroid-card {
  width: 310px;
  left: 130px;
  top: 120px;
  z-index: 3;
  background-color: #ffffff;
  padding: 14px 14px 44px 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.polaroid-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.polaroid-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #ede9df;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.polaroid-caption {
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-top: 4px;
  display: block;
}

.red-flower {
  width: 100px;
  left: 100px;
  top: 330px;
  z-index: 4;
}

.safety-pin {
  width: 130px;
  left: 310px;
  top: 205px;
  z-index: 5;
}

/* ==========================================================================
   Intro Statement Section
   ========================================================================== */
.intro-statement-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.intro-statement-text {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-dark);
  max-width: 950px;
}

.intro-statement-text .highlight {
  font-weight: 700;
}

/* ==========================================================================
   Featured Work / Projects Section
   ========================================================================== */
.work-section {
  padding: 60px 0;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px;
  border-radius: 40px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.project-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

/* Project covers using CSS gradients to look modern and premium */
.project-cover {
  width: 414px;
  height: 265px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.project-card:hover .project-cover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.cover-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  top: -25%;
  left: -25%;
  pointer-events: none;
}

.cover-tag {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.jeetech-cover {
  background: linear-gradient(135deg, #0b0f19 0%, #0d9488 100%);
}

.rajendra-cover {
  background: linear-gradient(135deg, #1f140e 0%, #b45309 100%);
}

.bhairav-cover {
  background: linear-gradient(135deg, #18110b 0%, #c29d53 100%);
}

.vfs-cover {
  background: linear-gradient(135deg, #1c1811 0%, #d4af37 100%);
}

.krishna-cover {
  background: linear-gradient(135deg, #1c0e0b 0%, #881337 100%);
}

.stock-cover {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.sfit-cover {
  background: linear-gradient(135deg, #050d1a 0%, #3b82f6 100%);
}

/* Project Meta text */
.project-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--text-dark);
}

.project-category {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  text-transform: lowercase;
}

/* Project card Action link circle */
.project-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.project-card:hover .project-action {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Interests & Values Section
   ========================================================================== */
.interests-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.interest-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  text-align: left;
}

.interest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  border-color: var(--accent-orange);
}

.interest-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.interest-icon {
  font-size: 1.8rem;
}

.interest-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.interest-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trading-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.trading-sub-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trading-sub-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.5px;
}

.trading-sub-val {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 500;
}

.values-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background-color: var(--bg-button);
  border-radius: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.values-label {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.value-item {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-dark);
  text-transform: lowercase;
  position: relative;
}

.value-item:not(:last-child)::after {
  content: "•";
  color: var(--accent-orange);
  position: absolute;
  right: -12px;
  top: 0;
}

/* ==========================================================================
   Achievements & Timeline Section
   ========================================================================== */
.achievements-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline-line {
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: var(--border-accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 45px;
  text-align: left;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  border: 3px solid var(--bg-cream);
  box-shadow: 0 0 0 3px var(--border-accent);
  z-index: 2;
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.timeline-content {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--border-accent);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   About Me Section
   ========================================================================== */
.about-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.about-pic-holder {
  position: relative;
  width: 280px;
  height: 280px;
}

.about-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--bg-button);
  object-fit: cover;
  background-color: var(--bg-button);
}

.annotation-1 {
  position: absolute;
  top: 10px;
  right: -50px;
  transform: rotate(8deg);
  font-size: 1.15rem;
}

.annotation-2 {
  margin-top: 30px;
  transform: rotate(-4deg);
  font-size: 1.15rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.3;
}

.about-para {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 680px;
}

/* Tech tag elements */
.skills-section {
  margin: 10px 0;
  width: 100%;
}

.skills-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background-color: var(--bg-button);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Resume button */
.resume-btn {
  background-color: var(--bg-button);
  color: var(--text-dark);
  border: 1px solid var(--border-accent);
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  transition: var(--transition-smooth);
}

.resume-btn:hover {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.download-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Lets Connect / Footer
   ========================================================================== */
.connect-section {
  padding: 100px 0;
  background-color: #ede9df;
  border-top: 1px solid var(--border-light);
}

.connect-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.connect-greet {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.connect-call {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.connect-email {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  letter-spacing: -2px;
  transition: var(--transition-smooth);
}

.connect-email:hover {
  opacity: 0.8;
  letter-spacing: -1.5px;
}

/* Connect details block */
.connect-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.connect-detail-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.connect-detail-link:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.phone-icon {
  color: var(--accent-orange);
  transition: var(--transition-smooth);
}

/* Absolute bottom copyright footer */
.bottom-bar {
  background-color: #ede9df;
  padding: 30px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover Animations */
.social-icon-btn:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-icon-btn:hover svg {
  transform: scale(1.15) rotate(8deg);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-icon-btn.whatsapp:hover {
  background-color: #25D366;
}

.social-icon-btn.linkedin:hover {
  background-color: #0077b5;
}

/* ==========================================================================
   Projects Showcase Page Header
   ========================================================================== */
.projects-header-section {
  padding: 80px 0 20px;
}

.projects-title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.projects-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: lowercase;
  color: var(--text-dark);
}

.projects-page-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* View All Projects Button */
.view-all-projects-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.view-all-btn {
  background-color: var(--accent-orange);
  color: var(--bg-cream);
  border: 1px solid var(--accent-orange);
  padding: 22px 52px;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(244, 77, 56, 0.25);
  transition: var(--transition-smooth);
}

.view-all-btn:hover {
  background-color: #d63b27;
  border-color: #d63b27;
  color: var(--bg-cream);
  box-shadow: 0 15px 35px rgba(244, 77, 56, 0.4);
  transform: translateY(-4px) scale(1.02);
}

.arrow-icon-right {
  width: 22px;
  height: 18px;
  transition: var(--transition-smooth);
}

.view-all-btn:hover .arrow-icon-right {
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-collage-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    min-height: auto;
    padding: 60px 0 20px;
    gap: 20px;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-name {
    font-size: 4.2rem;
  }
  
  .hero-right {
    height: 480px;
  }
  
  .collage-area {
    width: 480px;
    height: 480px;
  }
  
  .crumpled-paper {
    width: 250px;
    left: -60px;
    top: 120px;
  }
  
  .cursive-slip {
    width: 80px;
    right: -20px;
  }
  
  .barcode-receipt {
    width: 160px;
  }
  
  .polaroid-card {
    width: 250px;
    left: 100px;
    top: 90px;
  }
  
  .red-flower {
    width: 80px;
    left: 80px;
    top: 260px;
  }
  
  .safety-pin {
    width: 100px;
    left: 240px;
    top: 160px;
  }
  
  .project-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    border-radius: 24px;
  }
  
  .project-cover {
    width: 100%;
    height: 220px;
  }
  
  .project-title {
    font-size: 2.2rem;
  }
  
  .project-action {
    align-self: flex-end;
  }
  
  .interests-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline {
    padding-left: 20px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .connect-email {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .header-nav {
    padding: 0 20px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
  
  .section-container, .hero-container {
    padding: 0 20px;
  }
  
  .hero-name {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }
  
  .hero-cursive-title {
    font-size: 1.8rem;
  }
  
  .hero-right {
    height: 380px;
  }
  
  .collage-area {
    width: 320px;
    height: 320px;
  }
  
  .crumpled-paper {
    width: 180px;
    left: -40px;
    top: 80px;
  }
  
  .cursive-slip {
    width: 60px;
    right: -10px;
  }
  
  .barcode-receipt {
    width: 110px;
    right: 10px;
    bottom: 40px;
  }
  
  .polaroid-card {
    width: 180px;
    left: 60px;
    top: 60px;
    padding: 10px 10px 30px 10px;
  }
  
  .polaroid-caption {
    font-size: 0.8rem;
  }
  
  .red-flower {
    width: 60px;
    left: 50px;
    top: 180px;
  }
  
  .safety-pin {
    width: 70px;
    left: 170px;
    top: 110px;
  }
  
  .about-pic-holder {
    width: 220px;
    height: 220px;
  }
  
  .annotation-1 {
    right: -20px;
  }
  
  .bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* Staggered load delays for clean lists */
.projects-list .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.projects-list .reveal-on-scroll:hover { transition-delay: 0s; }
.projects-list .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.projects-list .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.projects-list .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }

.interests-grid .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.interests-grid .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.interests-grid .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.interests-grid .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }

.timeline .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.timeline .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.timeline .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.timeline .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.timeline .reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.timeline .reveal-on-scroll:nth-child(6) { transition-delay: 0.3s; }
