/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--secondary);
  color: var(--primary-dark);
}

.btn--primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-light);
}

.btn--small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 0;
}

.btn--ghost:hover {
  color: var(--primary);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.card__body {
  padding: var(--space-xl);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__title {
  margin: var(--space-md) 0 var(--space-sm);
}

.card__meta {
  display: flex;
  gap: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Info blokken */
.info-block {
  text-align: center;
  padding: var(--space-2xl);
}

.info-block__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
}

.info-block__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.info-block__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Audio Player */
.audio-player {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--light);
  border-radius: var(--radius);
  margin-top: var(--space-md);
}

.audio-player__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.audio-player__btn:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.audio-player__progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audio-player__bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.audio-player__bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.audio-player__times {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.audio-player__download {
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  flex-shrink: 0;
}

.audio-player__download:hover {
  color: var(--accent);
}

/* Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--samenkomst { background: #DBEAFE; color: #1E40AF; }
.badge--bijbelstudie { background: #D1FAE5; color: #065F46; }
.badge--gebedsuur { background: #FDF2F8; color: #9D174D; }
.badge--speciaal { background: #FEF3C7; color: #92400E; }
.badge--vergadering { background: #E0E7FF; color: #3730A3; }
.badge--overig { background: #F3F4F6; color: #4B5563; }

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.footer__verse {
  font-family: var(--font-verse);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
