/* ==== Reset & Global Styles ==== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0; padding: 0;
  font-family: 'Public Sans', Arial, sans-serif;
  color: #23366D;
  background: #fcfcff;
}

a { color: #2b7ac9; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ==== Full-bleed Section Backgrounds ==== */
.intro-bg {
  width: 100vw;
  min-height: 100vh;
  background: url('images/intro-bg.png') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.about-bg {
  width: 100vw;
  min-height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.contact-bg {
  width: 100vw;
  min-height: 90vh;
  background: url('images/contact-bg.png') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5;
}

/* ==== Panels (Centered Content Box) ==== */
.panel {
  max-width: 1100px;
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Optional extra offset for About and Contact panels */

.about-panel .brandmark + p,
.contact-panel .brandmark + p {
  font-size: clamp(1.2em, 2.5vw, 2.2em);
  line-height: 1.3;
} 

.about-panel { 
  color: #23366D;
  text-align: center; 
  display: flex;
  flex-direction: column;
}

.contact-panel { 
  text-align: center; 
  display: flex;
  color: #23366D;
  flex-direction: column;
}

.about-panel h3,
.contact-panel h3 {
  font-size: clamp(2em, 5vw, 4em);
  font-weight: 300;  /* match your style */
  margin-bottom: 0.1em;
  color: #FF914D; 
  text-align: center;
}

.about-cards {
  display: flex;
  gap: 2vw;
  margin-top: 2em;
  width: 100%;
  justify-content: center;
}

.about-card {
  flex: 1 1 0;
  background: rgba(255,255,255,0.94);
  border-radius: 12px;
  padding: 2em 1.5em;
  box-shadow: 0 3px 16px 0 rgba(44,54,109,0.10);
  color: #23366D;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}

.about-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25em;
  font-weight: 700;
  color: #FF914D;
}

.about-card p {
  margin: 0;
  font-size: 1em;
  text-align: center;
}
@media (max-width: 900px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .about-card {
    width: 100%;
    min-width: 0;
    max-width: 600px; /* or 100% if you want edge-to-edge, or any consistent value */
  }
}


/* ==== Experience ==== */
.experience-bg {
  background: #fff;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.experience-panel {
  max-width: 1100px;
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #23366D; 
}

.experience-panel h3 {
  font-size: clamp(2em, 5vw, 4em);
  font-weight: 300;
  margin-bottom: 0.2em;
  color: #FF914D;
  text-align: center;
  margin-top: 1em;
}

.experience-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 32px;
}

.experience-headshot {
  margin-bottom: 0px;
  margin-top: 0px;
  justify-content: center;
  align-items: center;
}

.experience-description {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* or flex-start for left-align */
}



.orange-bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 1em;
}

.orange-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  text-align: left;
}

.orange-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #FF914D;
  border-radius: 50%;
  display: inline-block;
}

.linkedin-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 8px;
}

.linkedin-link a {
  background: #fff;
  color: #23366D;
  font-family: 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  padding: 12px 28px;
  border-radius: 28px;
  border: 2px solid #23366D;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08em;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.linkedin-link a:hover {
  background: #f5f7fa;
  color: #FF914D;
  border-color: #FF914D;
}

.linkedin-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


/* ==== Branding ==== */
.brandmark img {
  display: block;
  margin: 0 auto 10px;
  max-width: 2em;   /* scales relative to font size of .brandmark */
  height: auto;
}

.brandmark {
  display: column;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 8px 0 18px 0;
  font-size: 4.4em; /* Or whatever overall scaling you want */
  gap: 0.2em;
}
.brandmark.center {
  justify-content: center;
  margin-left: auto; margin-right: auto;
}
.double {
  font-family: 'Public Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: 1.2em;   /* This is relative to .brandmark font-size */
  text-transform: uppercase;
  letter-spacing: -0.06em;
  color: #23366D;
  margin-right: .05em;
}
.notion {
  font-family: 'Glass Antiqua';
  font-weight: 400;
  font-size: 1.85em; /* Smaller than DOUBLE; experiment with 0.9em, 0.7em, etc */
  color: #FF914D;
  position: relative;
  top: -0.0em;
}
.union {
  font-family: 'Glass Antiqua';
  font-size: clamp(1.2em, 3vw, 2.2em);
  color: #23366D;
  margin-top: 0;
  margin-bottom: 14px;
}

/* ==== Content Styles ==== */
.intro {
  font-size: clamp(1.2em, 2.5vw, 2.2em);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
h3 {
  margin: 28px 0 10px 0;
  font-size: 3.5em;
  font-weight: 300;
}
p { font-size: 1em; line-height: 1.7; word-break: break-word; }

footer {
  background: #f5f7fa;
  text-align: center;
  font-size: 0.9em;
  padding: 20px 0 9px 0;
  border-top: 1px solid #e9ecef;
}


/* Menu section */
.main-menu {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 6px rgba(44,54,109,0.04);
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1em;     
  padding-bottom: 1em;
}

.menu-brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.menu-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 4px;
}

.menu-company {
  font-weight: 700;
  font-size: 1.13em;
  color: #23366D;
  letter-spacing: 0.01em;
}

.main-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.2em;
}

@media (max-width: 700px) {
  .main-menu {
    flex-direction: column;
    align-items: stretch;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .main-menu ul {
    justify-content: center;
    gap: 1.1em;
    padding: 0.5em 0.5em;
  }
  .menu-brand {
    margin-bottom: 0.4em;
    justify-content: center;
  }
}




/* Icons styling */
.contact-icons {
  display: flex;
  gap: 1.8em;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  font-size: 1.65em;
  color: #23366D;
}

.contact-icons a, .contact-icons span {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-icons a:hover, .contact-icons span:hover {
  color: #FF914D;
}


.menu-button {
  background: #FF914D;
  color: #fff !important;
  padding: 0.5em 1.3em;
  border-radius: 22px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(44,54,109,0.13);
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.menu-button:hover,
.menu-button:focus {
  background: #e86a1a;
  color: #fff;
  text-decoration: none;
}



/* ==== Email rendered in parts with CSS content ==== */
.email-css-content::before {
  content: "info";
}
.email-css-content::after {
  content: "@doublenotion.com";
}
.email-css-content {
  text-decoration: none;
  color: #23366D;
  font-weight: 400;
  cursor: default;
  display: inline-block;
  font-size: clamp(1.2em, 2.5vw, 1.2em);
}


/* ==== Responsive ==== */
@media (max-width: 900px) {
  .about-panel { margin-left: 3vw; }
  .contact-panel { margin-right: 3vw; }
}
@media (max-width: 700px) {
  .about-bg, .contact-bg { justify-content: center; }
  .about-panel, .contact-panel { margin-left: 0; margin-right: 0; }
}
@media (max-width: 600px) {
  .panel { max-width: 98vw; padding: 18px 2vw; border-radius: 11px;  }
  .brandmark {
    font-size: 2.5em;  /* Shrink base size for smaller screens */
  .double {
    font-size: 1em;    /* Maintain the ratio */
  }
  .notion {
    font-size: 1.5em;  /* Maintain the ratio */
  }
  .union {
    font-size: 1.1em;
    text-align: center;
  }
  .brandmark.center {
    font-size: 1.18em;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  h3, .union, .intro, p, footer {
    font-size: 1em !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

