/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Poppins", sans-serif; color: #222; background: #fafafa; line-height: 1.6; }

/* Navbar */
nav {
  background: #212121;
  color: white;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-weight: bold; font-size: 1.3rem; letter-spacing: 1px; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links li a { color: white; text-decoration: none; font-weight: 500; }
.nav-links li a:hover { color: #ff7043; }

/* Sections */
.section { padding: 4rem 1rem; }
.container { max-width: 1000px; margin: 0 auto; }

/* Home */
.home {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  text-align: center;
  padding: 6rem 1rem;
}
.home h1 { font-size: 2.5rem; margin-bottom: 1rem; color: #212121; }
.home p { font-size: 1.1rem; margin-bottom: 2rem; }
.btn {
  background: #ff7043;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover { background: #e64a19; }

/* About */
.about { background: #fff3e0; text-align: center; }
.about h2 { color: #e64a19; margin-bottom: 1rem; }

/* Links */
.links h2 { text-align: center; color: #e64a19; margin-bottom: 2rem; }
.links-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.link-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 180px;
  text-decoration: none;
  color: #212121;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.link-card i { margin-bottom: 0.5rem; color: #ff7043; }

/* Footer */
footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}