body {
  margin: 0;
  font-family: "Aptos Narrow", sans-serif;
  background-color: #f9f9f9;
}

.top-bar {
  background-color: #5800cc;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
}

.logo img {
  height: 30px;
}

.menu {
  position: fixed;
  top: 50px;
  left: -200px;
  width: 200px;
  height: 100%;
  background-color: #ffffff;
  border-right: 2px solid #e1e0e0;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.menu.open {
  left: 0;
}

.menu a {
  display: block;
  margin-bottom: 15px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}

.menu a:hover {
  background-color: #ffffff;
}

.main {
  margin-top: 80px;
  text-align: center;
  padding: 40px;
}

.brand-text {
  font-weight: bold;
  font-size: 24px;
  color: white;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 1px;
}

.brand-text .ai {
  font-size: 22px;
  color: rgb(236, 217, 109);
  text-transform: uppercase;
  vertical-align: baseline;
  margin: 0 1px;
}

.banner-container {
  position: relative;
  width: 100%;
  height: auto;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 25%;               /* 45% down from the top */
  right: 46%;             /* Slightly off-center to the right */
  color: white;
  font-size: 18px;
  z-index: 10;            /* ✅ Ensures it's above the image */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Optional contrast */
}

.footer {
  text-align: center;
  padding: 30px 0 20px;
  background-color: transparent;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-main {
  font-size: 28px;
  color: black;
  font-weight: bold;
}

.footer-sub {
  font-size: 8px;
  color: black;
  margin-top: 5px;
}