@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import "./styles/development-bundle.css";

.hero {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: white;
  /* margin-top: 240px; */
  min-height: 75vh;
  position: relative;
  background: linear-gradient(to right, #69a4cf, rgba(0, 0, 0, 0.1)),
    url("./images/new/voeten.jpg") no-repeat center bottom;
  background-size: cover;
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  position: relative;
  z-index: 1;
}

.text-container {
  display: flex;
  align-items: center;
}

.green-bar {
  width: 5px;
  height: 100%;
  border-radius: 1rem;
  background-color: var(--primary-color);
  margin-right: 40px;
}

.hero-content span {
  margin-top: 36px;
  padding: 10px 40px;
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
}

.hero-content span:hover {
  background-color: var(--secondary-color);
  color: white;
}

.hero-image {
  margin-left: auto;
  border-radius: 300px 300px 25px 25px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-wave {
  position: absolute; /* Position the wave absolutely */
  bottom: 0; /* Align it to the bottom of the hero */
  width: 100%;
  height: 200px; /* Adjust as needed */
  background-image: url("./SVG/home-wave5.svg");
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the image covers the area */
  z-index: 1; /* Ensure it is above other content */
  pointer-events: none;
}

.info-section {
  display: flex;
  align-items: flex-start;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  gap: 3rem;
  margin: 6rem 0rem;
}

.info-text-container h2 {
  color: var(--text-color);
}

.info-text-container .description {
  font-weight: 700;
}

.info-text-container p {
  color: var(--text-color);
}

.info-button-link {
  margin-top: 20px;
  width: fit-content;
}

.info-button {
  /* margin-top: 20px; */
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  /* max-width: 30%; */
  box-sizing: border-box;
}

.info-button:hover {
  background-color: var(--secondary-color);
  color: white;
}

.highlighted-box {
  margin-left: auto;
  min-height: 560px;
}

/* .steps-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.step-box {
  background-color: #35608f;
  color: white;
  width: 100%;
  text-align: center;
}

.step-box:nth-child(2) {
  background-color: #5989b5;
}

.step-box:nth-child(3) {
  background-color: #77b6df;
}

.step-box:nth-child(4) {
  background-color: #86caf1;
} */

.steps-section .card {
  position: relative;
  /* Remove fixed height */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 420px; /* Set a minimum height */
  height: 100%;
}

.steps-section .card .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(180px at center 0);
  text-align: center;
  flex-shrink: 0;
}

.steps-section .card .circle h2 {
  color: #fff;
  font-size: 4.5em;
  padding: 30px 0;
}

.steps-section .card .content {
  position: relative;
  padding-top: 200px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.steps-section .card .content h6 {
  margin-bottom: 10px;
  min-height: 50px; /* Set a minimum height for the title container */
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-section .card .content p {
  color: #666;
}

.steps-section .card .content a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}

.steps-section .card .circle.dark-blue {
  background-color: var(--secondary-color);
}

.steps-section .card .circle.blue {
  background-color: var(--hero-color);
}

.steps-section .card .circle.dark-green {
  background-color: var(--dark-lime);
}

.steps-section .card .circle.green {
  background-color: var(--primary-color);
}

.quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--light-background);
  padding: 3rem 0rem;
}

.green-divide {
  height: 5px;
  border-radius: 1rem;
  background-color: var(--primary-color);
  margin: 1rem;
}

.frames__block {
  margin-right: auto;
}

.frames {
  height: 100%;
}

.frame {
  background-color: #35608f;
  margin: 8px;
  border-radius: 50px 50px 0 50px;
  min-height: 120px;
}

.frame:nth-child(2) {
  background-color: #5989b5;
  border-radius: 50px 50px 50px 0;
  min-height: 120px;
}

.frame:nth-child(3) {
  background-image: url("./images/Monika-deur.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the image covers the area */
  border-radius: 50px 0 50px 50px;
  min-height: 420px;
}

.frame:nth-child(4) {
  background-image: url("./images/new/ingang.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the image covers the area */
  border-radius: 0 50px 50px 50px;
  min-height: 420px;
}

@media (max-width: 991px) {
  .hero-content h2 {
    line-height: 1.2;
  }

  .info-section {
    flex-direction: column;
    gap: 2rem;
  }

  .quote-section {
    padding: 2rem 3rem;
  }

  .frames {
    flex-direction: column;
  }

  .frame {
    height: auto;
    margin: 10px 0;
  }
}

.info-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-text-container h3 {
  color: var(--text-color);
}

.info-text-container .description {
  font-weight: 700;
}

.info-text-container p {
  color: var(--text-color);
  margin: 15px 0;
}
