/* ===== EDGEDEFEND CORPORATE IDENTITY STYLESHEET ===== */

/* Primary: #1B263B (Deep Baltic Blue)
   Secondary: #F3722C (Signal Orange)
   Accent: #8D99AE (Brushed Steel Gray)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ===== BASE STYLES ===== */
html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif; /* Clean, modern, industrial */
  color: #1B263B; /* Deep Baltic Blue for text */
  background-color: #F4F7F9; /* Slight blue-tinted light gray for factory-clean feel */
  margin: 0;
  padding: 0;
}

.content-wrapper {
  min-height: calc(100vh - 70px - 150px);
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: #1B263B; /* Deep Baltic Blue */
  border-bottom: 3px solid #F3722C; /* Signal Orange accent line */
  padding: 0.5rem 1rem;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.nav-title {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu a {
  color: #8D99AE; /* Brushed Steel Gray */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: #F3722C; /* Signal Orange */
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-logo img {
  height: 40px; /* Reduced from 60px for a sleeker industrial look */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  /* Optional: adds a slight "glow" to the orange E when against the dark blue navbar */
  filter: drop-shadow(0 0 2px rgba(243, 114, 44, 0.2));
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Tighter spacing for a more technical feel */
}
/* ===== HERO SECTION ===== */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from Baltic Blue to a darker shade for a hardware/industrial look */
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.95), rgba(13, 19, 30, 0.85));
}

.hero-title {
  color: white;
  font-size: 2.4rem;
  text-shadow: none; /* Modern flat design */
}

.hero-subtitle {
  color: #8D99AE; /* Steel Gray for technical subtitle */
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.2rem;
}

.hero-cta {
  background: #1B263B;
  border: 1px solid #8D99AE;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== CONTENT SECTIONS ===== */
.section-title {
  color: #1B263B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-content {
  font-family: 'Montserrat', sans-serif;
  color: #2D3748;
}

/* Technical emphasis using Monospace font */
.section-content strong {
  color: #1B263B;
  font-family: 'IBM Plex Mono', monospace;
  background-color: rgba(141, 153, 174, 0.1);
  padding: 0 4px;
}

/* ===== CONTACT PAGE & FORMS ===== */
.form-container {
  border-top: 4px solid #F3722C; /* Brand orange accent */
}

input:focus, textarea:focus {
  border-color: #F3722C;
  box-shadow: 0 0 0 3px rgba(243, 114, 44, 0.2);
}

.btn-submit {
  background-color: #F3722C; /* Signal Orange for Action */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background-color: #E6621B; /* Darker orange */
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  background-color: #F3722C;
  border: 2px solid #F3722C;
  font-family: 'IBM Plex Mono', monospace; /* Engineering feel */
  text-transform: uppercase;
}

.cta-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  background-color: #E6621B;
  border-color: #E6621B;
}

/* Google Calendar Button - Industrial Highlight */
.gc-button {
  background-color: #F3722C !important;
  color: white !important;
  border: none !important;
  font-family: 'IBM Plex Mono', monospace !important;
}

/* ===== FOOTER STYLES ===== */
.footer {
  background-color: #1B263B;
  border-top: 1px solid #8D99AE;
}

.footer-links a {
  color: #F3722C; /* Highlights stand out in dark footer */
}

.footer-links a:hover {
  color: #8D99AE;
}

.footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: #8D99AE;
}
