/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; background: linear-gradient(to right, #1a73e8, #155ab6); color: #333; }

/* Header / Hero */
header { padding: 60px 20px; color: #fff; }
.hero-content { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.hero-text { max-width: 500px; text-align: center; }
.hero-text h1 { font-size: 3rem; margin-bottom: 10px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 20px; }
.hero-photo img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 4px solid #fff; }

/* Button */
.btn {
  background: #fff; color: #1a73e8; padding: 10px 20px; border-radius: 5px; font-weight: 600;
}
.btn:hover { background: #e0e0e0; }

/* Sections */
section { max-width: 900px; margin: 40px auto; padding: 20px; background: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* Skills */
.skill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.skill-list span { background: #1a73e8; color: #fff; padding: 5px 10px; border-radius: 5px; }

/* Projects */
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.project-card { padding: 20px; background: #f0f0f0; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.project-card a { color: #1a73e8; font-weight: 600; }
.project-card a:hover { text-decoration: underline; }

/* Form */
form input, form textarea, form button {
  width: 100%; padding: 10px; margin-top: 10px; border-radius: 5px; border: 1px solid #ccc;
}
form button { background: #1a73e8; color: #fff; border: none; cursor: pointer; font-weight: 600; }
form button:hover { background: #155ab6; }

/* Footer */
footer { text-align: center; padding: 20px; margin-top: 40px; font-size: 0.9rem; color: #fff; }
footer a { color: #fff; text-decoration: underline; }
