/* Custom overrides and extensions for the visual editor */

:root {
  scroll-behavior: smooth;
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fdf2f8; 
}
 
::-webkit-scrollbar-thumb {
  background: #dc2626; 
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b91c1c; 
}

/* Animated Type / Hover Underline Effect for Navbar */
.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

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

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

/* Subtle typing simulation on hover (letter spacing expansion) */
.nav-link {
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    letter-spacing: 0.5px;
}


/* Focus outline accessibility */
a:focus, button:focus {
  outline: 2px dashed #dc2626;
  outline-offset: 4px;
}
