/* Dock-Style Navbar */
.dock-navbar {
    position: fixed;
    bottom: 20px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px; /* Space between links */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    z-index: 10;
}

.dock-navbar a {
    font-family: 'InterDisplay-Regular';
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dock-navbar a:hover {
    transform: scale(1.2); /* Enlarge on hover */
    background: linear-gradient(90deg, #00ff00, #32cd32, #7cfc00); /* Green gradient */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Apply gradient to text */
}