/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fafafa;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #ddd;
  font-weight: bolder;
}

.logo {
  font-weight: bold;
  font-size: 25px;
  color: #6a5acd; /* subtle violet */
}

.navbar ul { display: flex; list-style: none; }
.navbar ul li { margin-left: 20px;
font-weight: bolder;
font-size: 20px; 
}
.navbar ul li a {
  text-decoration: none;
  color: #4a444a;
  transition: color 0.3s;
  
}
.navbar ul li a:hover { color: #6a5acd; }

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #e0f7fa, #f8eaf6);
  padding: 20px;
}
.hero h1 { font-size: 42px; }
.hero h1 span { color: #6a5acd; }
.social-links { margin-top: 20px; }
.social-links a {
  margin: 0 12px;
  font-size: 28px;
  color: #333;
  transition: all 0.3s ease;
}
.social-links a:hover { color: #6a5acd; transform: scale(1.2); }

/* Sections */
.section { padding: 60px 20px; max-width: 900px; margin: auto; }
h2 { margin-bottom: 20px; color: #6a5acd; }

/* Project cards */
.project-card {
  background: #fff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

#contact a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

#contact a:hover {
  color: #6a5acd;
}