/* style.css */

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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  transition: padding 0.3s ease;
}

.navbar.shrink {
  padding: 0.6rem 2rem;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #007BFF;
}

section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

#home {
  padding-top: 150px;
  text-align: center;
}

#home h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#about ul {
  list-style: disc;
  margin-left: 1.5rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
  font-size: 0.9rem;
  color: #666;
}
