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

body {
  background: #020912;
  color: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #020912;
}

.topbar {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  background: rgba(2, 9, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.brand-logo img {
  max-height: 70px;
  width: auto;
  display: block;
}

.email-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.email-link i {
  color: #ff8a00;
  font-size: 20px;
}

.email-link:hover {
  color: #ff8a00;
}

.hero-section {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 92px);
  background-image: url("banner.PNG");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(2, 9, 18, 0.65),
      rgba(2, 9, 18, 0.82)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .topbar {
    min-height: 78px;
  }

  .brand-logo img {
    max-height: 54px;
  }

  .email-link {
    font-size: 14px;
  }

  .hero-section {
    min-height: calc(100vh - 78px);
    background-position: center;
  }
}

@media (max-width: 480px) {
  .topbar .container-fluid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .brand-logo img {
    max-height: 46px;
  }

  .email-link span {
    display: none;
  }

  .email-link i {
    font-size: 22px;
  }
}