﻿
/* ── Top utility bar ── */
.top-bar {
  background-color: #f3f3f6;
  height: 52px;
}
.top-bar .nav-link {
  color: #1b365d;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 0.75rem;
  display: flex !important;
  align-items: center !important;
  gap: 4px;
}
.top-bar .nav-link:hover {
  color: #2e5fa3;
}

/* ── Logo + Nav wrapper ── */
.nav-logo-wrapper {
    position: relative;
  overflow: visible;
}

/* ── Logo ── */
.logo-link {
  background-color: #1b365d;
  width: 190px;
  height: 96px;                /* 80px nav + 16px overlap */
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 10;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.logo-link img {
  width: 160px;
  height: auto;
  display: block;
}

/* ── Main nav bar ── */
.main-nav {
  background-color: #ffffff;
  min-height: 80px;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.main-nav .nav-link {
  color: #1b365d;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0 1rem;
  display: flex !important;
  align-items: center !important;
  gap: 4px;
  height: auto;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav .nav-link:hover {
  color: #2e5fa3;
  border-bottom-color: #2e5fa3;
}
.main-nav .nav-item {
  display: flex !important;
  align-items: center !important;
  height: 100%;
}
.chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

/* Mobile */
@media (max-width: 767.98px) {
  .main-nav .nav-link { height: auto; padding: 0.5rem 1rem; border-bottom: none; }
  .logo-link img { height: 60px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 340px;
  margin-top: -16px;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 340px;
  object-fit: cover;
  z-index: 0;
}



.hero-mr {
  position: relative;
  background-image: url("../images/coi-media-resources.jpg");
  min-height: 340px;
  margin-top: -16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;	
	z-index: 0;
  overflow: hidden;
}


