* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #777777;
  color: #0f172a;
}

a {
  text-decoration: none;
  color: inherit;
}

body.no-scroll {
  overflow: hidden;
}

body {
  background: #eeeeee;   
} 

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;          
  z-index: 900;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

header.hide-on-scroll {
  transform: translateY(-100%);
}

#nav-spacer {
  height: 100;
  background: #000;
}

.header-top {
  background: #2f7fdc;
  color: #e5e7eb;
  padding: 12px 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.social-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  opacity: 0.9;
}

.social-link:hover {
  opacity: 1;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.logo-text-small {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #dbeafe;
}

.logo-text-main {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.contact-info {
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  justify-self: end;
}

.contact-info a {
  color: #000000;
  font-weight: 600;
}

.hours {
  font-size: 11px;
  opacity: 0.85;
}


.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px 12px;
  background: #3b3b3b;
  border-bottom: 1px solid #1f2937;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-box {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: #141414;
  color: #e5e7eb;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav-box:hover {
  background: #2f7fdc;
  color: #ffffff;
  border-color: #2f7fdc;
}

main {
  padding: 0 16px 40px;
  text-align: center;
  color: #5FA6C8;
  font-size: 14px;
}

.mobile-menu-btn {
  position: absolute;
  left: 10px;
  top: 50%;                     
  transform: translateY(-50%);
  z-index: 950;
  width: 46px;                  
  height: 46px;
  border-radius: 6px;
  border: 1px solid #6b7280;
  background: #3b3b3b;
  display: none;              
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: #f9fafb;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 980;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #2f7fdc;
  color: #ffffff;
  padding: 18px 16px;
  transition: left 0.25s ease;
  z-index: 990;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 12px;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-logo span {
  font-size: 13px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.drawer-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.drawer-contact,
.drawer-social {
  margin-bottom: 18px;
  font-size: 13px;
}

.drawer-contact h4,
.drawer-social h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.drawer-contact p {
  margin-bottom: 4px;
}

.drawer-contact a,
.drawer-social a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.drawer-social a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}

@media (max-width: 1000px) {
  .header-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .header-social {
    display: none;
  }

  .nav-bar {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 1000px) {
  .contact-info {
    display: none;
  }
}

body.home-page {
  background: #000000;
  overflow-x: hidden; 
}

body.home-page main {
  background: #eeeeee;
}

body.home-page main {
  background: #eeeeee;
}
body {
  max-width: 100%;
  overflow-x: hidden;
}



