/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111; /* dark background */
  color: #fff;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background: #111;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar a.active,
.navbar a:hover {
  color: #ff6b35; /* orange highlight */
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff6b35; /* orange highlight */
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .social-icons a {
    font-size: 1.3rem;
  }
}


/* Sections */
.section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff6b35; /* orange accent */
}

.section p, .section ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  margin: 10px 0;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

