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

/* Global Styles */
body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  background-color: #f8f4e9; /* Creamy background */
  color: #333;
  padding: 0 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: normal;
  margin-bottom: 1rem;
  color: #2b2b2b;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #5a6e8c;
  text-decoration: none;
  border-bottom: 1px dotted #5a6e8c;
  transition: all 0.3s ease;
}

a:hover {
  color: #333;
  border-bottom: 1px solid #333;
}

/* Header & Navigation */
header {
  text-align: center;
  padding: 2rem 0;
}

nav {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

nav a {
  margin: 0 15px;
  padding: 5px 10px;
  border-bottom: none;
  font-family: "Helvetica", sans-serif;
  font-size: 1rem;
}

nav a:hover {
  background-color: rgba(90, 110, 140, 0.1);
  border-radius: 4px;
}

/* Profile Section */
.profile {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.profile-text {
  flex: 1;
  min-width: 300px;
}

/* Projects & Experience */
.project,
.experience-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e6ded0;
}

.project:last-child,
.experience-item:last-child {
  border-bottom: none;
}

/* Skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.skill {
  background-color: #e6ded0;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Contact */
.contact-info {
  background-color: #efe9db;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem 0;
  color: #776e5e;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
  }

  nav a {
    margin: 5px;
  }
}
