@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-400.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-600.woff2") format("woff2");
  font-weight: 600;
}
body,
html,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: url("/img/hero-bg.png") no-repeat center / cover;
}

.header {
  padding-block: 16px;
  background-color: #011c35;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat";
  transition: color 0.4s ease;
}

.links a:hover {
  color: #9ce3ff;
}

.tab-only {
  display: none;
}

.btn {
  padding: 12px 20px;
  border-radius: 48px;
  background: linear-gradient(95deg, #ffda0f 0%, #ff5600 100%);
  text-align: center;
  color: #181530;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.btn:hover {
  background: linear-gradient(95deg, #ff5600 0%, #ffda0f 100%);
}

.hero {
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hero-title {
  color: #ebcda9;
  text-align: center;
  font-family: "Montserrat";
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid #46748e;
  background-color: #011c35;
  padding: 12px 0;
  text-align: center;
  color: #fff;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 400;
}

.modal {
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background: rgba(23, 23, 23, 0.6);
}

.modal-inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(56, 239, 198, 0.2);
  background: #011c35;
  max-width: 500px;
}

.modal-inner h4 {
  color: #fff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 16px;
}

@media (max-width: 1440px) {
  .container {
    padding-inline: 120px;
  }
}

@media (max-width: 944px) {
  body {
    background: url("/img/hero-bg-tab.png") no-repeat center / cover;
  }

  .container {
    padding-inline: 40px;
  }

  .hidden {
    display: none;
  }

  .tab-only {
    display: block;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 500px) {
  body {
    background: url("/img/hero-bg-mob.png") no-repeat center / cover;
  }

  .container {
    padding-inline: 20px;
  }

  .tab-only {
    display: none;
  }

  .hero-title {
    font-size: 20px;
  }

  .header-wrapper {
    justify-content: center;
  }

  .hero {
    padding-top: 40px;
    gap: 40px;
    padding-bottom: 40px;
  }
}
