/* General Settings */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

/* Header */

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 1000;
}

/* Bootstrap Navbar Customization */

.anthem-navbar {
  padding: 18px 0;
}

.logo img {
  width: 50px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fff;
}

/* Mobile Menu Button */

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 10px;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Hero Section */

.hero {
  min-height: calc(100vh - 91px);
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  font-size: clamp(18px, 2vw, 24px);
  margin: 0;
}

/* Other Sections */

section:not(.hero) {
  padding: 100px 0;
}

/* Footer */

footer {
  text-align: center;
  padding: 30px 0 50px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Canvas */

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  pointer-events: none;
}

/* Responsive Navbar */
.mobile-menu-box {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .anthem-navbar {
    padding: 16px 0;
  }

  .navbar-nav {
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .hero {
    min-height: calc(100vh - 83px);
  }
}

/* Small Screens */

@media (max-width: 600px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }
}