@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* View Transitons */
@view-transition {
  navigation: auto;
}

:root {
  --main-color: #3376ae;
  --secondary-color: #12487e;
  --title-color: #000;
  --light-color: #e7e7e9;
  --highlight-color: #f47d30;
  --main-font: "Open Sans", sans-serif;
  --bs-border-color-translucent: #000;
  --bs-border-width: 1px;
  --bs-border-radius: 0;
  font-size: 13px;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  background-color: white;
  font-family: var(--main-font);
}

.addTopBorder {
  border-top: 1px solid black;
}

.addSideBorderL {
  border-left: 1px solid black;
}

.addSideBorderR {
  border-right: 1cap solid black;
}

.addBottomBorder {
  border-bottom: 1px solid black;
}

.mainColorText {
  color: var(--main-color);
}

.lighColorText {
  color: var(--light-color);
}

.titleColorText {
  color: var(--title-color);
}

.highLighColorText {
  color: var(--highlight-color);
}

.highLighColorText a {
  color: var(--highlight-color);
  transition: all ease-in-out 0.3s;
}

.lighColorText a:hover {
  color: var(--secondary-color);
  transition: all ease-in-out 0.3s;
}

.bg-dots {
  background-image: url("../assets/img/dots.svg");
  background-position: top left;
  background-attachment: fixed;
  background-size: contain;
  background-repeat: repeat-x;
}

.bg-main-color {
  background: linear-gradient(90deg, var(--main-color) 100%, white 0%);
  background-size: 100px 100px;
  background-position: top left;
  background-repeat: no-repeat;
}

.bg-secondary-color {
  background: linear-gradient(90deg, var(--secondary-color) 100%, white 0%);
  background-size: 100px 100px;
  background-position: top left;
  background-repeat: no-repeat;
}

.bg-highlight-color {
  background: linear-gradient(90deg, var(--highlight-color) 100%, white 0%);
  background-size: 100px 100px;
  background-position: top left;
  background-repeat: no-repeat;
}

.bg-title-color {
  background: linear-gradient(90deg, var(--title-color) 100%, white 0%);
  background-size: 100px 100px;
  background-position: top left;
  background-repeat: no-repeat;
}

.h1,
.h2,
.h3,
.h4,
.h3 {
  color: var(--highlight-color);
}

p {
  font-size: 2rem;
  font-weight: 500;
}

a {
  color: black;
  font-size: 1.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

a:hover {
  color: var(--highlight-color);
  transition: all ease-in-out 0.3s;
}

/* Menu Styling */

.navbar-brand img {
  width: 100%;
  height: 50px;
}

#mainNav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: white;
}

#mainNav .navbar-toggler {
  color: black;
  text-transform: none;
  font-weight: 700;
  padding: 1rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 2px;
  /* Optional: Adjust spacing */
}

.dropdown-menu .dropdown-item {
  font-size: 1.5rem;
  text-transform: capitalize;
}

#mainNav .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.0625em;
  text-transform: none;
}

#mainNav .navbar-brand img {
  height: 1.5rem;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: black;
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--title-color);
  transition: 0.3s ease-in-out;
}

#mainNav .navbar-nav .nav-item:after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

#mainNav .navbar-nav .nav-item:hover:after {
  width: 100%;
  background: black;
  transition: 0.3s ease-in-out;
}

.dropdown-item:active {
  background-color: var(--highlight-color);
  color: #fff;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: none;
    background-color: white;
    transition: 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    height: 6rem;
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: white;
    transition: 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav.navbar-shrink .navbar-brand svg,
  #mainNav.navbar-shrink .navbar-brand img {
    height: 4rem;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1.8rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
  transition: 0.3s ease-in-out;
}

/* Button and Body styling */

.header-title {
  font-size: 4.2rem;
}

.hero-section {
  padding: 8rem 0;
  height: 110dvh;
}

.logo-img {
  max-height: 40vh;
}

.hero-section .tl-quadrant {
  background-color: var(--secondary-color);
  color: white;
  max-height: 50dvh;
}

.hero-section .tr-quadrant {
  background-color: var(--main-color);
  color: white;
  max-height: 50dvh;
}

.hero-section .bl-quadrant {
  background-color: var(--highlight-color);
  color: white;
  min-height: 50dvh;
}

.hero-section .br-quadrant {
  background-color: white;
  background-image: url("../assets/img/dots.svg");
  background-position: center right;
  background-attachment: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  color: black;
  min-height: 50dvh;
}

.welcome-section {
  color: black;
}

.info-container {
  padding-top: 6rem;
}

.svh-container {
  height: 100vh;
}

.sticky-title-top {
  background-color: white;
  border-bottom: 2px solid black;
  font-size: 3rem;
  font-weight: 900;
  text-transform: capitalize;
  position: sticky;
  top: 6rem;
}

.speaker-card {
  background-color: rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 10rem;
}

.bio-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.portfolio-modal .modal-content h2,
.portfolio-modal .modal-content .h2 {
  font-size: 3rem;
  line-height: 3rem;
}

.portfolio-modal .modal-content p.item-intro {
  font-style: italic;
  margin-bottom: 2rem;
  font-family: "Barlow", serif;
}

.portfolio-modal .modal-content p {
  margin-bottom: 2rem;
  text-align: justify;
}

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content img {
  margin-bottom: 2rem;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.btn-main {
  background-color: transparent;
  border-radius: 2;
  border: 2px solid var(--light-color);
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.btn-main:hover {
  background-color: var(--title-color);
  border: 2px solid var(--title-color);
  color: var(--highlight-color);
  transition: 0.3s ease-in-out;
}

.reg-table td {
  background-color: transparent;
  color: black;
}

.engage-title {
  font-size: 2.8rem;
  text-align: right;
  margin: 2rem 0;
}

.engage-title a {
  color: black;
  font-size: 2.8rem;
  font-weight: 900;
  transition: all ease-in-out 0.3s;
}

.engage-title a:hover {
  color: var(--highlight-color);
  transition: all ease-in-out 0.3s;
}

/* Mobile Stylings - Brake Point 800px */

@media (max-width: 800px) {
  .dropdown-menu .dropdown-item {
    font-size: 1.1rem;
  }

  .hero-section {
    margin-top: 0;
    height: auto;
  }

  .hero-section .tl-quadrant {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
  }

  .hero-section .tr-quadrant {
    background-color: var(--main-color);
    color: white;
    height: auto;
    text-align: center;
  }

  .hero-section .bl-quadrant {
    height: auto;
    text-align: center;
    min-height: auto;
  }

  .hero-section .br-quadrant {
    background-color: white;
    color: black;
    text-align: center;
    text-align: center;
    min-height: auto;
  }

  .addBottomBorder {
    border-bottom: none;
  }

  .addSideBorderL {
    border-left: none;
  }

  p {
    font-size: 1.3rem;
  }

  a {
    font-size: 1.1rem;
  }

  .info-container {
    padding-top: 4rem;
  }

  .header-title {
    font-size: 3.2rem;
    padding: 0.4rem 1rem;
  }

  .sticky-title-top {
    border-bottom: 2px solid var(--light-color);
    font-size: 2.5rem;
    font-weight: 900;
    position: static;
  }

  .engage-title {
    font-size: 1.8rem;
    margin: 1rem 0;
  }

  .engage-title a {
    font-size: 1.8rem;
  }

  .bio-link {
    position: static;
    margin-top: 2rem;
  }

  .portfolio-modal .modal-content p {
    text-align: start;
  }
}
