/* 
This CSS is just thrown together as I was designing simultaneously with
writing the HTML/CSS. If we actually keep this design, then this code
should be reorganized and any unused/duplicated/overwritten styles should
be cleaned up.

TODO: Fix the spacing between cols when contacts cols get stacked on mobile.
*/

body {
  font-family: 'Arial', sans-serif;
}

.header-solid-bg {
  background: linear-gradient(to right, rgba(102, 187, 240, 1), rgba(46, 81, 219, 1));
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 0 15px;
  background: linear-gradient(to right, #66bbf0, #2e51db);
  color: white;
  position: relative;
  flex-wrap: wrap;
}

.hero .hero-text {
  flex: 1;
  padding: 50px;
  z-index: 2;
  background-color: green;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero .hero-text a {
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-text a:hover {
  background-color: #fff;
  color: #2e51db;
}

.hero .hero-image {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding-top: 30px;
  background-color: pink;
}

.hero .hero-image img {
  max-width: 85%;
  max-height: 70%;
  object-fit: contain;
}

/* Mobile responsive fixes for hero */
@media (max-width: 768px) {
.hero {
    margin: 0;
    padding: 0;
    height: auto;
    }

  .hero .hero-image {
    flex-basis: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .hero .hero-text {
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
  }

  .hero .hero-text a {
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }
}


.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.features-section .feature {
  text-align: center;
  margin: 30px 0;
}

.contact-form {
  padding: 50px 0;
}

.footer {
  background-color: #2e51db;
  background-color: #2d1f16;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
  padding: 5px 15px;
}

.footer a:hover {
  text-decoration: underline;
}

.logo {
    height: 4vh;
}

/* Single page use - Hero */
.app-store-btn {
    width: 25%;
    margin: 5% 0 5% 0;
}

.app-store-btn-icon {
    height: 1em;
}

/*  Single page use - Contact Us  */
.contact-us-img {
    width: 25%;
    margin-top: 3%;
}


/* Single page use - feature callouts */
.feature-section {
    padding: 2%;
}

.image-wrapper {
  max-width: 250px;
  margin: 0 auto;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.rounded-circle {
  border-radius: 50%;
  object-fit: cover;
}

.feature-callout-002 {
    background-color: #e5f3fe;
}

.feature-callout-002 .list-unstyled li p {
    color: rgba(0, 0, 0, 0.8);
}

.feature-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-section p {
  font-size: 1.125rem;
  color: #555;
}

    /* Feature 002 */
.feature-section-2 {
  background-color: #4b0082; 
  padding: 60px 0;
  border-top: 4px solid #ffffff;
}

.feature-section-2 .image-wrapper {
  max-width: 350px;
  margin: 0 auto;
}

.feature-section-2 h2.feature-heading {
  font-size: 2.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.feature-section-2 p.feature-description {
  font-size: 1.125rem;
  color: #d3d3d3;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-section-2 .btn-primary {
  background-color: #ff7f50;
  border-color: #ff7f50;
  padding: 12px 24px;
  font-size: 1.125rem;
  color: #fff;
  transition: background-color 0.3s ease;
}

.feature-section-2 .btn-primary:hover {
  background-color: #e06e3a;
  border-color: #e06e3a;
}

@media (max-width: 768px) {
  .feature-section-2 h2.feature-heading {
    font-size: 1.75rem;
  }

  .feature-section-2 p.feature-description {
    font-size: 1rem;
  }
}

    /*  */

    .feature-icon {
      margin-bottom: 20px;
    }
    .feature-icon i {
      font-size: 3rem;
      color: #007bff;
    }
    .feature-icon i:hover {
      color: #28a745;
      transform: scale(1.1);
      transition: transform 0.3s ease, color 0.3s ease;
    }

  /* Dashboard section of the main landing */
  .feature-icon {
    font-size: 2.5rem;
    color: #ffb400;
  }

  .feature-icon i:hover {
    color: #f39c12;
  }

  .list-unstyled {
    padding-left: 0;
  }

  .list-unstyled li {
    margin-bottom: 1.5rem;
  }

  .list-unstyled li p {
    color: #b0b0b0;
    font-size: 1rem;
  }

  .text-light {
    color: #ffffff !important; 
  }

  .text-muted {
    color: #b0b0b0 !important; 
  }

  .row {
    padding: 2rem 0;
  }

  .display-5, .lead {
    color: #ffffff; 
  }

  .mb-3 {
    margin-bottom: 1.25rem !important;
  }

  @media (max-width: 768px) {
    .feature-icon {
      font-size: 2rem;
    }

    .feature-icon i {
      font-size: 2.2rem;
    }
  }



/* Only used on Form Status Landing Pages  */
  .social-icon {
    color: rgba(255, 255, 255, 0.75);
    font-size: 2em;
  }

  a {
    text-decoration: none;
  }

  a:hover i {
    color: rgba(255, 215, 0, 0.75);
  }
