/* ============================================================
   PRACTICUS — Fresh Healthcare Design
   Colors: Navy #0A1F44, Pink #E8B4D0, Golden Orange #F4A261, White
   ============================================================ */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: #1E293B;
  line-height: 1.6;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.practicus-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.practicus-nav.scrolled {
  box-shadow: 0 1px 12px rgba(10, 31, 68, 0.06);
  border-bottom-color: rgba(232, 224, 228, 0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: #0A1F44;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover {
  color: #E08A3A;
  background-color: #FDF8FB;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.hamburger:hover {
  background-color: #FDF8FB;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0A1F44;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- MOBILE MENU --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: rgba(10, 31, 68, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  width: 300px;
  max-width: 85vw;
  background-color: #FFFFFF;
  box-shadow: -8px 0 30px rgba(10, 31, 68, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #F3E8EF;
}

.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
  color: #0A1F44;
  transition: background-color 0.2s ease;
}

.mobile-close-btn:hover {
  background-color: #FDF8FB;
}

.mobile-nav-links {
  padding: 0.5rem 0;
}

.mobile-nav-link {
  display: block;
  color: #0A1F44;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-bottom: 1px solid #F9F5F8;
}

.mobile-nav-link:hover {
  color: #E08A3A;
  background-color: #FDF8FB;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

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

.hero-content-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(170deg, #FFFFFF 0%, #FDF8FB 50%, #F9F5F8 100%);
  position: relative;
  text-align: center;
}

.hero-content-side::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 180, 208, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-side::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(232, 180, 208, 0.3),
    0 0 0 8px rgba(232, 180, 208, 0.1),
    0 8px 32px rgba(10, 31, 68, 0.06);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.hero-tagline {
  font-size: 1.625rem;
  color: #F4A261;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0A1F44;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0A1F44;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
  border-radius: 100px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  background-color: #1A3366;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

/* ============================================================
   SECTIONS (GENERAL)
   ============================================================ */
.section {
  padding: 5rem 1.5rem;
}

.section-warm {
  background-color: #FDF8FB;
}

.section-white {
  background-color: #FFFFFF;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E8B4D0, #F4A261);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SECTION BANNER (images with overlay text)
   ============================================================ */
.section-banner {
  width: 100%;
  height: 300px;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 2.5rem;
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.55) 0%, rgba(10, 31, 68, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.section-banner-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: #FFFFFF;
}

.section-banner-label {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.section-banner-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: #FFFFFF;
  border: 1px solid #F3E8EF;
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(232, 180, 208, 0.12);
  transform: translateY(-3px);
}

.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E8B4D0, #F4A261);
  border-radius: 1rem 1rem 0 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: rgba(10, 31, 68, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1F44;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.3;
  margin-bottom: 0;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #E08A3A;
  font-weight: 500;
  margin-top: 0.25rem;
  font-style: italic;
}

.card-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.card-list {
  margin-top: 1rem;
  padding: 0;
}

.card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  background-color: #E8B4D0;
  border-radius: 50%;
}

/* ============================================================
   WAARBORGEN CARDS
   ============================================================ */
.waarborgen-card {
  background-color: #FDF8FB;
  border: 1px solid #F3E8EF;
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.waarborgen-card:hover {
  box-shadow: 0 12px 40px rgba(232, 180, 208, 0.1);
  transform: translateY(-3px);
}

/* ============================================================
   RESULTS BLOCK
   ============================================================ */
.results {
  background-color: #0A1F44;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}

.results-text {
  font-size: 1.0625rem;
  color: #FFFFFF;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.08);
}

.about-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   VOOR WIE
   ============================================================ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.target-card {
  background-color: #FFFFFF;
  border: 1px solid #F3E8EF;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.target-card:hover {
  box-shadow: 0 12px 40px rgba(232, 180, 208, 0.12);
  transform: translateY(-3px);
}

.target-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(232, 180, 208, 0.2);
}

.target-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 0.75rem;
}

.target-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* ============================================================
   CONTACT / KENNISMAKEN
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.contact-image {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.08);
}

.contact-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A1F44;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #F3E8EF;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1E293B;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #E8B4D0;
  box-shadow: 0 0 0 3px rgba(232, 180, 208, 0.2);
}

.form-input::placeholder {
  color: #A0AEC0;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #F3E8EF;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1E293B;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  border-color: #E8B4D0;
  box-shadow: 0 0 0 3px rgba(232, 180, 208, 0.2);
}

.form-textarea::placeholder {
  color: #A0AEC0;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #0A1F44;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.form-submit:hover {
  background-color: #1A3366;
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #0A1F44;
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: #FFFFFF;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #F4A261;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  background-color: #F4A261;
  color: #0A1F44;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.footer-cta:hover {
  background-color: #E08A3A;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animations */
.cards-grid .animate-fade-up:nth-child(1) { transition-delay: 0s; }
.cards-grid .animate-fade-up:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .animate-fade-up:nth-child(3) { transition-delay: 0.2s; }

.target-grid .animate-fade-up:nth-child(1) { transition-delay: 0s; }
.target-grid .animate-fade-up:nth-child(2) { transition-delay: 0.12s; }
.target-grid .animate-fade-up:nth-child(3) { transition-delay: 0.24s; }

.about-layout .about-text.animate-fade-up:nth-child(1) { transition-delay: 0s; }
.about-layout .about-text.animate-fade-up:nth-child(2) { transition-delay: 0.15s; }
.about-layout .about-text.animate-fade-up:nth-child(3) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet --- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
  }

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

  .hero-image-side {
    height: 35vh;
    min-height: 240px;
  }

  /* Lichte overgang naar het witte blok eronder — laat de foto zelf verder onbedekt */
  .hero-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 55%, rgba(255, 255, 255, 0.22) 100%);
  }

  .hero-content-side {
    padding: 2rem 1.5rem;
  }

  .hero-logo-ring {
    width: 140px;
    height: 140px;
  }

  .hero-logo {
    height: 90px;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: 0.08em;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-banner {
    height: 200px;
  }

  .section-banner-label {
    font-size: 1.75rem;
  }

  .nav-logo {
    height: 36px;
  }

  .cards-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card,
  .waarborgen-card,
  .target-card {
    padding: 1.5rem;
  }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .target-image {
    width: 100px;
    height: 100px;
  }

  .hero-logo-ring {
    width: 120px;
    height: 120px;
  }

  .hero-logo {
    height: 76px;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }
}
