/* ======= Theme Pages Styling ======= */

/* Hero Section */
.theme-hero {
  background: linear-gradient(135deg, rgba(51, 153, 204, 0.95) 0%, rgba(37, 119, 170, 0.95) 100%),
              url('https://images.unsplash.com/photo-1629654297299-c8506221ca97?w=1920&q=80') center/cover;
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.theme-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,80 Q600,120 0,80 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.theme-hero .container {
  position: relative;
  z-index: 1;
}

.theme-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.theme-hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.theme-hero .cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.theme-hero .btn {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.theme-hero .btn-primary {
  background: white;
  color: #3399cc;
  border: 2px solid white;
}

.theme-hero .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Desktop hover effects for theme hero buttons */
@media (hover: hover) {
  .theme-hero .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .theme-hero .btn-secondary:hover {
    background: white;
    color: #3399cc;
    transform: translateY(-2px);
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #999;
  padding: 0 0.5rem;
}

.breadcrumb-item a {
  color: #3399cc;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #666;
}

/* Theme Sections */
.theme-section {
  padding: 60px 0;
}

.theme-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.theme-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3399cc;
}

.theme-section .lead {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.theme-section ul {
  list-style: none;
  padding-left: 0;
}

.theme-section ul li {
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.8rem;
}

.theme-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3399cc;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Background variations */
.bg-light {
  background-color: #f8f9fa;
}

.bg-blue {
  background: linear-gradient(135deg, #3399cc 0%, #2577aa 100%);
  color: white;
}

.bg-blue h2,
.bg-blue h3 {
  color: white;
}

.bg-blue .btn-light {
  background: white;
  color: #3399cc;
  border: 2px solid white;
}

.bg-blue .btn-light:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* Doelgroep Cards */
.doelgroep-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

/* Desktop hover effect for doelgroep cards */
@media (hover: hover) {
  .doelgroep-card:hover {
    border-color: #3399cc;
    box-shadow: 0 8px 24px rgba(51, 153, 204, 0.12);
    transform: translateY(-4px);
  }
}

.doelgroep-card .doelgroep-icon {
  font-size: 3rem;
  color: #3399cc;
  margin-bottom: 1rem;
}

.doelgroep-card h3 {
  color: #3399cc;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.doelgroep-card .doelgroep-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Expertise Section */
.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.expertise-list li i {
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-size: 1.3rem;
  color: #28a745;
}

/* Format Grid */
.expertise-formats h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.format-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

/* Desktop hover effect for format cards */
@media (hover: hover) {
  .format-card:hover {
    border-color: #3399cc;
    box-shadow: 0 4px 12px rgba(51, 153, 204, 0.1);
  }
}

.format-card i {
  font-size: 2.5rem;
  color: #3399cc;
  margin-bottom: 0.8rem;
}

.format-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.format-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Leerpad Visualization */
.leerpad-visual {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.leerpad-track {
  margin-bottom: 1.5rem;
}

.leerpad-track:last-child {
  margin-bottom: 0;
}

.track-label {
  font-weight: 600;
  color: #3399cc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.track-courses {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding-left: 1rem;
}

/* Stats Boxes */
.stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: #3399cc;
  box-shadow: 0 4px 12px rgba(51, 153, 204, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3399cc;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Social Proof */
.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-size: 3rem;
  font-weight: 700;
  color: #3399cc;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding: 0 2rem;
  position: relative;
}

.testimonial blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #3399cc;
  opacity: 0.3;
  position: absolute;
  left: -10px;
  top: -10px;
}

.testimonial cite {
  font-size: 1rem;
  color: #666;
  font-style: normal;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.partner-logos img {
  max-height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
}

/* Section Intro */
.section-intro {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .theme-hero {
    padding: 120px 0 50px;
  }

  .theme-hero h1 {
    font-size: 2rem;
  }

  .theme-hero .subtitle {
    font-size: 1.1rem;
  }

  .theme-hero .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .theme-hero .btn {
    width: 100%;
  }

  .theme-section {
    padding: 40px 0;
  }

  .theme-section h2 {
    font-size: 1.8rem;
  }

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

  .social-proof-stats {
    gap: 2rem;
  }

  .proof-number {
    font-size: 2.5rem;
  }

  .testimonial blockquote {
    font-size: 1.05rem;
    padding: 0 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .doelgroep-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .theme-hero h1 {
    font-size: 1.7rem;
  }

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

  .theme-section h2 {
    font-size: 1.5rem;
  }

  .social-proof-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Mobile Touch Interactions (Touch Devices Only)
--------------------------------------------------------------*/
@media (hover: none) {
  /* Pre-interaction affordances - Enhanced visibility for theme buttons */
  .theme-hero .btn {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }

  /* Pre-interaction affordances - Enhanced visibility for cards */
  .doelgroep-card,
  .format-card {
    border-color: rgba(51, 153, 204, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  /* Active state feedback - Theme buttons */
  .theme-hero .btn-primary:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }

  .theme-hero .btn-secondary:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }

  /* Active state feedback - Cards */
  .doelgroep-card:active {
    transform: scale(0.98);
    border-color: #3399cc;
    box-shadow: 0 4px 15px rgba(51, 153, 204, 0.2);
    transition: transform 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease;
  }

  .format-card:active {
    transform: scale(0.98);
    border-color: #3399cc;
    box-shadow: 0 3px 12px rgba(51, 153, 204, 0.15);
    transition: transform 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease;
  }
}
