/* ============================================================
   THE GAS MAN — MASTER NAV (v12)
   Clean, mobile-friendly, vanilla header + social icons
   ============================================================ */

/* NAV WRAPPER */
nav.main-nav {
  background: #FFF8E7; /* Vanilla */
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #C1272D; /* Jerry Red */
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO + SOCIAL WRAP */
.nav-logo-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.nav-logo {
  height: 48px;
  width: auto;
}

/* SOCIAL WRAPPER */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* "Follow Us" TEXT */
.follow-text {
  font-weight: 600;
  color: #0C2340; /* Navy */
  font-size: 0.9rem;
}

/* SOCIAL ICONS */
.nav-social a i {
  font-size: 1rem;
  color: #0C2340; /* Navy icons */
  transition: color 0.25s ease;
}

.nav-social a:hover i {
  color: #C1272D; /* Red hover */
}

/* DESKTOP NAV LINKS */
.nav-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-right a {
  color: #0C2340; /* Navy */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.25s ease;
}

.nav-right a:hover,
.nav-right a.active {
  color: #C1272D; /* Red on hover/active */
}

/* HAMBURGER */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.hamburger i {
  font-size: 1.75rem;
  color: #0C2340; /* Navy */
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 860px) {

  /* SHOW HAMBURGER */
  .hamburger {
    display: block;
  }

  /* STACK NAV BAR SECTIONS */
  nav.main-nav {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  /* SOCIAL + LOGO WRAP */
  .nav-logo-social {
    flex: 1;
    justify-content: space-between;
  }

  /* MOBILE MENU */
  .nav-right {
    position: absolute;
    top: 75px;
    right: 0;
    width: 100%;
    background: #FFF8E7;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid #C1272D;
    display: none;
  }

  .nav-right.show {
    display: flex;
  }

  .nav-right a {
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1.1rem;
  }

  /* SOCIAL ICONS MOBILE */
  .nav-social {
    gap: 8px;
  }

  .nav-social a i {
    font-size: 1.2rem;
  }
}

