/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #26576e 33%, #ed722b 70%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 4rem;
    height: 4rem;
    border-radius: 3rem;
    padding: 0rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-text h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.logo-text p {
    color: rgba(237, 114, 43, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: rgba(237, 114, 43, 0.8);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    display: block;
}

.close-icon {
    display: none;
}

.mobile-menu {
    background-color: #26576e;
    padding: 1rem 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
}

.mobile-nav-link {
    color: white;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: right;
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

.mobile-nav-link:hover {
    color: rgba(237, 114, 43, 0.8);
}

.hidden {
    display: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-text h1 {
  font-style: italic;
  font-size: 500px;

}

.hero-text p {
    font-style: italic;
    color: #ffffff;
  font-size: xx-large;
}

/* Vision & Mission */
.vision-mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 6xl;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

.card-content p {
    color: #374151;
    line-height: 1.6;
    font-size: 1.125rem;
}

.vision-card .card-header h2 {
    color: #26576e;
}

.vision-card {
    border: 2px solid rgba(38, 87, 110, 0.2);
}

.mission-card .card-header h2 {
    color: #ed722b;
}

.mission-card {
    border: 2px solid rgba(237, 114, 43, 0.2);
}

/* Over ons */
.over-ons {
    padding: 4rem 0;
    background: white;
}

.over-ons h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #26576e;
}

.over-ons-content {
    max-width: 5xl;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 2rem;
}

.highlight {
    color: #ed722b;
    font-weight: bold;
}

.over-ons-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 2rem;
}

/* Services */
.diensten {
    padding: 4rem 0;
    background: #f9fafb;
}

.diensten h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #26576e;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 7xl;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border-top: 4px solid #ed722b;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 12rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 0 1.5rem 1.5rem;
}

.service-content h3 {
    color: #ed722b;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #374151;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #26576e 0%, #ed722b 100%);
    color: white;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.contact-content {
    max-width: 4xl;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card,
.regio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
}

.contact-card h3,
.regio-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-links,
.regio-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: rgba(237, 114, 43, 0.8);
}

.contact-link.whatsapp {
    color: #10b981;
}

.contact-link.whatsapp:hover {
    color: #059669;
}

.contact-link.linkedin {
    color: #3b82f6;
}

.contact-link.linkedin:hover {
    color: #2563eb;
}

.contact-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.regio-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.regio-link i {
    color: rgba(237, 114, 43, 0.8);
    width: 1.25rem;
    height: 1.25rem;
}

.contact-cta {
    text-align: center;
}

.cta-main {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-sub {
    color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #26576e;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 4rem;
    height: 4rem;
    border-radius: 3rem;
    padding: 0rem;
}

.footer-logo h3 {
    border-radius: 50;
    font-size: 1.125rem;
    margin: 0;
}

.footer-logo p {
    color: rgba(237, 114, 43, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.copyright {
    text-align: center;
    color: rgba(237, 114, 43, 0.8);
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo {
        width: 5rem;
        height: 5rem;
    }

    .logo-text h1 {
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 3.75rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doelgroep-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero{
        height: 60vh;
    }
    .hero-image{
       object-fit: cover;
    }
    .hero-text h1{
        font-size: 1.8rem;
    }
    .hero-text p{
        font-size: 1rem;
    }
}