/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

main {
  padding-left: 10px ;
  padding-right: 10px;
}

/* ================= TOP NAV ================= */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.menu-toggle,
.left-arrow,
.right-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.menu-toggle:hover,
.left-arrow:hover,
.right-arrow:hover {
  color: #ff00ff;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

/* ================= SIDE MENU ================= */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #111;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  text-align: center;
}

.side-menu li {
  margin: 20px 0;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.side-menu a:hover {
  color: #ff00ff;
}

/* LINKS */
.menu-links {
  list-style: none;
  padding: 90px 0 0;
  text-align: center;
}

.menu-links li {
  margin: 18px 0;
}

/* CONTACT AREA */
.menu-contact {
  padding: 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.menu-social a {
  color: #00fff7;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: 0.3s;
}

.menu-social a:hover {
  color: #ff00ff;
  box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.menu-direct a {
  display: block;
  color: #adb5bd;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.3s;
}

.menu-direct a:hover {
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url("../assets/front.webp") no-repeat center bottom / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-overlay {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-overlay h1 {
  color: #00fff7;
  font-size: 2.5rem;
  text-shadow: 0 0 10px #00fff7;
}

.hero-overlay h4 {
  margin-top: 10px;
  font-weight: 300;
  color: #ff00ff;
}

.hero-overlay a {
  display: inline-block;
  margin-top: 15px;
  color: #00fff7;
  text-decoration: none;
}

.hero-overlay a:hover {
  color: #00fff7d1;
}

.content-page {
  padding-top: 70px;
  text-align: justify;
}

.heading {
  padding-bottom: 15px !important;
}
