/* 
 * New.hulp.nl - Component Styles
 * Based on original Hulp.nl
 */

/* Top Bar */
.top-bar {
  background-color: var(--color-teal-20);
  padding: 0.5rem 0;
  position: relative;
}

.top-bar .content-container {
  position: relative;
}

.top-bar .content-container::before {
  content: '';
  display: block;
  position: absolute;
  height: 0;
  border-top: 1px solid var(--color-teal-60);
  bottom: 8px;
  left: 99px;
  right: 24px;
}

.top-bar__identity {
  float: left;
}

.top-bar__logo {
  text-decoration: none;
  float: left;
}

.top-bar__logo img {
  width: 85px;
  height: 64px;
  display: block;
  border: none;
}

.top-bar__pay-off {
  display: none;
}

.top-bar__navigation {
  display: flex;
  align-items: center;
  float: right;
  list-style-type: none;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  padding: 0;
}

.top-bar__navigation-item {
  line-height: 2rem;
  font-weight: bold;
  float: left;
}

.top-bar__navigation-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.25rem;
  background: none;
  border: none;
  border-radius: 6px;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #357488;
  transition: background 0.2s, color 0.2s;
}

.top-bar__navigation-item a:hover {
  background: #f0f7f8;
  color: #0caec7;
}

.top-bar__navigation-item .icon {
  width: 32px;
  height: 32px;
  stroke: #0caec7;
  stroke-width: 2.2px;
  margin-right: 6px;
}

.top-bar__navigation-label {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 500;
  color: #357488;
  margin-left: 2px;
}

.top-bar__navigation-item:nth-child(2) .top-bar__navigation-label {
  font-weight: 700;
  color: #357488;
}

.top-bar__navigation-item--sign-up .button.button--primary {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  background: #ffb20b;
  color: #000;
  box-shadow: none;
}

/* Hero Section */
.hero {
  background-size: cover;
  padding: 4rem 0;
}

.hero--homepage {
  padding: 4rem 0;
  background-color: var(--color-teal-20);
}

.hero__title,
.hero__byline {
  text-align: center;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: #000;
}

.hero--homepage .hero__title {
  position: relative;
  padding-bottom: 1.75rem;
}

.hero--homepage .hero__title::after {
  content: '';
  display: block;
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  bottom: 0;
  left: 50%;
  margin-left: -2.5rem;
  background-color: var(--color-yellow-50);
}

.hero__byline {
  font-size: 1rem;
}

/* Category Tiles */
.category-tiles {
  padding: 2rem 0;
}

.category-tiles__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem;
  padding: 0;
  list-style: none;
}

.category-tile {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
}

.category-tile__inner {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile__inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-tile__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.category-tile__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-teal-105);
}

.category-tile__description {
  color: var(--color-grey-70);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
  padding: 3rem 0;
  background-color: #fff;
}

.process-steps__title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.process-steps__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

.step {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.step__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-teal-105);
}

.step__description {
  color: var(--color-grey-70);
}

/* Footer */
.footer {
  background-color: var(--color-teal-105);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo img {
  width: 120px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__nav-column {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.footer__nav-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: 0.5rem;
}

.footer__nav-link {
  color: var(--color-teal-60);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid var(--color-teal-100);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-teal-60);
}

.footer__copyright {
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  align-items: center;
}

.footer__social-link {
  margin-right: 1rem;
  color: var(--color-teal-60);
}

.footer__social-link:hover {
  color: #fff;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-teal-105);
  color: #fff;
  padding: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-notice__text {
  margin-bottom: 1rem;
  text-align: center;
}

.cookie-notice__buttons {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.button--primary {
  background-color: var(--color-yellow-50);
  color: #000;
}

.button--primary:hover {
  background-color: var(--color-yellow-30);
  transform: translateY(-2px);
}

.button--secondary {
  background-color: var(--color-teal-80);
  color: #fff;
}

.button--secondary:hover {
  background-color: var(--color-teal-100);
  transform: translateY(-2px);
}

.button--outline {
  background-color: transparent;
  border: 2px solid var(--color-teal-80);
  color: var(--color-teal-80);
}

.button--outline:hover {
  background-color: var(--color-teal-80);
  color: #fff;
  transform: translateY(-2px);
}

/* Media Queries */
@media only screen and (min-width: 48em) { /* 768px */
  .top-bar {
    padding: 1rem 0;
  }
  
  .top-bar__logo img {
    width: 107px;
    height: 80px;
  }
  
  .top-bar__navigation {
    margin-top: -1rem;
    margin-right: -1.25rem;
  }
  
  .top-bar__navigation-item a {
    padding: 1.5rem 1.25rem;
  }
  
  .top-bar__navigation-label {
    display: inline-block;
    margin-left: 0.5rem;
  }
  
  .hero--homepage {
    padding: 5rem 0 1rem;
  }
  
  .hero__title {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  
  .hero__byline {
    font-size: 1.25rem;
  }
  
  .category-tile {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  
  .step {
    flex: 0 0 30%;
    max-width: 30%;
    margin-bottom: 0;
  }
  
  .footer__nav-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  
  .cookie-notice {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-notice__text {
    margin-bottom: 0;
    text-align: left;
  }
}

@media only screen and (min-width: 55em) { /* 880px */
  .top-bar__pay-off {
    display: block;
    float: left;
    line-height: 2rem;
    margin: 0.5rem 0 0 2rem;
  }
  
  .footer__nav-column {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/* Top Direct Navigation Bar */
.top-direct-nav {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
    height: 35px;
    box-sizing: border-box;
    color: #6c757d;
}

.top-direct-nav .content-container {
    display: flex;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-direct-nav span {
    margin-right: 10px;
    font-weight: bold;
}

.top-direct-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-direct-nav li {
    margin-right: 15px;
}

.top-direct-nav a {
    color: #0aaec7;
    text-decoration: none;
}

.top-direct-nav a:hover {
    text-decoration: underline;
}

/* Category Selection Title */
.category-selection-title {
    text-align: center;
    margin-top: 40px; /* Adjust as needed */
    margin-bottom: 20px; /* Adjust as needed */
    font-size: 18px; /* Adjust as needed */
    color: #333; /* Adjust as needed */
    font-weight: normal;
}

.category-tile__icon svg path {
    fill: #ffffff; /* White icon color */
}

/* Updated Category Selection Title */
.category-selection-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
    font-weight: normal;
}

/* Remove previous category tile icon styling */
.category-tile__icon {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* Category tile styling to match screenshot */
.category-tile {
    margin-bottom: 20px;
}

.category-tile__inner {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 25px 15px;
    text-align: center;
    display: block;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Yellow underline for main title */
.hero__title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.hero__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffb20b; /* Yellow color */
}

/* Adjust layout for category tiles */
.category-tiles__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 15px;
}

.category-tile {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

/* Thuiszorg Binnenkort label */
.category-tile:nth-child(3) .category-tile__icon {
    position: relative;
}

.category-tile:nth-child(3) .category-tile__icon::before {
    content: 'Binnenkort';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #0aaec7;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Background color for the entire section */
body {
    background-color: #f0f7f8;
}

.hero--homepage {
    background-color: transparent;
}
/* Steps Section Styling */
.steps-section {
  background-color: #fff;
  height: 125px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.step-card {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  max-width: 340px;
  min-height: 40px;
  padding: 0;
  margin-left: 24px;
}

.step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding: 32px 28px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.step-text p {
  font-size: 1rem;
  color: #535353;
  line-height: 1.375em;
  margin: 0;
  font-weight: 100;
  text-align: left;
  letter-spacing: -0.5px;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  height: 40px;
}

.step-arrow svg {
  display: block;
  margin: 0 auto;
  width: 28px;
  height: 28px;
  stroke: #357488;
  stroke-width: 2.5;
}

@media (max-width: 1100px) {
  .steps-container {
    gap: 16px;
  }
  .step-card {
    min-width: 220px;
    max-width: 260px;
    min-height: 100px;
  }
  .step-item {
    padding: 18px 10px;
    gap: 12px;
  }
  .step-icon, .step-icon img {
    width: 40px;
    height: 40px;
  }
  .step-arrow svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
    margin-left: 0;
  }
  .step-card {
    margin-left: 16px;
    margin-right: 0;
  }
  .step-item {
    padding: 10px 8px;
  }
  .step-icon, .step-icon img {
    width: 32px;
    height: 32px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 6px 0;
    height: 24px;
  }
  .step-arrow svg {
    width: 14px;
    height: 14px;
  }
}
/* People Together Section */
.people-together-section {
  padding: 60px 0;
  background-color: #fff; /* Assuming white background, adjust if needed */
  border-bottom: 1px solid #eee;
}

.people-together__content {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  gap: 40px; /* Space between text and profiles */
}

.people-together__text {
  flex: 1; /* Take up available space */
}

.people-together__text h2 {
  font-family: 'Changa', sans-serif; /* Match heading font */
  font-size: 28px; /* Adjust size as needed */
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.people-together__text p {
  font-family: 'Noto Sans', sans-serif; /* Match body font */
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 10px 20px; /* Row and column gap */
}

.benefits-list li {
  display: flex;
  align-items: center;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: #333;
}

.benefit-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  /* Assuming a green checkmark SVG */
}

.people-together__profiles {
  flex: 1; /* Take up available space */
  position: relative; /* For positioning cards */
  min-height: 300px; /* Ensure space for cards */
}

.profile-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 220px; /* Adjust width as needed */
  font-family: 'Noto Sans', sans-serif;
}

.profile-card--1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}

.profile-card--2 {
  top: 20px;
  left: 100px; /* Adjust overlap */
  transform: rotate(2deg);
  z-index: 2;
}

.profile-card--3 {
  top: 40px;
  left: 200px; /* Adjust overlap */
  transform: rotate(5deg);
  z-index: 3;
}

.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.profile-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  color: #333;
}

.gender-icon {
  color: #0aaec7; /* Turquoise color for gender icon */
  font-size: 14px;
  margin-left: 5px;
}

.profile-location {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 10px;
}

.profile-description {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .people-together__content {
    flex-direction: column;
    align-items: center; /* Center items when stacked */
  }
  .people-together__profiles {
    margin-top: 40px;
    min-height: auto; /* Reset min-height */
    width: 100%;
    display: flex; /* Use flex for smaller screens */
    justify-content: center;
    gap: 15px;
  }
  .profile-card {
    position: static; /* Remove absolute positioning */
    transform: none; /* Remove rotation */
    width: calc(33% - 10px); /* Adjust width for flex layout */
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr; /* Single column */
  }
  .profile-card {
     width: calc(50% - 10px); /* Two cards per row */
  }
}

@media (max-width: 576px) {
  .people-together__profiles {
     flex-direction: column; /* Stack cards */
     align-items: center;
  }
  .profile-card {
     width: 80%; /* Wider cards when stacked */
     max-width: 250px;
  }
}

/* Safe & Reliable Section */
.safe-reliable-section {
  padding: 60px 0;
  background-color: #fff; /* Assuming white background, adjust if needed */
  text-align: center;
}

.safe-reliable-section .section-title {
  font-family: 'Changa', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.safe-reliable__columns {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.safe-reliable__column {
  flex-basis: calc(33.333% - 40px); /* Adjust basis and margin as needed */
  margin: 0 20px;
  max-width: 300px; /* Limit width for better readability */
}

.safe-reliable__icon {
  width: 64px; /* Match SVG size */
  height: 64px;
  margin-bottom: 20px;
}

.safe-reliable__title {
  font-family: 'Changa', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.safe-reliable__description {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive adjustments (example) */
@media (max-width: 992px) {
  .safe-reliable__column {
    flex-basis: calc(50% - 40px);
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .safe-reliable__column {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
  .safe-reliable__column:last-child {
    margin-bottom: 0;
  }
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #357488;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
  z-index: 1000;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left !important;
}
.mobile-nav .top-bar__navigation-item {
  margin: 0;
  border-bottom: 1px solid #eee;
  text-align: left !important;
}
.mobile-nav .top-bar__navigation-item:last-child {
  border-bottom: none;
}
.mobile-nav .top-bar__navigation-item a {
  display: block;
  padding: 16px 0 16px 24px;
  width: 100%;
  text-align: left !important;
  justify-content: flex-start;
}
.mobile-nav .top-bar__navigation-label,
.mobile-nav .button.button--primary {
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .top-direct-nav,
  .top-direct-nav__container {
    display: none !important;
  }
  .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav .top-bar__navigation-item a {
    padding: 10px 0 10px 16px;
  }
  .mobile-nav {
    padding: 8px 0 8px 0;
  }
}
@media (min-width: 901px) {
  .mobile-nav, .hamburger {
    display: none !important;
  }
}

/* Mobiele optimalisatie categorie-tegels */
@media (max-width: 768px) {
  .category-tiles__list {
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }
  .category-tile {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 4px;
  }
  .category-tile__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    font-size: 1.1rem;
  }
  .category-tile__icon {
    width: 48px;
    height: 48px;
    margin: 0 16px 0 0;
  }
  .category-tile__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
  }
}

/* Mobiele optimalisatie stappenbalk */
@media (max-width: 768px) {
  .steps-section {
    height: auto;
    padding: 16px 0;
    display: block;
  }
  .steps-container {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }
  .step-card {
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    margin-bottom: 12px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: #fff;
    padding: 0;
  }
  .step-item {
    padding: 12px 8px;
    gap: 12px;
  }
  .step-icon, .step-icon img {
    width: 32px;
    height: 32px;
  }
  .step-arrow {
    display: none;
  }
}

/* Mobiele optimalisatie tekstblokken en checklists */
@media (max-width: 768px) {
  .people-together-section, .safe-reliable-section {
    padding: 32px 0;
  }
  .people-together__content {
    flex-direction: column;
    gap: 24px;
  }
  .people-together__text h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .people-together__text p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 8px 0;
    margin-top: 12px;
  }
  .benefits-list li {
    font-size: 1rem;
    padding: 6px 0;
  }
  .benefit-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .top-direct-nav,
  .top-direct-nav__container {
    display: none !important;
  }
}

