/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #4a8bc2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4a8bc2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.nav-dropdown-item:hover {
    background: #f3f4f6;
    color: #f59e0b;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #f59e0b;
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f59e0b;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #4b5563;
    font-size: 0.875rem;
}

.language-link:hover {
    background: #f3f4f6;
    color: #f59e0b;
}

.language-link.active {
    background: #f59e0b;
    color: white;
}

.flag-icon {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.cta-button {
    background: #f59e0b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: #fefefe;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-left h1 {
    color: #6b7280;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.profile-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.profile-content p {
    text-align: justify;
    line-height: 1.7;
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-right::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #f59e0b;
    border-radius: 0 0 0 50px;
    z-index: -1;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.coaching {
    background: #f59e0b;
    color: white;
}

.service-card.coaching h2,
.service-card.coaching p {
    color: white;
}

.service-card.hulpverlening {
    background: white;
}

.service-card.supervisie {
    background: #1f2937;
    color: white;
}

.service-card.supervisie h2,
.service-card.supervisie p {
    color: white;
}

.service-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-card ul {
    margin: 1.5rem 0;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.service-card.coaching li::before,
.service-card.supervisie li::before {
    color: white;
}

.service-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    align-self: center;
}

.coaching .service-button {
    background: white;
    color: #f59e0b;
}

.coaching .service-button:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.hulpverlening .service-button {
    background: #1f2937;
    color: white;
}

.hulpverlening .service-button:hover {
    background: #374151;
    transform: translateY(-2px);
}

.supervisie .service-button {
    background: #f59e0b;
    color: white;
}

.supervisie .service-button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.cert-item h4 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
}

.cert-logo {
    max-height: 100px;
    width: auto;
    margin: 0 auto 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f59e0b;
}

.footer-column p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

/* Footer Certifications */
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.footer-cert-item {
  text-align: center;
}

.footer-cert-logo {
  max-height: 60px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.footer-cert-logo:hover {
  transform: translateY(-2px);
}

.footer-cert-item p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #9ca3af;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: #fefefe;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.page-hero-left h1 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.page-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Coaching Details */
.coaching-details {
    padding: 4rem 0;
    background: white;
}

.coaching-content {
    max-width: 800px;
    margin: 0 auto;
}

.coaching-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.coaching-content > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coaching-topics {
    margin-top: 2rem;
}

.coaching-topics li {
    position: relative;
    padding: 1rem 0;
    padding-left: 2rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.coaching-topics li:last-child {
    border-bottom: none;
}

.coaching-topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.2rem;
}

.coaching-topics li:hover {
    background: #fef3c7;
    padding-left: 2.5rem;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.qualification-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qualification-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.qualification-card ul {
    list-style: none;
}

.qualification-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #4b5563;
}

.qualification-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.experience-highlight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
}

.experience-highlight h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.experience-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}