/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* Body */
body { background: #f9f9f9; color: #333; line-height: 1.6; }

/* Links */
a { text-decoration: none; color: inherit; }
a:hover { color: #00aaff; }

/* Header */
header { background: #1a1a1a; color: #fff; padding: 20px 0; text-align: center; }
header h1 { font-size: 2.5rem; }
header p { font-size: 1.2rem; margin-top: 5px; color: #ccc; }
nav { margin-top: 10px; }
nav a { margin: 0 15px; color: #fff; font-weight: 600; transition: color 0.3s; }

/* Sections */
section { padding: 60px 20px; max-width: 1000px; margin: auto; }
section h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #1a1a1a; }

/* About */
#about { text-align: center; }
#about img { width: 150px; border-radius: 50%; margin-bottom: 20px; }

/* Projects */
.projects-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.project-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.project-card:hover { transform: translateY(-5px); }
.project-card img { width: 100%; height: 180px; object-fit: cover; }
.project-card .card-content { padding: 15px; }
.project-card h3 { margin-bottom: 10px; color: #1a1a1a; }
.project-card p { color: #666; font-size: 0.95rem; }
.project-card a { display: inline-block; margin-top: 10px; color: #00aaff; font-weight: 600; }

/* Skills */
.skills { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.skill { background: #1a1a1a; color: #fff; padding: 10px 20px; border-radius: 20px; font-weight: 600; transition: background 0.3s; }
.skill:hover { background: #00aaff; }

/* Contact */
#contact { text-align: center; }
#contact a { display: inline-block; margin: 10px; background: #1a1a1a; color: #fff; padding: 10px 20px; border-radius: 5px; transition: background 0.3s; }
#contact a:hover { background: #00aaff; }

/* Footer */
footer { text-align: center; padding: 20px 0; background: #111; color: #ccc; font-size: 0.9rem; }
