/* Shield Labs - Main Stylesheet */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html {
  min-height: 100%;
}

body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  background-color: #EDBF3A;
  min-height: 100vh;
  padding-bottom: 20px;
}

a {
  color: #0000FF;
  text-decoration: underline;
}
a:visited {
  color: #800080;
}
a:hover {
  color: #0000FF;
}
a:active {
  color: #EE0000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
.site-header {
  padding: 56px 0 0;
}
.site-header .page-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-logo {
  height: 25px;
  width: auto;
}
.site-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: #000;
  text-transform: lowercase;
}

/* Hamburger button */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: opacity 0.2s;
}
.hamburger-btn:hover {
  opacity: 0.7;
}
.hamburger-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #616161;
  border-radius: 3px;
}

/* Fullscreen menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(68, 68, 68, 0.9);
}
.menu-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-overlay nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
.menu-overlay .menu-item {
  position: relative;
}
.menu-overlay .menu-item > a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-left: 1px solid #FF0000;
  border-right: 1px solid #FF0000;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.menu-overlay .menu-item > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu-overlay .menu-item > a:visited {
  color: #fff;
}
.menu-overlay .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 100%;
}
.menu-overlay .submenu a {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #777;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.menu-overlay .submenu a:hover {
  background-color: #aaa;
}
.menu-overlay .submenu a:visited {
  color: #000;
}
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ED1C24;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
  z-index: 1001;
  transition: background-color 0.2s;
}
.menu-close:hover {
  background-color: #616161;
}

/* Main content */
.site-main {
  padding: 50px 0 30px;
}

/* Page title */
.page-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Intro / hero text */
.intro-text {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* Floating nav - removed, kept class for cleanup */
.floating-nav {
  display: none;
}

/* Service cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}
.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  min-height: 90px;
  background-color: #998675;
  text-decoration: none;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px;
  transition: background-color 0.2s, transform 0.2s;
}
.service-card:hover {
  background-color: #806f5f;
  color: #000;
  transform: translateY(-2px);
}
.service-card:visited {
  color: #000;
}

/* Featured card */
.featured-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 90px;
  background-color: #998675;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px;
  margin: 0 auto 50px;
}

/* Content sections */
.content-section {
  margin-bottom: 30px;
  max-width: 800px;
}
.content-section h2 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 30px 0 14px;
}
.content-section h2:first-child {
  margin-top: 0;
}
.content-section p {
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}
.content-section ul li {
  line-height: 1.8;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
.content-section ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
}

/* Accordion */
.accordion-item {
  margin-bottom: 2px;
}
.accordion-header {
  font-size: 13px;
  font-weight: bold;
  background-color: #998675;
  color: #000;
  border: none;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace;
  transition: background-color 0.2s;
}
.accordion-header:hover {
  background-color: #806f5f;
}
.accordion-content {
  display: none;
  padding: 14px 16px;
  background-color: rgba(153, 134, 117, 0.25);
  line-height: 1.8;
  font-size: 13px;
}
.accordion-content.active {
  display: block;
}

/* Two-column layout */
.two-col {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.two-col > .col {
  flex: 1;
  min-width: 300px;
}
.col-heading {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

/* Under construction notice */
.under-construction {
  font-size: 14px;
  color: #000;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

/* Footer */
.site-footer {
  padding: 20px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
.site-footer a {
  color: #0000FF;
}

/* Contact form */
.contact-form {
  max-width: 500px;
  margin: 20px 0;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #998675;
  background: #f5d76e;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 30px;
  background-color: #998675;
  color: #000;
  border: none;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace;
  transition: background-color 0.2s;
}
.contact-form button:hover {
  background-color: #806f5f;
}

/* Store grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.product-card {
  background-color: #998675;
  padding: 15px;
  text-align: center;
}
.product-card img {
  margin: 0 auto 10px;
}
.product-card h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card .btn {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 6px 16px;
  background-color: #EDBF3A;
  color: #000;
  text-decoration: none;
  transition: background-color 0.2s;
}
.product-card .btn:hover {
  background-color: #d4a82e;
}

/* Social link */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .intro-text {
    text-align: left;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    flex-direction: column;
  }
  .menu-overlay nav {
    flex-direction: column;
    align-items: center;
  }
  .menu-overlay .submenu {
    position: static;
  }
}
