/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: Arial, sans-serif;
  background: #070A29;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto !important;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #020617;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

/* ================= MENU ================= */
.main-nav .menu {
  display: flex;
  list-style: none;
}

.main-nav .menu li {
  margin-left: 25px;
}

.main-nav .menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.main-nav .menu li a:hover {
  color: #00ffae;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)), url("../../hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #00ffae;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= SECTION ================= */
section {
  padding: 80px 20px;
  text-align: center;
}

/* ================= SCROLL TOP BUTTON ================= */
#topBtn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  background: #00ffae;
  color: #000;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  line-height: 1;

  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

#topBtn.show {
  display: flex;
}

/* ================= MOBILE ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00ffae;
}

@media(max-width:768px){

  .menu-toggle {
    display: block;
  }

  .main-nav .menu {
    display: none;
    flex-direction: column;
    background: #020617;
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
  }

  .main-nav .menu.active {
    display: flex;
  }

  .main-nav .menu li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}