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

body {
  font-family: 'Inter', sans-serif;
  background: #f9f5f2;
  color: #3a2f2f;
  line-height: 1.7;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #e8d5c8;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #6b8e5f;
}

.logo span { color: #e8a0b0; }

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

.nav-links a {
  text-decoration: none;
  color: #3a2f2f;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e8a0b0;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #f8c1c8 0%, #e8f0d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.highlight {
  color: #e8a0b0;
}

.hero-content h2 {
  font-size: 1.6rem;
  color: #6b8e5f;
  margin-bottom: 1rem;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  margin: 10px;
}

.primary {
  background: #e8a0b0;
  color: white;
}

.primary:hover {
  background: #d98a9c;
  transform: translateY(-3px);
}

.secondary {
  border: 2px solid #6b8e5f;
  color: #6b8e5f;
}

.secondary:hover {
  background: #6b8e5f;
  color: white;
}

/* Section Styles */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 5%;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #6b8e5f;
}
/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8c1c8 0%, #e8f0d8 100%);
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

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

.profile-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 15px 35px rgba(232, 160, 176, 0.4);
  object-fit: cover;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.highlight {
  color: #e8a0b0;
}

.hero-content h2 {
  font-size: 1.7rem;
  color: #6b8e5f;
  margin-bottom: 1rem;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .profile-img {
    width: 220px;
    height: 220px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* Add more styles for timeline, skills, etc. */

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.skill-category {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  min-width: 280px;
}

.skill-category span {
  display: inline-block;
  background: #f8e9ec;
  color: #316f1a;
  padding: 8px 16px;
  margin: 6px;
  border-radius: 30px;
  font-size: 0.95rem;
}