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

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
}

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

.startbtn button {
  padding: 0.5rem 1.2rem;
  background-color: #00ffcc;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  color: #000;
}

/* Hero Section */
.hero {
  background: url('../img/bg-hero.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 5%;
  padding-top: 15vh;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Typing Cursor */
.cursor {
  display: inline-block;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero-text {
    padding: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .startbtn button {
    font-size: 0.9rem;
  }
}
