@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:wght@500&display=swap");
@import "./styles/development-bundle.css";

:root {
  --primary-color: #d3e04d;
  --secondary-color: #35608f;
  --hero-color: #69a4cf;
  --hero-color2: #8dd3f9;
  --text-color: #2e3b4e;
  --light-background: #e4f2fa;
  --dark-lime: #b1b73b;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 100%;
}

.body-bold {
  font-size: 24px;
  font-weight: 600;
}

header {
  top: 0;
  background-color: var(--secondary-color);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/* Hamburger menu */
.hamburger {
  display: none; /* Hidden by default */
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

span {
  font-family: inherit;
  display: inline-block;
}

.logo {
  max-width: 5rem;
  max-height: 5rem;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

ul.topnav li {
  margin: 0rem 1rem;
}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* ul.topnav li a:hover:not(.active) {
  color: var(--primary-color);
} */

ul.topnav li a.active {
  color: var(--primary-color);
}

@media screen and (max-width: 900px) {
  ul.topnav {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-container {
    display: none !important;
  }
}

.search-container {
  display: flex;
  align-items: center;
  justify-items: flex-end;
}

.header-container {
  text-decoration: none;
}

.header-container span {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  box-sizing: border-box;
}

.header-container span:hover {
  background-color: var(--hero-color);
  color: white;
}

/* .search-container input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
  width: 150px;
} */

.contact-container {
  text-decoration: none;
}

.contact-container span {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  box-sizing: border-box;
  margin-top: 1rem;
}

.contact-container span:hover {
  background-color: var(--hero-color);
  color: white;
}

.hero {
  display: flex;
  justify-content: space-between;

  position: relative;
  background-color: var(--hero-color);
  color: white;

  padding: 0rem 12rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* max-width: 50%; */
  margin-bottom: 2rem;
}

.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 h1 {
  line-height: 1.2;
  text-align: left;
}

.hero-content span {
  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;
  width: 100%;
  box-sizing: border-box;
}

.hero-content span:hover {
  background-color: var(--secondary-color);
  color: white;
}

.hero-image {
  max-width: 50%;
}

.hero-image img {
  max-width: 100%;
  height: 100%;
}

.home-wave {
  width: 100%;
  height: 200px; /* Adjust as needed */
  background-image: url("./SVG/home-wave4.svg");
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the image covers the area */
}

.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 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* padding: 10000rem; */
}

.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;
}

.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;
  width: fit-content;
}

.info-button:hover {
  background-color: var(--secondary-color);
  color: white;
}

.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;
}

.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;
}

article {
  height: 10px;
}

main {
  min-height: 70vh;
}

/* Werkwijze */

.werkwijze-container {
  color: white;
  overflow: hidden;
}

.werkwijze-container img {
  display: block;
  border: none;
  width: 100%;
}

.werkwijze-block {
  min-height: 25vh;
  display: flex;
  justify-content: space-between;
  padding: 12rem;
}

.werkwijze-block h2 {
  line-height: 1.2;
  text-align: left;
}

.werkwijze-text {
  max-width: 50%;
}

.werkwijze-image {
  min-width: 25%;
}

.werkwijze-image img {
  max-width: 100%;
  height: 100%;
}

#block1 {
  background-color: var(--secondary-color);
  z-index: 2;
}
#block2 {
  background-color: var(--hero-color);
  z-index: 2;
}
#block3 {
  background-color: var(--dark-lime);
  z-index: 2;
}
#block4 {
  background-color: var(--primary-color);
  color: black;
  z-index: 2;
}

/* Einde werkwijze */

/* Prijslijst */

.heading-title {
  color: var(--secondary-color);
  margin-bottom: 48px;
}

.prijslijst-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 10px;
}

.prijslijst-textbox {
  background-color: var(--light-background);
  min-height: 20vh;
  min-width: 75vw;
  padding: 0rem 12rem;
  z-index: -1; /* Ensure content is above the SVG */
  position: relative;
}

.prijslijst-container img {
  width: 100%;
  max-width: 150px;
  height: auto;
  position: relative;
  left: -50px; /* Adjust the overlap */
  z-index: 0; /* Ensure SVG is beneath the content */
}

.prijslijst {
  margin-top: 48px;
  margin-bottom: 64px;
  .row {
    row-gap: 64px;
  }
}

.card-text {
  background-color: var(--light-background);
  color: var(--secondary-color);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
  padding: 1rem;
  border-radius: 24px;
  padding: 24px 48px;
}

.card-icon {
  height: 100%;
}
.svg-container {
  position: relative;
  display: inline-block;
}

.svg-container img {
  display: block;
  max-height: 400px;
}
.cross {
  width: 400px;
  height: 400px;
  position: relative;
}

.cross:before,
.cross:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 40px;
}

.cross:before {
  left: 50%;
  width: 30%;
  margin-left: -15%;
  height: 100%;
}

.cross:after {
  top: 50%;
  height: 30%;
  margin-top: -15%;
  width: 100%;
}

.cross-1:before,
.cross-1:after {
  background-color: #35608f;
}
.cross-2:before,
.cross-2:after {
  background-color: #8dd3f9;
}
.cross-3:before,
.cross-3:after {
  background-color: #b1b73b;
}
.cross-4:before,
.cross-4:after {
  background-color: #d3e04d;
}

.svg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  pointer-events: none; /* Ensure text does not interfere with SVG interactions */
  font-weight: 500;
  display: flex;
  justify-content: center;
  width: 100%;
}

.body-small {
  font-size: 14px;
}
/* Einde prijslijst */

/* Contact */

/* Einde contact */

/* Mobile styles: Hide navigation and show the hamburger */
@media screen and (max-width: 991px) {
  .hero {
    padding: 0rem 6rem;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Initially hide the navigation */
  ul.nav-links {
    flex-direction: column;
    width: 100%;
    background-color: var(--secondary-color);
    text-align: center;
    padding: 0;
    margin: 0;
    max-height: 0; /* Start with the height collapsed */
    overflow: hidden; /* Hide overflowing content */
    opacity: 0; /* Hidden visually */
    visibility: hidden; /* Hidden from view */
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease; /* Smooth height expansion */
  }

  /* When the nav-active class is added */
  ul.nav-links.nav-active {
    max-height: 500px; /* Large enough to fit the full menu */
    opacity: 1; /* Fully visible */
    visibility: visible; /* Make it visible */
  }

  ul.nav-links li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Optional: separator */
  }

  ul.nav-links li a {
    display: block;
    padding: 16px;
    text-align: center;
    color: white;
    text-decoration: none;
  }

  ul.nav-links li a:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
  }

  .info-section {
    flex-direction: column;
    padding: 0;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
  }

  .mobile-hide {
    display: none;
  }

  .highlighted-box {
    min-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .steps-section {
    flex-direction: column;
  }

  .info-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

/* Mobile styles: Hide navigation and show the hamburger */
@media screen and (max-width: 400px) {
}
