@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Typography */
.font-display {
  font-family: var(--font-display);
}

/* Smooth custom glassmorphism */
.glass-nav {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Custom interactive gradients */
.bg-gradient-radial {
  background-image: radial-gradient(circle at top right, rgba(13, 148, 136, 0.08), transparent 45%);
}

.bg-gradient-radial-left {
  background-image: radial-gradient(circle at bottom left, rgba(13, 148, 136, 0.05), transparent 50%);
}

/* Journal Card Hover Effects */
.journal-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.06), 0 10px 10px -5px rgba(13, 148, 136, 0.04);
  border-color: rgba(13, 148, 136, 0.3);
}

/* Active links custom styling */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0d9488;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
