:root {
  /* Colors */
  --primary-color: #447e3f;
  --primary-dark: #2d5f3f;
  --primary-light: #66a05b;
  --secondary-color: #8bb68a;
  --accent-color: #f4f6f4;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #707070;
  --text-light: #9a9a9a;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f4f6f4;
  --bg-dark: #1a1a1a;

  --border-light: #e9ecef;
  --border-medium: #dee2e6;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;

  /* Spacing */
  --section-padding: 120px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-full);
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-icon:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-icon,
.logo-image {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.logo-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition-normal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(360deg);
}

.nav-toggle.active .bar:nth-child(2) {
  transform: rotate(360deg);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(360deg);
}

/* Hero Section */
.hero {
  padding: 140px 0 var(--section-padding);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-title {
  margin-bottom: 24px;
}

.title-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.title-subtitle {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--primary-color);
  font-family: var(--font-primary);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-medium);
}

.hero-image {
  animation: fadeInRight 1s ease 0.3s both;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 350px;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(68, 126, 63, 0.1), rgba(139, 182, 138, 0.1));
}

/* Section Styles */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.about-text .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.about-details {
  margin-bottom: 60px;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.detail-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.detail-item p {
  font-weight: 500;
  margin-bottom: 4px;
}

.detail-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.skills-section h3 {
  color: var(--text-primary);
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.skill-item {
  padding: 24px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
}

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

.skill-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.5rem;
}

.skill-item h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.skill-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Experience Section */
.experience {
  background-color: var(--bg-secondary);
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-medium);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
}

.timeline-dot {
  position: absolute;
  left: 21px;
  top: 8px;
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  border: 4px solid var(--bg-secondary);
}

.timeline-content {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-date {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.timeline-content h3 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-content h4 {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.timeline-tags span {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
}

/* Projects Section */
.projects {
  background-color: var(--bg-primary);
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border-medium);
  background-color: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.project-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(68, 126, 63, 0.8), rgba(139, 182, 138, 0.8));
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-actions {
  display: flex;
  gap: 12px;
}

.project-content {
  padding: 24px;
}

.project-title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.project-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-type {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.project-year {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Contact Section */
.contact {
  background-color: var(--bg-secondary);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.contact-details h4 {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-details a,
.contact-details span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.footer-left p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-right p {
  color: #999;
  font-size: 0.9rem;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* Existing Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .profile-image {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 16px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    justify-content: center;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-dot {
    left: 1px;
  }

  .timeline-item {
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    width: 240px;
    height: 240px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 16px;
  }

  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    width: 100vw;
  }

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

  .nav-container {
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 100vw;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    z-index: 1001;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 16px 0;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }

  .hero-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .profile-image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .floating-elements {
    width: 240px;
    height: 240px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .timeline {
    padding-left: 0;
    margin: 0 auto;
    max-width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 11px;
  }

  .timeline-item {
    padding-left: 50px;
    margin-bottom: 30px;
  }

  .timeline-content {
    padding: 20px 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-filters {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  /* Fix heart container on mobile */
  .heart-container {
    max-width: 100vw;
    overflow: hidden;
  }

  .heart {
    max-width: 100%;
  }

  /* Romantic elements mobile fix */
  .love-message {
    width: 90%;
    max-width: 300px;
    padding: 20px;
    font-size: 1.2rem;
  }

  .romantic-overlay {
    max-width: 100vw;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 12px;
  }

  .container {
    padding: 0 12px;
  }

  .nav-container {
    padding: 12px;
  }

  .hero-container {
    padding: 0 12px;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: none;
    padding: 12px 20px;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }

  .floating-elements {
    width: 200px;
    height: 200px;
  }

  .timeline-content {
    padding: 16px 12px;
  }

  .timeline-tags {
    gap: 4px;
  }

  .timeline-tags span {
    font-size: 0.75rem;
    padding: 2px 8px;
  }

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

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

  .title-subtitle {
    font-size: 1rem;
  }

  .love-message {
    width: 95%;
    max-width: 280px;
    padding: 16px;
    font-size: 1rem;
  }

  .love-message::before {
    font-size: 2rem;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(68, 126, 63, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
}

.element-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: -15%;
  animation-delay: 0s;
}

.element-3 {
  bottom: 10%;
  left: -5%;
  animation-delay: 0s;
}

@media (max-width: 768px) {
  .floating-element {
    width: 40px;
    height: 40px;
  }

  .element-1 {
    top: 20%;
    left: 10%;
  }

  .element-2 {
    top: 90%;
    right: -70%;
  }

  .element-3 {
    bottom: 5%;
    left: 30%;
  }
}

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

@keyframes pop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.floating-element.pop {
  animation: pop 0.6s forwards;
}