/* Header Specifics */
.me-header {
  width: 100%;
  /* Default background can be white or green, depending on your preference.
     I'll set it to white for now so the split shows up. */
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

/* THE 25/75 SPLIT 
   We use CSS Grid to create a strict 25% | 75% layout.
*/
.header-row {
  display: grid;
  /* First column 25%, Second column fills the rest (1fr) */
  grid-template-columns: 25% 1fr;
  align-items: center;
  width: 100%;
}

/* Brand Section (The 25%) */
.brand-link {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers logo in the 25% box */
  /* YOUR PREFERRED HEIGHT - RESTORED */
  height: 140px;
  /* If you want the Green background BEHIND the logo only: */
  background-color: #35C148;
  /* Ensure no padding kills the full height look */
  padding: 0 20px;
}

.brand-logo-img {
  height: 80%; /* Adjusts logo size RELATIVE to the 150px container */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Section (The 75%) */
.main-nav {
  padding: 0 40px; /* Breathing room for the links */
  background-color: #888; /* Or whatever color you want the right side to be */
  height: 100%; /* Ensures it matches the 150px height */
  display: flex;
  align-items: center; /* Vertically centers the links */
  justify-content: flex-end; /* Pushes links to the far right */
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #3AC33D; /* Green hover effect */
}

.nav-cta {
  background: #0056b3;
  color: white !important;
  padding: 12px 24px;
  border-radius: 4px;
}
.nav-cta:hover {
  background: rgb(0, 61.4972067039, 128);
}

/* Screen Reader Only Class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Variables (You can move these to a _variables.scss later if you want) */
/* Deep Electrical Blue */
/* Global Layout */
.me-wrapper {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #111;
  line-height: 1.6;
  width: 100vw;
}

/* Hero Section */
.me-hero {
  position: relative;
  background-color: #222; /* Fallback color */
  background-image: url("https://masterselectric.us/wp-content/uploads/2025/12/LightsOnApartments-scaled.png");
  background-size: cover;
  background-position: center;
  color: white;
  margin: 0;
  padding: 120px 20px;
  text-align: center;
}

.me-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Darkens the image so text pops */
  z-index: 1;
}

.me-hero-content {
  position: relative;
  z-index: 2; /* Sits on top of overlay */
}

.me-title {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.me-subtitle {
  font-size: 1.75rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 0 10px;
}

.btn-primary {
  background: #35C148;
  border: 2px solid #35C148;
  color: white;
}
.btn-primary:hover {
  background: transparent;
  border-color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-secondary:hover {
  background: white;
  color: #111;
}

/* Sections */
.me-section {
  padding: 0px 20px;
}

.me-bg-light {
  background-color: #f9f9f9;
}

.me-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.me-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Grid System */
.me-grid {
  display: grid;
  gap: 30px;
}

.me-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Service Cards */
.me-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.me-card:hover {
  transform: translateY(-5px);
}
.me-card .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.me-card h3 {
  margin-bottom: 15px;
  color: #35C148;
}

/* Footer */
.me-footer {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 40px 20px;
}
.me-footer a {
  color: white;
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
