@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", Arial, sans-serif;
  background: #121524;
}

nav {
  position: fixed;
  left: 0;
  right: 0;
  height: 70px;
  color: white;
  padding: 0 24px;
  z-index: 501;
  background-color: #06070ca8;
}

nav .logo-and-brand {
  height: 70px;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  letter-spacing: 0px;
}

nav .logo-and-brand img {
  height: 30px;
}

nav .nav-links {
  float: right;
  height: 70px;
  display: none;
  align-items: center;
  gap: 24px;
}

nav .nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

nav .nav-links a:hover {
  color: #ffd166;
}

.nav-menu-button {
  position: fixed;
  right: 16px;
  top: 0;
  height: 70px;
  background: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border: none;
}

.nav-menu-button i {
  font-size: 22px;
  line-height: 70px;
}

.drawer-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: #181b2e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drawer-menu .link-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.drawer-menu .link-container a {
  display: inline-block;
  width: 180px;
  color: white;
  margin: 8px 0;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  background: #0f1220;
}

header {
  position: relative;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(0px) brightness(0.25);
}

header .header-content {
  position: relative;
  z-index: 2;
}

header .main-text {
  color: white;
  text-align: center;
  margin: 0 30px;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 900;
  line-height: 3rem;
}

.main-sub-text {
  width: 200px;
  margin: 30px auto;
  font-size: 18px;
  font-weight: 400;
  color: gray;
}

.service-section {
  padding: 15rem 0;
  margin: 0;
  background: #181b2e;
  color: gray;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  text-align: center;
}

.service-section.bg1 {
  background: #ececec;
}

.service-section.bg2 {
  background: #dbdbdb;
}

.service-section img {
  height: 100px;
  margin-bottom: 12px;
}

.service-section h2 {
  font-size: 3rem;
  margin: 0 0 24px 0;
  color: #121524;
  line-height: 3rem;
  font-weight: 900;
}

.service-section p {
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.6;
  font-size: 1rem;
  padding: 0 30px;
}

.contact-section {
  padding: 5rem 30px;
  background: #181b2e;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #23263a;
}

.contact-section h2 {
  color: #ffd166;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-section p {
  color: #e0e0e0;
  margin-bottom: 8px;
}

.contact-link {
  color: #0077ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.social-section {
  background: #181b2e;
  color: #fff;
  padding: 5rem 30px;
  text-align: center;
  border-bottom: 1px solid #23263a;
}

.social-section h2 {
  color: #ffd166;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: #ffd166;
}

.social-links a i {
  font-size: 1.5rem;
  margin: 0 0.1rem;
}

footer {
  background: #0f1220;
  color: #dbdbdb;
  text-align: center;
  padding: 18px 0;
  font-size: 0.98rem;
  margin-top: 0;
}

/* xs */
@media (max-width: 767.98px) {
  header .mobile {
    display: block;
  }

  header .wide {
    display: none;
  }

  header .main-text {
    font-size: 2rem;
    line-height: 2rem;
  }
}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {
  nav .nav-menu-button {
    display: none;
  }

  nav .nav-links {
    display: flex;
  }

  header .header-content {
    margin-bottom: 25vh;
  }

  header .mobile {
    display: none;
  }

  header .wide {
    display: block;
  }

  header .main-text {
    font-size: 3rem;
    line-height: 3rem;
  }

  header .main-sub-text {
    width: auto;
  }
}

/* lg */
@media (min-width: 992px) {
  nav .nav-menu-button {
    display: none;
  }

  nav .nav-links {
    display: flex;
  }

  header .header-content {
    margin-bottom: 25vh;
  }

  header .mobile {
    display: none;
  }

  header .wide {
    display: block;
  }

  header .main-text {
    font-size: 4rem;
    line-height: 4rem;
  }

  header .main-sub-text {
    width: auto;
  }
}

/* xl */
@media (min-width: 1200px) {
  nav .nav-menu-button {
    display: none;
  }

  nav .nav-links {
    display: flex;
  }

  header .header-content {
    margin-bottom: 25vh;
  }

  header .mobile {
    display: none;
  }

  header .wide {
    display: block;
  }

  header .main-text {
    font-size: 5rem;
    line-height: 5rem;
  }

  header .main-sub-text {
    width: auto;
  }
}