/* ===============================
   ATMS Home Base
================================ */

html,
body {
  margin: 0;
  padding: 0;
}

.atms-home,
.atms-home * {
  box-sizing: border-box;
}

.atms-home {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
}

/* ===============================
   Header
================================ */

.atms-site-header {
  width: 100%;
  height: 118px;
  background: #056fbf;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}

.atms-header-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.atms-header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.atms-header-logo img {
  display: block;
  width: 145px;
  height: auto;
}

.atms-header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.atms-header-nav a {
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.atms-header-nav a:hover {
  color: #ffffff;
  opacity: 0.75;
}

.atms-header-button {
  margin-left: 28px;
  min-width: 99px;
  height: 47px;
  padding: 0 19px;
  border-radius: 7px;
  background: #4293d2;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.atms-header-button:hover {
  background: #3b86c1;
  color: #ffffff;
}

/* ===============================
   Responsive Header
================================ */

@media (max-width: 1100px) {
  .atms-header-inner {
    max-width: 100%;
    padding: 0 32px;
  }

  .atms-header-nav {
    gap: 22px;
  }

  .atms-header-button {
    margin-left: 22px;
  }
}

@media (max-width: 900px) {
  .atms-site-header {
    height: 90px;
  }

  .atms-header-nav,
  .atms-header-button {
    display: none;
  }

  .atms-header-logo img {
    width: 135px;
  }
}

@media (max-width: 480px) {
  .atms-site-header {
    height: 78px;
  }

  .atms-header-inner {
    padding: 0 20px;
  }

  .atms-header-logo img {
    width: 120px;
  }
}