@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@700;800&display=swap");
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body, p, li {
  font-family: "Inter", sans-serif;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.button {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0B151F;
  margin: 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 7rem;
}
.header .logo {
  height: fit-content;
  padding: 5px 0;
}
.header .logo a {
  text-decoration: none;
}
.header .logo #logo-name {
  height: 80px;
  width: auto;
}
.header .logo #logo {
  height: 70px;
}
.header .nav {
  width: 30%;
}
.header .nav ul {
  display: flex;
  justify-content: space-between;
  align-items: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav ul li a {
  text-decoration: none;
  color: #bec3c5;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
}
.header .nav ul li a:hover {
  color: white;
  transition: width 0.3s ease;
}
.header .nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 3px;
  background-color: #063b64;
  transition: width 0.3s ease;
}
.header .nav ul li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
}

.menu-overlay {
  display: none;
}

.hamburger {
  display: none;
  width: 2.5rem;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #dfe6f3;
  margin-bottom: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile {
  display: none;
}

.footer {
  background-color: #0B151F;
  color: #dfe6f3;
  text-align: center;
  padding: 2rem 1rem;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .container p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 1600px) {
  .header .nav {
    width: 40%;
  }
}
@media (max-width: 1400px) {
  .header .nav {
    width: 45%;
  }
}
@media (max-width: 1200px) {
  .header .nav {
    width: 50%;
  }
  .header .container {
    padding: 0 3rem;
  }
}
@media (max-width: 1056px) {
  #hero .hero-container h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 1000px) {
  .header .nav {
    width: 55%;
  }
  .header .container {
    padding: 0 3rem;
  }
  #hero .hero-container h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 913px) {
  .header .nav {
    width: 60%;
  }
  #hero .hero-container h1 {
    font-size: 2rem;
  }
}
@media (max-width: 880px) {
  #hero .hero-container h1 {
    font-size: 1.8rem;
  }
  #hero .hero-container h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 795px) {
  #hero .hero-container h1 {
    font-size: 1.7rem;
  }
  #hero .hero-container h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 780px) {
  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    transition: opacity 0.3s ease;
  }
  .nav-toggle:checked ~ .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .hamburger {
    z-index: 1000;
    display: block;
    position: relative;
    cursor: pointer;
  }
  .hamburger span {
    transition: all 0.3s ease;
  }
  .nav-mobile {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    width: 65vw;
    height: 100vh;
    z-index: 999;
    background: linear-gradient(to bottom, #0b151f 0%, rgba(11, 21, 31, 0.5568627451) 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    padding: 10rem 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1), opacity 0.3s ease;
  }
  .nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .nav-mobile li {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1), opacity 0.4s ease;
  }
  .nav-mobile a {
    color: #bec3c5;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 1rem;
  }
  .nav-mobile a:hover {
    color: white;
  }
  /* --- Open State Logic --- */
  .nav-toggle:checked ~ .nav-mobile {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nav-toggle:checked ~ .nav-mobile li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-toggle:checked ~ .nav-mobile li:nth-child(1) {
    transition-delay: 0.18s;
  }
  .nav-toggle:checked ~ .nav-mobile li:nth-child(2) {
    transition-delay: 0.26s;
  }
  .nav-toggle:checked ~ .nav-mobile li:nth-child(3) {
    transition-delay: 0.34s;
  }
  .nav-toggle:checked ~ .nav-mobile li:nth-child(4) {
    transition-delay: 0.42s;
  }
  .nav-toggle:checked ~ .nav-mobile li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-13px);
  }
  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
  .header .nav {
    display: none;
  }
  .header .container {
    padding: 0 2rem;
  }
  #hero .hero-container h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 700px) {
  #hero .hero-container {
    padding: 0;
    width: 85%;
  }
  #hero .hero-container h1 {
    font-size: 1.6rem;
  }
  #hero .hero-container h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .footer .container p {
    font-size: 0.9rem;
  }
  #hero .hero-container {
    top: 40%;
    text-align: left;
  }
  #hero .hero-container h1 {
    font-size: 2.4rem;
  }
  #hero .hero-container h2 {
    padding-top: 2rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 540px) {
  #hero .hero-container h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 500px) {
  #hero .hero-container h1 {
    font-size: 2rem;
  }
}
@media (max-width: 490px) {
  #hero .hero-container h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 450px) {
  .container .logo #logo, .container .logo #logo-name {
    height: 50px;
  }
  .hamburger {
    width: 2rem;
  }
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #dfe6f3;
    margin-bottom: 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-mobile a {
    font-size: 1.5rem;
  }
  /* Hamburger animation */
  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header .container {
    padding: 0.5rem 3rem;
  }
  .container .logo #logo, .container .logo #logo-name {
    height: 55px;
  }
  #hero .hero-container h1 {
    font-size: 1.8rem;
  }
  #hero .hero-container h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 425px) {
  #hero .hero-container h1 {
    font-size: 1.6rem;
  }
  #hero .hero-container h2 {
    font-size: 1rem;
  }
  .nav-mobile {
    width: 100%;
  }
}
@media (max-width: 385px) {
  #hero .hero-container h1 {
    font-size: 1.5rem;
  }
  #hero .hero-container h2 {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  .header .container {
    padding: 1rem 2rem;
  }
  .container .logo #logo, .container .logo #logo-name {
    height: 55px;
  }
  #hero .hero-container h1 {
    font-size: 1.4rem;
  }
  #hero .hero-container h2 {
    font-size: 1rem;
  }
}
@media (max-width: 300px) {
  .header .container {
    padding: 1rem 1.5rem;
  }
  .container .logo #logo, .container .logo #logo-name {
    height: 50px;
  }
  #hero .hero-container h1 {
    font-size: 1.2rem;
  }
  #hero .hero-container h2 {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=common.css.map */
