/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #58a6ff;
}

a {
  text-decoration: none;
  color: #58a6ff;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: #161b22;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo span {
  color: #f778ba;
}

.navbar ul {
  display: flex;
  gap: 2rem;
}

.navbar a:hover {
  color: #f778ba;
}

/* === Hero Section === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #1e1e2f, #0d1117);
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content span {
  color: #f778ba;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #58a6ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f778ba;
}

/* === Sections === */
.section {
  padding: 5rem 10%;
  text-align: center;
}

.portfolio-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #161b22;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(88,166,255,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* === Contact Form === */
.contact form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  background: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
  padding: 1rem;
  border-radius: 10px;
  resize: none;
}

button {
  background: #58a6ff;
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #f778ba;
}

/* === Footer === */
footer {
  background: #161b22;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #30363d;
}
