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

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* ---------- Container ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Navbar ---------- */
.navbar {
  background: #1e1e2f;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c2ff;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, #1e1e2f, #2e2e4f);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #00c2ff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0096cc;
}

/* ---------- Sections ---------- */
section {
  padding: 4rem 0;
  border-bottom: 1px solid #ddd;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e1e2f;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ---------- Code Blocks ---------- */
pre {
  background: #1e1e2f;
  color: #00ffcc;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1rem 0;
}

.json-code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
}

/* ---------- Important Note ---------- */
.important {
  background: #fff3cd;
  border-left: 5px solid #ffcc00;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}

/* ---------- Developer Section ---------- */
.developer-section {
  text-align: center;
}

.developer-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.developer-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00c2ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.developer-info {
  max-width: 600px;
  text-align: left;
}

.developer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1e1e2f;
}

.developer-info a {
  color: #00c2ff;
  text-decoration: none;
  font-weight: 500;
}

.developer-info a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */
footer {
  background: #1e1e2f;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .developer-card {
    flex-direction: column;
    text-align: center;
  }

  .developer-info {
    text-align: center;
  }
}
/* Mobile menu toggle */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e1e2f;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}

