/* Base Styles */

.bar1,
.bar2,
.bar3
{
  background-color: var(--white) !important;
}

.bar1,
.bar2,
.bar3,
.navbar-on .bar1,
.navbar-on .bar3 {
  background-color: var(--blue);
}

.bar1,
.bar2,
.bar3 {
    background-color: var(--blue);
}
.navbar-on .bar1 {
    background-color: var(--blue);
  }
  
  .navbar-on .bar3 {
    background-color: var(--blue);
  }

/* HERO */
.hero {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 50%;
  padding: 0;
  padding-left: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-image {
  width: 50%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/assets/images/Image\ 1_HO78330.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content-p {
  max-width: 500px;
}

section.hero {
  padding: 0;
}

/* FIGURES */
.figures h2 {
  border-bottom: 1px var(--gold) solid;
}

/* INFRASTRUCTURE */
.infrastructure h3 {
  max-width: 50%;
}

.infrastructure img {
  max-width: 100%;
}

/* HOW WE DO IT */
.supply-demand-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 2px;
  background-color: #f4f2ee;
  box-sizing: border-box;
}

.supply-demand-section .card {
  background-color: white;
  flex: 1;
  padding: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supply-demand-section .card h3 {
  font-size: 50px;
  margin-bottom: 1rem;
}

.supply-demand-section .card ul {
  padding-left: 1.2rem;
}

.supply-demand-section .card ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.plus-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  padding: 0;
}

/* MEET THE TEAM */
.meet-the-team .team-job {
  font-size: 20px;
}

.meet-the-team p {
  width: 90%;
}

/* NEW ERA */
.new-era div {
  max-width: 40%;
  margin: auto;
}

.new-era {
  text-align: center !important;
}

/* Media Queries */

/* Mobile phones */
@media (max-width: 767px) {
  .hero-mobile {
    margin-top: 90px;
  }

  .hero-image {
    background: none;
  }

  .hero-content-p {
    width: 100%;
  }

  .infrastructure h3 {
    font-size: 30px;
    line-height: 25px;
    max-width: 100%;
  }

  .how-we-do-it h3 {
    font-size: 30px;
  }

  .supply-demand-section {
    flex-direction: column;
  }

  .supply-demand-section .card {
    padding: 30px;
  }

  .supply-demand-section .card h3 {
    font-size: 25px;
    margin-bottom: 0;
    padding-top: 0;
  }

  .meet-the-team h3 {
    font-size: 50px;
  }

  .meet-the-team p {
    width: 100%;
  }

  .new-era {
    text-align: left !important;
  }

  .new-era div {
    max-width: 100%;
  }
}

/* Tablets (portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  section.hero-mobile {
    padding-left: 30px !important;
    padding-top: 130px;
  }
  .infrastructure h3 {
      font-size: 30px;
      line-height: 25px;
  }
  .supply-demand-section .card h3 {
      font-size: 35px;
      line-height: 35px;
  }
}

/* Tablets (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  section.hero {
    padding-left: 30px !important;
  }
  .infrastructure h3 {
      font-size: 30px;
      line-height: 25px;
  }
  .supply-demand-section .card h3 {
      font-size: 35px;
      line-height: 35px;
  }
}

/* iPad Pro-specific styling */
@media (min-width: 834px) and (max-width: 1366px) {
  .hero-content {
    padding-left: 20px !important;
  }
  .hero {
    height: 50vh;
  }
}

/* Small desktops */
@media (min-width: 1025px) and (max-width: 1439px) {
  /* Optional refinements here */
  
}

/* Large desktops */
@media (min-width: 1440px) {
  /* Optional refinements here */
}

/* Ultra-wide monitors */
@media (min-width: 1920px) {
  /* Optional refinements here */
}

@media (min-width: 2560px) {
  /* 2K / 4K refinements */
}
