/* Hero Section */
#hero {
  background: no-repeat url("../images/hero-solar.jpg") center bottom/cover;
  min-height: 30vh;
  position: relative;
}

#hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30vh;
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
}

/* General Styles */

#intro,
#installation,
#values,
#mission,
#team {
  padding: var(--mb-4) 0;
}

/* Intro Section */
.two-col-flex .right-content,
.two-col-flex .left-content {
  width: 50%;
}

.two-col-flex p {
  margin-bottom: 1.5rem;
}

/* Installation Section */
#installation {
  background: var(--secondary-dark);
  color: var(--white);
}

#installation h2 {
  color: var(--white);
}

#installation p {
  color: var(--white);
}

/* Values Section */
#values {
  background-color: rgba(196, 196, 207, 0.1);
}

#values i {
  color: var(--primary-color);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 120px;
  height: 120px;
  padding: 20px;
  border-radius: 50%;
  background-color: var(--white);
  margin-bottom: var(--mb-2);
}

.service-heading {
  margin-bottom: var(--mb-1);
}

/* Mission Section */
.center-image {
  margin-top: 2rem;
}

/* The Team Section */

#team {
  background: var(--secondary-dark);
}

#team .flex-grid {
  gap: 3rem;
}

#team .section-sub-heading {
  color: white;
}

#team .staff-card {
  background-color: var(--primary-color);
  border-radius: 30px;
  border: 2px solid white;
  overflow: hidden;
}

#team .staff-image {
  max-height: 65%;
  object-fit: contain;
}

#team .staff-details {
  padding: 1rem;
  height: 35%;
  max-width: 18rem;
  margin: auto;
}

#team .staff-details h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

/* Media Queries */

@media (max-width: 850px) {
  /* Intro Section */

  .two-col-flex .right-content,
  .two-col-flex .left-content {
    width: 100%;
  }

  .two-col-flex {
    gap: 1rem;
  }

  .deco-image {
    width: 100%;
  }

  .information-right {
    width: 100%;
  }

  .information-left {
    width: 100%;
  }
}
