* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

h2 {
  font-size: 1.75em;
}

p {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.75em;
  text-transform: inherit;
}

.orange {
  color: #f16c20;
  font-style: italic;
}

#head {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10011;
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #FF5700;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  padding: 80px 20px 20px;
  list-style: none;
  z-index: 10009;
}

.menu li {
  margin: 20px 0;
  text-align: right;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  margin: 0 auto;
  position: relative;
  width: 101%;
  height: 100%;
  z-index: 2;
  max-width: 1400px;
}

.video-overlay-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
}

.video-overlay h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  padding-left: 60px;
}

.video-overlay h1::before {
  content: "";
  display: block;
  height: 50px;
  width: 50px;
  background: #FF5700;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 0px;
}

.video-overlay h2::after {
  content: "";
  display: block;
  height: 9px;
  width: 15%;
  border-bottom: .5em solid #FF5700;
  margin-bottom: 10px;
}

main {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

section.about {
  display: flex;
  padding-top: 100px;
}

section.about > * {
  flex: 1;
}

section.about img {
  width: 100%;
  max-width: 520px;
  margin-bottom: 15px;
  border-radius: 8px;
}

section.about .text h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.officers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.officers .intro h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: normal;
  color: #111;
}

.officers .intro strong {
  font-weight: bold;
}

.officers .top-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.officers .regional-contacts {
  grid-column: 1 / span 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.officers .contact {
  text-align: center;
}

.officers .photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.officers .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);          /* make B&W */
    -webkit-filter: grayscale(100%);  /* Safari */
}

.officers .top-contacts .title,
.officers .regional-contacts .region {
  color: #FF5700;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.officers .regional-contacts .region {
  display: block;
}

.officers .contact .name {
  color: #333;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.officers .contact .email a {
  color: #FF5700;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.officers .contact .phone {
  color: #666;
  font-size: 0.95rem;
}

.img-hover {
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.img-hover:hover {
    transform: scale(1.03);
}

/* Tablets & small desktops */
@media (max-width: 1200px) {
  /* Shrink the video headline */
  .video-overlay h1 {
    font-size: 3rem;
  }
  /* Stack the about section */
  section.about {
    flex-direction: column;
    align-items: center;
  }
  section.about .text {
    padding: 0px 20px;
  }
  section.about img {
    max-width: 80%;
  }
}

/* Landscape phones & tablets */
@media (max-width: 768px) {
  /* Menu text smaller */
  .menu li a {
    font-size: 1.5rem;
  }
  /* Center video overlay content */
  .video-overlay-content {
    padding: 0 20px;
  }

  .about-img img{
    display: block;
    margin: 5px auto;
  }
  .video-overlay h1 {
    font-size: 2.5rem;
    padding-left: 40px;
  }
  .video-overlay h1::before {
    height: 30px;
        width: 30px;
        top: 9px;
        left: 20px;
}
  /* Officers → single column */
  .officers {
    grid-template-columns: 1fr;
    display: block;
  }
  .officers .top-contacts {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .officers .intro {
    text-align: center;
  }

  
}

/* Portrait phones */
@media (max-width: 480px) {
  h2 {
    font-size: 1.5em;
  }
  p {
    font-size: 1.2em;
    line-height: 1.4em;
  }
  /* Slightly smaller hamburger */
  .hamburger {
    width: 24px;
    height: 18px;
  }
  .hamburger .bar {
    height: 3px;
  }
  /* Tighter menu padding */
  .menu {
    padding: 60px 15px 15px;
  }
  .menu li {
    margin: 15px 0;
  }
  .video-overlay h1 {
    font-size: 2rem;
  }
  /* Tweak officer photos */
  .officers {
    padding: 40px 10px;
  }
  .officers .photo {
    width: 100px;
    height: 100px;
  }
}
  