* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #eaeaea;
}

/* ---------- HEADER ---------- */
header {
  background: #141414;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #ff4d00;
  font-size: 28px;
  font-weight: 700;
}

nav a {
  color: #eaeaea;
  margin-left: 25px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #ff4d00;
}

/* ---------- HERO ---------- */
.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1601924638867-3ec62f1a1b43") center/cover no-repeat;
  padding: 20px;
}

.hero-content h2 {
  font-size: 46px;
  color: #fff;
}

.hero-content p {
  margin: 20px 0;
  font-size: 18px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff4d00;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6a2b;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #fff;
}

.about h2 span {
  color: #ff4d00;
}

.about p {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 20px;
}

.tagline {
  color: #ff4d00;
  font-weight: 600;
  margin-top: 25px;
  font-size: 18px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #141414;
  padding: 25px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 32px;
  }
}
