/* Smooth scrolling for Our Services/ About Us tabs */
html {
    scroll-behavior: smooth;
}

/* Background Image */
body {
  background-image: url("../images/WebsiteBG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 123.3125rem;
  background-attachment: scroll; 
  font-family: "Inter", sans-serif;
  color:#F4F8FF;
  margin: 0;
}

/* Button */
.button {
  color: #F4F8FF;
  font-weight: bold;
  font-size: 1.25rem;
  background-color: #374F9F;
  margin-top: 3rem;
  width: 12rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04rem;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none;
}

/* Button - Hover */
.button:hover {
  background-color: #203782;
}

/* Our Partners */
.partners {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 5rem;
  align-items: left;
}

/* Section Headers (What We Do, Our Services, About Us) */
h2 {
  font-size: 4rem;
  margin-bottom: 4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

/* Section Subheaders (What We Do, Our Services) */
h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0rem;
  justify-content: left;
}

/* Section Tagline (Who We Are) */
.tagline {
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 1.5rem;
  margin-top: -1rem;
  padding-bottom: 2rem;
}

/* Body Text */
p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Section Spacing */
.section {
  color: white;
  background-color: #9AA0B130;
  padding: 6rem;
  padding-bottom: 10rem;
}

/* Columns */
.col {
  align-items: top;
  gap: 2rem;
}

/* What We Do Subtext */
.what-we-do-text p {
  padding-bottom: 2rem;
}

/* Our Services Section */
.our-services {
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 10rem;
}

/* Services List */
ul {
  list-style-type: none;
}

/* Services List Lines */
li {
  background-image: url('../images/MissionGuildShield.png');
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem; 
  padding-left: 2.5rem; 
  padding-bottom: 1rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Desktop Screen Size */
@media screen and (min-width: 1000px) {
  /* Title Text + Button */
  .title {
    color: white;
    padding-top: 5.8rem;
    width: 55rem;
    padding-left: 10rem;
    padding-bottom: 5.8rem;
  }

  /* Tech Solutions for Your Mission */
  .title h1 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  /* Partners Logos Images */
  .partners-logos img{
    display: row;
    justify-content: left;
    max-width: 13rem;
    height: 6rem;
    object-fit: contain;
  }

  /* Partners Logos */
  .partners-logos {
    display: flex;
    justify-content: left;
    gap: 3rem;
    margin-top: -2rem;
  }

  /* Info */
  .info {
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    display: grid;
    align-items: center;
  }

  /* Our Services Info */
  .our-services-info {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
  }

  /* Our Services Columns */
  .service-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25rem;
  }
}

/* Phone Screen Size */
@media screen and (max-width: 1000px) {
  /* Title Text + Button */
  .title {
    color: white;
    padding-top: 5rem;
    width: 100%;
    padding-left: 5rem;
    padding-bottom: 5.8rem;
    display: flex;
    flex-direction: column;
  }

  /* Tech Solutions for Your Mission */
  .title h1 {
    padding-top: 5rem;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: column;
    width: 70%;
  }

  /* Section Headers (What We Do, Our Services, About Us) */
  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2rem;
  }

  /* Section Tagline (Who We Are) */
  .tagline {
    font-size: 1.2rem;
  }

  /* Partners Logos */
  .partners-logos {
    display: row;
    justify-content: left;
    margin-top: -2rem;
    width: 80%;
  }

  /* Partners Logos Images */
  .partners-logos img{
    justify-content: left;
    max-width: 10rem;
    object-fit: contain;
    padding: 1rem;
  }

  /* Info */
  .info {
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    grid-template-columns: 1fr;
    display: grid;
  }

  /* Columns */
  .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Column Images */
  .col img {
    max-width: 30rem;
    height: auto;
  }

  /* Our Services Info */
  .our-services-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
  }

  .service-columns h3{
    padding-left: 3rem;
  }

  /* Our Services Columns */
  .service-columns {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 45rem;
  }

  /* Our Services Columns */
  .service-columns li {
    font-size: 1.5rem;
  }
}
