/* ============================================
   HOLSVIK HOLDING AS - valentinaa.shop
   Estilos adicionales únicos para diseño magazine
   Colores: Lavender / Deep Violet palette
   ============================================ */

:root {
  --violet-deep: #5B21B6;
  --violet-accent: #7C3AED;
  --lavender-soft: #F5F3FF;
  --violet-light: #DDD6FE;
}

/* Mejoras tipográficas para legibilidad magazine */
.prose h2, .prose h3 {
  color: #1E1B4B;
  font-weight: 600;
}

.prose p {
  color: #374151;
}

/* Card hover effects únicos */
.article-card {
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #7C3AED, #DDD6FE);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover::before {
  height: 100%;
}

/* Botones y enlaces con estilo editorial */
a.nav-link {
  font-weight: 500;
}

/* Responsive adjustments extra */
@media (max-width: 640px) {
  .heading-serif {
    font-size: 2.75rem;
    line-height: 1.05;
  }
}

/* Asegura que el formulario se vea limpio */
.form-input {
  font-size: 15px;
}

/* Footer text contrast */
footer a {
  transition: color 0.2s ease;
}