/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

/* Navbar */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #1e1e2f;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.logo img {
  max-height: 35px;
  max-width: 120px;
  object-fit: contain;
}

.highlight {
  color: #4da6ff; /* Winter Blue */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-links a:hover {
  color: #4da6ff;
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  color: #1e1e2f;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #1e1e2f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #4da6ff;
  color: #fff;
}

/* Projects */
.projects {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card h3 {
  margin-top: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #1e1e2f;
  color: white;
  margin-top: 30px;
}

/* Responsive */
@media(max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  header nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
