/* Baltavera - Additional custom styles (unique to this site) */
/* Ice-blue modern aesthetic with soft rounded corners and generous spacing */

:root {
  --accent-sky: #0ea5e9;
}

.subtle-shadow {
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.05), 
              0 4px 6px -4px rgb(15 23 42 / 0.05);
}

.modern-card {
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.modern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.08), 
              0 8px 10px -6px rgb(15 23 42 / 0.08);
}

/* Asymmetric grid fine-tuning for better mobile experience */
.asymmetric-grid {
  grid-auto-rows: minmax(160px, auto);
}

/* Extra breathing room for long content pages */
.policy-text p {
  margin-bottom: 1.1em;
}

/* Clean focus states for accessibility */
.modern-input:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Footer link hover states */
footer a:hover {
  color: #0ea5e9;
  transition: color 0.1s ease;
}