/* VIK PROJEKT — Custom styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body base */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar scroll effect */
#navbar.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* Mobile menu toggle animation */
#menu-toggle.active #bar1 {
    transform: rotate(45deg) translate(4px, 4px);
}
#menu-toggle.active #bar2 {
    opacity: 0;
}
#menu-toggle.active #bar3 {
    width: 1.5rem;
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Selection color */
::selection {
    background-color: #c2d5ff;
    color: #112d60;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #1e4a9e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth transitions for cards */
.group:hover {
    transform: translateY(-2px);
}

/* Map responsive */
iframe {
    border: 0;
}
