@charset "UTF-8";

/* =========================
   HERO IMAGES (RESTORED)
========================= */

.hero {
  background-image: url("images_2/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero2 {
  position: relative;
  background-image: url("images/Hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 0;
}

.hero3 {
  position: relative;
  background-image: url("images/Reference-Recovered.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100%;
  margin-bottom: 0;
}

.resume {
  position: relative;
  background-image: url("images/resume.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 50%;
  margin-bottom: 0;
}


/* portfolio grid */

/* =========================
   TEXT OVERLAY
========================= */

.headline{
 
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
	font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;

}

.headlinewhite{
	color: #000000;
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
	font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;

}

.body { 
	font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
	font-weight: 900;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;
text-align: center
}


.bodywhite { 
	color: #FFFFFF;
	font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
	font-weight: 900;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;
text-align: center
}

.img-text{
	color: #FFFFFF;
}

.text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}

/* =========================
   GRADIENT OVERLAY
========================= */



/* =========================
   BACKGROUNDS
========================= */

.blog-bckgrnd {
  background-color:#A5A5A5;
	  padding-right: 100px;
	 padding-left: 100px;
}

.hwc {
  background-color:#000000;

}

.bckgrnd2 {
  background-color: #00749A;
  padding-bottom: 40px;
	padding-top: 40px;
}

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

.logo {
  max-height: 50px;
}

/* =========================
   FOOTER BASE
========================= */

footer {
  margin-top: 0;
  padding: 2rem 1rem;
}

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

@media (max-width: 768px) {

  .hero,
  .hero2 {
    min-height: 50vh;
    background-position: center;
  }

  .hero3 {
    min-height: 300px;
  }

}

/* =====================================================
   🔧 ADDITIONS / FIXES (NOT REMOVING ORIGINAL CODE)
===================================================== */

/* HEADER FIX (prevents overlap + spacing issues) */
.header-wrap {
  background: white;
  position: relative;
  z-index: 10;
  padding: 15px 0;
}

/* FIX HERO3 HEIGHT CONSISTENCY */
.hero3 {
  min-height: 420px;
}

/* FULL WIDTH SECTION FIX (prevents color “missing”) */
.section-alt {
  background-color: #0b3d91 !important;
  color: white;
  width: 100%;
}

/* FIX SECTION STACKING / BLEED ISSUES */
.section,
.section-alt,
.bckgrnd2 {
  position: relative;
  z-index: 1;
}

/* BASE FOOTER BLACK */
.footer-dark {
  background-color: #000;
  color: white;
  position: relative;
  z-index: 5;
}

/* FOOTER ICONS */
.footer-dark i {
  color: white;
  transition: 0.2s ease;
}

.footer-dark i:hover {
  opacity: 0.7;
}


.container {
  position: relative;
  
}

.container img {
  display: block;
}

.tooltip {
  position: absolute;
  bottom: 100%; /* place above image */
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.container:hover .tooltip {
  opacity: 1;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}