@charset "UTF-8";
/* CSS Document */

/* =========================================
   SITE HEADER
   ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================
   TOP BAR
   ========================================= */

.top-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 34, 0.95) 0%,
      rgba(17, 49, 69, 0.93) 50%,
      rgba(8, 23, 34, 0.95) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
	
}

.top-bar p {
  margin: 0;
  text-align: center;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   MAIN HEADER
   ========================================= */

.main-header {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.84) 0%,
      rgba(12, 31, 45, 0.78) 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(8, 23, 34, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.main-header:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(142, 211, 238, 0.10) 0%, transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(79, 163, 196, 0.09) 0%, transparent 18%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li {
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 12px 5px;
  border-radius: 999px;
  font-family: "Shameimaru Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-list a:before {
  content: "";
  position: absolute;
  inset: auto 16px 10px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #8ed3ee 0%,
      #4fa3c4 40%,
      #f2a65a 100%
    );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(8, 23, 34, 0.16);
  transform: translateY(-1px);
}

.nav-list a:hover:before,
.nav-list a:focus:before,
.nav-list a.active:before {
  transform: scaleX(1);
}

/* =========================================
   FIRST LINK - BACK BUTTON STYLE
   ========================================= */

.nav-list li:first-child a {
  background:
    linear-gradient(
      135deg,
      #8ed3ee 0%,
      #4fa3c4 36%,
      #1f6c8b 100%
    );
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(8, 23, 34, 0.18);
}

.nav-list li:first-child a:before {
  display: none;
}

.nav-list li:first-child a:hover,
.nav-list li:first-child a:focus {
  background:
    linear-gradient(
      135deg,
      #9cdcf3 0%,
      #5aaecd 36%,
      #267595 100%
    );
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(8, 23, 34, 0.22);
}

/* =========================================
   NAV TOGGLE
   ========================================= */

.nav-toggle {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
  box-shadow: 0 12px 26px rgba(8, 23, 34, 0.14);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #ffffff;
  transform: translateX(-50%);
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 18px;
}

.nav-toggle span:nth-child(2) {
  top: 26px;
}

.nav-toggle span:nth-child(3) {
  top: 34px;
}

.nav-toggle.is-active span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================================
   SCROLLED STATE
   ========================================= */

.site-header.is-scrolled .main-header {
  background:
    linear-gradient(
      180deg,
      rgba(8, 23, 34, 0.94) 0%,
      rgba(11, 27, 41, 0.90) 100%
    );
  box-shadow: 0 22px 44px rgba(8, 23, 34, 0.20);
}

/* =========================================
   FOCUS
   ========================================= */

.nav-list a:focus,
.nav-toggle:focus {
  outline: 2px solid var(--sunrise-coral);
  outline-offset: 3px;
}

/* =========================================
   RESPONSIVE - 1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .nav-list {
    gap: 8px;
  }

  .nav-list a {
    padding: 11px 16px;
    font-size: 12px;
  }
}

/* =========================================
   RESPONSIVE - 1024
   ========================================= */

@media screen and (max-width: 1024px) {
  .header-inner {
    justify-content: center;
    min-height: 80px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 100%);
    height: 100vh;
    padding: 112px 24px 24px;
    align-items: flex-start;
    justify-content: flex-start;
    background:
      linear-gradient(
        180deg,
        rgba(8, 23, 34, 0.98) 0%,
        rgba(12, 31, 45, 0.97) 32%,
        rgba(18, 52, 74, 0.94) 100%
      );
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: -24px 0 48px rgba(8, 23, 34, 0.22);
    overflow-y: auto;
    transition: right 0.35s ease;
  }

  .site-navigation.is-open {
    right: 0;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    min-height: 54px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 13px;
  }

  .nav-list li:first-child a {
    justify-content: center;
    margin-bottom: 6px;
  }
}

/* =========================================
   RESPONSIVE - 768
   ========================================= */

@media screen and (max-width: 768px) {
  .top-bar p {
    font-size: 10px;
    letter-spacing: 1.1px;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-navigation {
    width: 100%;
    padding: 100px 20px 24px;
  }

  .nav-list a {
    min-height: 52px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .nav-toggle span:nth-child(1) {
    top: 16px;
  }

  .nav-toggle span:nth-child(2) {
    top: 23px;
  }

  .nav-toggle span:nth-child(3) {
    top: 30px;
  }

  .nav-toggle.is-active span:nth-child(1),
  .nav-toggle.is-active span:nth-child(3) {
    top: 23px;
  }
}

/* =========================================
   RESPONSIVE - 480
   ========================================= */

@media screen and (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-navigation {
    padding: 90px 16px 20px;
  }

  .nav-list {
    gap: 10px;
  }

  .nav-list a {
    min-height: 50px;
    padding: 14px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .nav-toggle span {
    width: 20px;
  }

  .nav-toggle span:nth-child(1) {
    top: 14px;
  }

  .nav-toggle span:nth-child(2) {
    top: 21px;
  }

  .nav-toggle span:nth-child(3) {
    top: 28px;
  }

  .nav-toggle.is-active span:nth-child(1),
  .nav-toggle.is-active span:nth-child(3) {
    top: 21px;
  }
}

/* =========================================
   RESPONSIVE - 300
   ========================================= */

@media screen and (max-width: 300px) {
  .header-inner {
    min-height: 64px;
  }

  .site-navigation {
    padding: 82px 12px 18px;
  }

  .nav-list a {
    min-height: 46px;
    padding: 12px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 19px;
  }

  .nav-toggle span:nth-child(3) {
    top: 25px;
  }

  .nav-toggle.is-active span:nth-child(1),
  .nav-toggle.is-active span:nth-child(3) {
    top: 19px;
  }
}