/* =======================
   BASE HEADER
======================= */

.nhs-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: #d71920;
  overflow: visible; 
  padding: 0 70px;
}

/* BIG white left shape (FULL WIDTH) */
.nhs-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 23%;
  height: 100%;
  background: #fff;
  z-index: 1;

  /* diagonal cut */
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

/* INNER CONTAINER */
.header-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  z-index: 2;
}

/* =======================
   LOGO AREA
======================= */

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 24px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

/* Keep content above shapes */
.logo,
.menu,
.contact-btn {
  position: relative;
  z-index: 2;
}

/* =======================
   MENU (DESKTOP)
======================= */

.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #FFB000;
  font-weight: 800;
}

.menu a.active {
  color: #FFB000;
  font-weight: 800;
}

/* =======================
   CONTACT BUTTON
======================= */

.contact-btn {
  background: #FFB000;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  font-size: 15px;;
}

.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active {
  background: #000;
  color: #fff !important;
  text-decoration: none;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Hide mobile contact on desktop */
.mobile-contact {
  display: none;
}


/* =======================
   MOBILE HEADER
======================= */

@media (max-width: 1019px) {
  .nhs-header {
    position: fixed;
    top: 0;
    background: white;
    padding: 0px;
  }

  .header-inner {
    background: white;
    border-radius: 0;
    padding: 14px 18px;
  }

  /* MENU DROPDOWN */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    z-index: 9999;
  }

  .menu.show {
    display: flex;
    padding-bottom: 25px;
  }

  .menu a {
    font-size: 16px;
    text-align: center;
    color: black;
    font-weight: 700;
  }

  .menu a.active {
    font-weight: 800;
  }

  /* Hide desktop button */
  .desktop-only {
    display: none;
  }

  /* HAMBURGER */
  .hamburger {
    width: 40px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;

    background: #d71920;   /* RED background */
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  /* HAMBURGER LINES */
  .hamburger span {
    height: 3px;
    background: #fff;      /* WHITE lines */
    border-radius: 2px;
    transition: 0.3s;
  }

  .logo {
    padding: 0px;
  }
}

/* HIDE mobile contact on desktop */
.mobile-contact {
  display: none;
}

@media (max-width: 1019px) {
  .mobile-contact {
    display: block;
    margin-top: 0px;
    padding-top: 0px;
    font-weight: 600;
    color: #fff;
  }
}

.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active {
  background: #FFB000; /* RED */
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 1012px) {

  /* TURN OFF THE WHITE DIAGONAL SHAPE */
  .nhs-header::before {
    display: none;
  }

  .nhs-header {
    background: white;
  }

  .header-inner {
    background: white;
  }

  /* FIX MENU DROPDOWN POSITION */
  .menu {
    top: 72px;
  }
}
