/* ════════════════════════════════════════
   Grid Edge Advisors — style.css
   Last updated: August 2026
   ════════════════════════════════════════ */


/* ── 1. Color Variables ── */
:root {
  --teal:      #9BDEE0;
  --anchor-blue:     #2B4A8C;
  --anchor-light:    #4D6BAD;
  --anchor-pale:     #C5D0E8;
  --anchor-dark:     #1E3568;
  --navy:            #1C2B4A;
  --navy-mid:        #2D3F63;
  --navy-light:      #4A5E82;
  --amber:           #FAAF52;
  --amber-dark:      #D4893A;
  --amber-pale:      #FDE8C8;
  --warm-gray:       #C4BEBE;
  --warm-gray-dark:  #8F8888;
  --cool-gray:       #F0EFEF;
  --white:           #FFFFFF;
  --black:           #000000;
}


/* ── 2. Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;

}


/* ── 3. Global Typography ── */
h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
}

h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.4;
}


/* ── 4. Global Link Styles ── */
a {
  color: var(--teal);
  text-decoration: underline;
}

a:visited {
  color: #2e4070;
  text-decoration: underline;
}

a:hover {
  color: var(--amber);
  text-decoration: underline;
}


/* ── 5. Layout — Shared Width & Shadow ── */
header,
.menu-bar,
main,
footer {
  width: 100%;

}

.page-wrapper {
  width: 100%;
  max-width: 1100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow:
     4px 0 6px rgba(0, 0, 0, 0.3),
    -4px 0 6px rgba(0, 0, 0, 0.3);
}


/* ── 6. Header ── */
header {
  background-color: var(--cool-gray);
  background-image: 
    url('images/GEA-Dot-Upper-Left-2.png'),
    url('images/GEA-Dot-Lower-Right-2.png');
  background-position: 
    top left,
    bottom right;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size: 
    auto,
    auto;
  position: sticky;
  height: 180px;
  top: 0;
  z-index: 99;

}

.header-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
}

.logo-img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.logo-mobile {
  display: none;
}

/* ── 6c. Header Logo ── */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: -20px;
  margin-left: auto;
  padding-right: 1rem;
  text-decoration: none !important;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-decoration: none !important;
}

.logo-grid {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.75);
}

.logo-edge {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--anchor-blue);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.75);
}

.logo-advisors {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.75);
}

.logo-loop {
  height: 120px;
  width: auto;
  filter: drop-shadow 2px 2px 2px rgba(255, 255, 255, 0.75);
}



/* ── 6b. Header Tagline ── */
.header-tagline {
  position: absolute;
  bottom: 7px;
  right: 1rem;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.75);
}



/* ── 7. Menu Bar ── */
.menu-bar {
  background-color: var(--warm-gray);
  border-top: 3px solid var(--anchor-blue);
  position: fixed;
  top: 180px;
  width: 100%;
  max-width: 1100px;
  z-index: 100;
  height: 37px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  letter-spacing: 0.06em;
  overflow: visible;
}

/* ── 7a. Menu Bar Nav Links ── */
nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.menu-bar nav a,
.menu-bar nav a:visited {
  color: var(--cool-gray);
  text-decoration: none;
  height: 37px;
  line-height: 37px;
  padding: 0 0.8rem;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;

}

.menu-bar > nav > a:hover {
  color: var(--navy);
  background-color: var(--cool-gray);
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(196, 190, 190, 0.75);
  margin-top: 0;
  max-height: 35px;
  border-top: 0px solid var(--anchor-blue);
}

.menu-bar nav .dropdown:hover > a {
  color: var(--navy);
  background-color: var(--cool-gray);
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(196, 190, 190, 0.75);
  border-top: 1px solid var(--anchor-blue);
  
}


/* ── 8. Dropdown Menu ── */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 37px;
  margin-top: 0px; 
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 37px;
  left: 0;
  background-color: var(--cool-gray);
  min-width: 220px;
  width: max-content;
  z-index: 200;
  margin-top: 0;
  flex-direction: column;

  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
             -4px 4px 8px rgba(0, 0, 0, 0.3);

}

.menu-bar nav .dropdown-content a,
.menu-bar nav .dropdown-content a:visited {
  all: unset;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 40px;
  color: var(--anchor-blue);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
}

.menu-bar nav .dropdown-content a:hover {
  all: unset;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 40px;
  background-color: var(--anchor-pale);
  color: var(--navy);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
}


.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}


/* ── 9. Main Content Area ── */
main {
  flex: 1;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--cool-gray);
}

.main-inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: var(--cool-gray);
  padding: 4rem 0.5rem 3rem;
  text-align: center;
}

main p {
  margin-bottom: 1rem;
}


/* ── 10. Status Badge ── */
.status-badge {
  display: inline-block;
  background-color: var(--amber);
  color: var(--navy);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
}


/* ── 11. Images ── */
.img-left {
  float: left;
  margin: 0.25rem 1.5rem 1rem 0;
  border: 1px solid var(--warm-gray);
  background: #f5f5f5;
  padding: 6px;
}

.img-right {
  float: right;
  margin: 0.25rem 0 1rem 1.5rem;
  border: 1px solid var(--warm-gray);
  background: #f5f5f5;
  padding: 6px;
}

.img-center {
  display: block;
  margin: 0 auto 1rem auto;
  border: 1px solid var(--warm-gray);
  background: #f5f5f5;
  padding: 6px;
}

.image-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 40px;
}

.image-card {
  flex: 1;
  border: 1px solid var(--warm-gray);
  overflow: hidden;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.image-label {
  background-color: var(--anchor-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.image-label.after {
  background-color: var(--anchor-light);
  color: var(--white);
}


/* ── 12. Services Section ── */
.services {
  width: 100%;
  background-color: #f8f9fc;
  border: 1px solid var(--warm-gray);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.services-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  color: var(--amber);
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  justify-content: center;
}


/* ── 13. CTA ── */
.cta-wrapper {
  width: 100%;
  background-color: #f8f9fc;
  border: 1px solid var(--warm-gray);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: center;
}

.cta {
  text-align: center;
  margin-bottom: 16px;
}

.cta a,
.cta a:visited {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background-color 0.2s;
}

.cta a:hover {
  background-color: var(--teal);
  color: var(--navy);
  text-decoration: none;
}


/* ── 14. Footer ── */
footer {
  background-color: var(--anchor-blue);
  border-top: 2px solid var(--amber);
  padding: 1rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white);
}

footer a,
footer a:visited {
  color: var(--anchor-pale);
  text-decoration: underline;
}

footer a:hover {
  color: var(--warm-gray);
  text-decoration: underline;
}


/* ── 15. Mobile ── */
@media (max-width: 768px) {
  .logo-mobile {
    display: block;
    width: 100%;
    max-width: 375px;
    height: auto;
  }
  .logo-lockup {
    display: none;
  }
  .header-tagline {
    display: none;
  }

  .hide-mobile {
    display: none !important;
  }

}
