/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f0f4f8;
  color: #2c3e50;
  line-height: 1.8;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(120deg, #a8edea, #fed6e3);
  color: #2c3e50;
  border-bottom: 5px solid #ffffff;
}

.photo-box img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  color: #34495e;
  font-weight: 300;
}

/* Navigation */
nav {
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem;
}

nav ul li {
  margin: 0 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #fed6e3;
  color: #2c3e50;
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fed6e3;
  padding-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #596e79;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.skills li {
  background: #a8edea;
  padding: 0.7rem 1.5rem;
  color: #2c3e50;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Projects Section */
.project {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #a8edea;
  border-radius: 10px;
  background: #f8fcff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.project h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.project p {
  margin-bottom: 1rem;
  color: #596e79;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #fed6e3;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.button:hover {
  background: #f3a5c0;
  color: #ffffff;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #34495e;
  color: #ffffff;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 5px solid #fed6e3;
}
